| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace PhpZip\Tests\Internal\Epub;
- use PhpZip\Constants\ZipCompressionMethod;
- use PhpZip\Constants\ZipPlatform;
- use PhpZip\Exception\ZipUnsupportMethodException;
- use PhpZip\IO\ZipWriter;
- use PhpZip\Model\Data\ZipNewData;
- use PhpZip\Model\ZipEntry;
- /**
- * Class EpubWriter.
- *
- * @property EpubZipContainer $zipContainer
- */
- class EpubWriter extends ZipWriter
- {
- /**
- * @throws ZipUnsupportMethodException
- */
- protected function beforeWrite()
- {
- parent::beforeWrite();
- if (!$this->zipContainer->hasEntry('mimetype')) {
- $zipEntry = new ZipEntry('mimetype');
- $zipEntry->setCreatedOS(ZipPlatform::OS_DOS);
- $zipEntry->setExtractedOS(ZipPlatform::OS_DOS);
- $zipEntry->setCompressionMethod(ZipCompressionMethod::STORED);
- $zipEntry->setData(new ZipNewData($zipEntry, 'application/epub+zip'));
- $this->zipContainer->addEntry($zipEntry);
- }
- $this->sortEntries();
- }
- private function sortEntries()
- {
- $this->zipContainer->sortByEntry(
- static function (ZipEntry $a, ZipEntry $b) {
- if (strcasecmp($a->getName(), 'mimetype') === 0) {
- return -1;
- }
- if (strcasecmp($b->getName(), 'mimetype') === 0) {
- return 1;
- }
- if ($a->isDirectory() && $b->isDirectory()) {
- return strcmp($a->getName(), $b->getName());
- }
- if ($a->isDirectory()) {
- return -1;
- }
- if ($b->isDirectory()) {
- return 1;
- }
- return strcmp($a->getName(), $b->getName());
- }
- );
- }
- }
|