zipmaker.php.inc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. // stolen from PEAR2_Pyrus_Developer_Creator_Zip by Greg Beaver, the original author, for use in unit tests
  3. class zipmaker
  4. {
  5. /**
  6. * Path to archive file
  7. *
  8. * @var string
  9. */
  10. protected $archive;
  11. /**
  12. * @var ZIPArchive
  13. */
  14. protected $zip;
  15. protected $path;
  16. function __construct($path)
  17. {
  18. if (!class_exists('ZIPArchive')) {
  19. throw new Exception(
  20. 'Zip extension is not available');
  21. }
  22. $this->path = $path;
  23. }
  24. /**
  25. * save a file inside this package
  26. * @param string relative path within the package
  27. * @param string|resource file contents or open file handle
  28. */
  29. function addFile($path, $fileOrStream)
  30. {
  31. if (is_resource($fileOrStream)) {
  32. $this->zip->addFromString($path, stream_get_contents($fileOrStream));
  33. } else {
  34. $this->zip->addFromString($path, $fileOrStream);
  35. }
  36. }
  37. /**
  38. * Initialize the package creator
  39. */
  40. function init()
  41. {
  42. $this->zip = new ZipArchive;
  43. if (true !== $this->zip->open($this->path, ZIPARCHIVE::CREATE)) {
  44. throw new Exception(
  45. 'Cannot open ZIP archive ' . $this->path
  46. );
  47. }
  48. }
  49. /**
  50. * Create an internal directory, creating parent directories as needed
  51. *
  52. * This is a no-op for the tar creator
  53. * @param string $dir
  54. */
  55. function mkdir($dir)
  56. {
  57. $this->zip->addEmptyDir($dir);
  58. }
  59. /**
  60. * Finish saving the package
  61. */
  62. function close()
  63. {
  64. $this->zip->close();
  65. }
  66. }