-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathZipEntry.php
1573 lines (1346 loc) · 38.6 KB
/
ZipEntry.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/** @noinspection PhpUsageOfSilenceOperatorInspection */
namespace PhpZip\Model;
use PhpZip\Constants\DosAttrs;
use PhpZip\Constants\DosCodePage;
use PhpZip\Constants\GeneralPurposeBitFlag;
use PhpZip\Constants\UnixStat;
use PhpZip\Constants\ZipCompressionLevel;
use PhpZip\Constants\ZipCompressionMethod;
use PhpZip\Constants\ZipConstants;
use PhpZip\Constants\ZipEncryptionMethod;
use PhpZip\Constants\ZipPlatform;
use PhpZip\Constants\ZipVersion;
use PhpZip\Exception\InvalidArgumentException;
use PhpZip\Exception\RuntimeException;
use PhpZip\Exception\ZipUnsupportMethodException;
use PhpZip\Model\Extra\ExtraFieldsCollection;
use PhpZip\Model\Extra\Fields\AsiExtraField;
use PhpZip\Model\Extra\Fields\ExtendedTimestampExtraField;
use PhpZip\Model\Extra\Fields\NtfsExtraField;
use PhpZip\Model\Extra\Fields\OldUnixExtraField;
use PhpZip\Model\Extra\Fields\UnicodePathExtraField;
use PhpZip\Model\Extra\Fields\WinZipAesExtraField;
use PhpZip\Model\Extra\ZipExtraField;
use PhpZip\Util\DateTimeConverter;
use PhpZip\Util\StringUtil;
/**
* ZIP file entry.
*
* @see https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT .ZIP File Format Specification
*
* @author Ne-Lexa [email protected]
* @license MIT
*/
class ZipEntry
{
/** @var int the unknown value for numeric properties */
const UNKNOWN = -1;
/**
* @var int DOS platform
*
* @deprecated Use {@see ZipPlatform::OS_DOS}
*/
const PLATFORM_FAT = ZipPlatform::OS_DOS;
/**
* @var int Unix platform
*
* @deprecated Use {@see ZipPlatform::OS_UNIX}
*/
const PLATFORM_UNIX = ZipPlatform::OS_UNIX;
/**
* @var int MacOS platform
*
* @deprecated Use {@see ZipPlatform::OS_MAC_OSX}
*/
const PLATFORM_OS_X = ZipPlatform::OS_MAC_OSX;
/**
* Pseudo compression method for WinZip AES encrypted entries.
* Require php extension openssl or mcrypt.
*
* @deprecated Use {@see ZipCompressionMethod::WINZIP_AES}
*/
const METHOD_WINZIP_AES = ZipCompressionMethod::WINZIP_AES;
/** @var string Entry name (filename in archive) */
private $name;
/** @var bool Is directory */
private $isDirectory;
/** @var ZipData|null Zip entry contents */
private $data;
/** @var int Made by platform */
private $createdOS = self::UNKNOWN;
/** @var int Extracted by platform */
private $extractedOS = self::UNKNOWN;
/** @var int Software version */
private $softwareVersion = self::UNKNOWN;
/** @var int Version needed to extract */
private $extractVersion = self::UNKNOWN;
/** @var int Compression method */
private $compressionMethod = self::UNKNOWN;
/** @var int General purpose bit flags */
private $generalPurposeBitFlags = 0;
/** @var int Dos time */
private $dosTime = self::UNKNOWN;
/** @var int Crc32 */
private $crc = self::UNKNOWN;
/** @var int Compressed size */
private $compressedSize = self::UNKNOWN;
/** @var int Uncompressed size */
private $uncompressedSize = self::UNKNOWN;
/** @var int Internal attributes */
private $internalAttributes = 0;
/** @var int External attributes */
private $externalAttributes = 0;
/** @var int relative Offset Of Local File Header */
private $localHeaderOffset = 0;
/**
* Collections of Extra Fields in Central Directory.
* Keys from Header ID [int] and value Extra Field [ExtraField].
*
* @var ExtraFieldsCollection
*/
protected $cdExtraFields;
/**
* Collections of Extra Fields int local header.
* Keys from Header ID [int] and value Extra Field [ExtraField].
*
* @var ExtraFieldsCollection
*/
protected $localExtraFields;
/** @var string|null comment field */
private $comment;
/** @var string|null entry password for read or write encryption data */
private $password;
/** @var int encryption method */
private $encryptionMethod = ZipEncryptionMethod::NONE;
/** @var int */
private $compressionLevel = ZipCompressionLevel::NORMAL;
/** @var string|null */
private $charset;
/**
* ZipEntry constructor.
*
* @param string $name Entry name
* @param string|null $charset DOS charset
*/
public function __construct($name, $charset = null)
{
$this->setName($name, $charset);
$this->cdExtraFields = new ExtraFieldsCollection();
$this->localExtraFields = new ExtraFieldsCollection();
}
/**
* This method only internal use.
*
* @param string $name
* @param int $createdOS
* @param int $extractedOS
* @param int $softwareVersion
* @param int $extractVersion
* @param int $compressionMethod
* @param int $gpbf
* @param int $dosTime
* @param int $crc
* @param int $compressedSize
* @param int $uncompressedSize
* @param int $internalAttributes
* @param int $externalAttributes
* @param int $offsetLocalHeader
* @param string|null $comment
* @param string|null $charset
*
* @return ZipEntry
*
* @internal
*
* @noinspection PhpTooManyParametersInspection
*/
public static function create(
$name,
$createdOS,
$extractedOS,
$softwareVersion,
$extractVersion,
$compressionMethod,
$gpbf,
$dosTime,
$crc,
$compressedSize,
$uncompressedSize,
$internalAttributes,
$externalAttributes,
$offsetLocalHeader,
$comment,
$charset
) {
$entry = new self($name);
$entry->createdOS = (int) $createdOS;
$entry->extractedOS = (int) $extractedOS;
$entry->softwareVersion = (int) $softwareVersion;
$entry->extractVersion = (int) $extractVersion;
$entry->compressionMethod = (int) $compressionMethod;
$entry->generalPurposeBitFlags = (int) $gpbf;
$entry->dosTime = (int) $dosTime;
$entry->crc = (int) $crc;
$entry->compressedSize = (int) $compressedSize;
$entry->uncompressedSize = (int) $uncompressedSize;
$entry->internalAttributes = (int) $internalAttributes;
$entry->externalAttributes = (int) $externalAttributes;
$entry->localHeaderOffset = (int) $offsetLocalHeader;
$entry->setComment($comment);
$entry->setCharset($charset);
$entry->updateCompressionLevel();
return $entry;
}
/**
* Set entry name.
*
* @param string $name New entry name
* @param string|null $charset
*
* @return ZipEntry
*/
private function setName($name, $charset = null)
{
if ($name === null) {
throw new InvalidArgumentException('zip entry name is null');
}
$name = ltrim((string) $name, '\\/');
if ($name === '') {
throw new InvalidArgumentException('Empty zip entry name');
}
$name = (string) $name;
$length = \strlen($name);
if ($length > 0xffff) {
throw new InvalidArgumentException('Illegal zip entry name parameter');
}
$this->setCharset($charset);
if ($this->charset === null && !StringUtil::isASCII($name)) {
$this->enableUtf8Name(true);
}
$this->name = $name;
$this->isDirectory = ($length = \strlen($name)) >= 1 && $name[$length - 1] === '/';
$this->externalAttributes = $this->isDirectory ? DosAttrs::DOS_DIRECTORY : DosAttrs::DOS_ARCHIVE;
if ($this->extractVersion !== self::UNKNOWN) {
$this->extractVersion = max(
$this->extractVersion,
$this->isDirectory ?
ZipVersion::v20_DEFLATED_FOLDER_ZIPCRYPTO :
ZipVersion::v10_DEFAULT_MIN
);
}
return $this;
}
/**
* @param string|null $charset
*
* @return ZipEntry
*
* @see DosCodePage::getCodePages()
*/
public function setCharset($charset = null)
{
if ($charset !== null && $charset === '') {
throw new InvalidArgumentException('Empty charset');
}
$this->charset = $charset;
return $this;
}
/**
* @return string|null
*/
public function getCharset()
{
return $this->charset;
}
/**
* @param string $newName New entry name
*
* @return ZipEntry new {@see ZipEntry} object with new name
*
* @internal
*/
public function rename($newName)
{
$newEntry = clone $this;
$newEntry->setName($newName);
$newEntry->removeExtraField(UnicodePathExtraField::HEADER_ID);
return $newEntry;
}
/**
* Returns the ZIP entry name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return ZipData|null
*
* @internal
*/
public function getData()
{
return $this->data;
}
/**
* @param ZipData|null $data
*
* @internal
*/
public function setData($data)
{
$this->data = $data;
}
/**
* @return int Get platform
*
* @deprecated Use {@see ZipEntry::getCreatedOS()}
*/
public function getPlatform()
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::getCreatedOS()', \E_USER_DEPRECATED);
return $this->getCreatedOS();
}
/**
* @param int $platform
*
* @return ZipEntry
*
* @deprecated Use {@see ZipEntry::setCreatedOS()}
*/
public function setPlatform($platform)
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::setCreatedOS()', \E_USER_DEPRECATED);
return $this->setCreatedOS($platform);
}
/**
* @return int platform
*/
public function getCreatedOS()
{
return $this->createdOS;
}
/**
* Set platform.
*
* @param int $platform
*
* @return ZipEntry
*/
public function setCreatedOS($platform)
{
$platform = (int) $platform;
if ($platform < 0x00 || $platform > 0xff) {
throw new InvalidArgumentException('Platform out of range');
}
$this->createdOS = $platform;
return $this;
}
/**
* @return int
*/
public function getExtractedOS()
{
return $this->extractedOS;
}
/**
* Set extracted OS.
*
* @param int $platform
*
* @return ZipEntry
*/
public function setExtractedOS($platform)
{
$platform = (int) $platform;
if ($platform < 0x00 || $platform > 0xff) {
throw new InvalidArgumentException('Platform out of range');
}
$this->extractedOS = $platform;
return $this;
}
/**
* @return int
*/
public function getSoftwareVersion()
{
if ($this->softwareVersion === self::UNKNOWN) {
return $this->getExtractVersion();
}
return $this->softwareVersion;
}
/**
* @param int $softwareVersion
*
* @return ZipEntry
*/
public function setSoftwareVersion($softwareVersion)
{
$this->softwareVersion = (int) $softwareVersion;
return $this;
}
/**
* Version needed to extract.
*
* @return int
*
* @deprecated Use {@see ZipEntry::getExtractVersion()}
*/
public function getVersionNeededToExtract()
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::getExtractVersion()', \E_USER_DEPRECATED);
return $this->getExtractVersion();
}
/**
* Version needed to extract.
*
* @return int
*/
public function getExtractVersion()
{
if ($this->extractVersion === self::UNKNOWN) {
if (ZipEncryptionMethod::isWinZipAesMethod($this->encryptionMethod)) {
return ZipVersion::v51_ENCR_AES_RC2_CORRECT;
}
if ($this->compressionMethod === ZipCompressionMethod::BZIP2) {
return ZipVersion::v46_BZIP2;
}
if ($this->isZip64ExtensionsRequired()) {
return ZipVersion::v45_ZIP64_EXT;
}
if (
$this->compressionMethod === ZipCompressionMethod::DEFLATED ||
$this->isDirectory ||
$this->encryptionMethod === ZipEncryptionMethod::PKWARE
) {
return ZipVersion::v20_DEFLATED_FOLDER_ZIPCRYPTO;
}
return ZipVersion::v10_DEFAULT_MIN;
}
return $this->extractVersion;
}
/**
* Set version needed to extract.
*
* @param int $version
*
* @return ZipEntry
*
* @deprecated Use {@see ZipEntry::setExtractVersion()}
*/
public function setVersionNeededToExtract($version)
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::setExtractVersion()', \E_USER_DEPRECATED);
return $this->setExtractVersion($version);
}
/**
* Set version needed to extract.
*
* @param int $version
*
* @return ZipEntry
*/
public function setExtractVersion($version)
{
$this->extractVersion = max(ZipVersion::v10_DEFAULT_MIN, (int) $version);
return $this;
}
/**
* Returns the compressed size of this entry.
*
* @return int
*/
public function getCompressedSize()
{
return $this->compressedSize;
}
/**
* Sets the compressed size of this entry.
*
* @param int $compressedSize the Compressed Size
*
* @return ZipEntry
*
* @internal
*/
public function setCompressedSize($compressedSize)
{
$compressedSize = (int) $compressedSize;
if ($compressedSize < self::UNKNOWN) {
throw new InvalidArgumentException('Compressed size < ' . self::UNKNOWN);
}
$this->compressedSize = $compressedSize;
return $this;
}
/**
* Returns the uncompressed size of this entry.
*
* @return int
*
* @deprecated Use {@see ZipEntry::getUncompressedSize()}
*/
public function getSize()
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::getUncompressedSize()', \E_USER_DEPRECATED);
return $this->getUncompressedSize();
}
/**
* Sets the uncompressed size of this entry.
*
* @param int $size the (Uncompressed) Size
*
* @return ZipEntry
*
* @deprecated Use {@see ZipEntry::setUncompressedSize()}
*
* @internal
*/
public function setSize($size)
{
@trigger_error(__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::setUncompressedSize()', \E_USER_DEPRECATED);
return $this->setUncompressedSize($size);
}
/**
* Returns the uncompressed size of this entry.
*
* @return int
*/
public function getUncompressedSize()
{
return $this->uncompressedSize;
}
/**
* Sets the uncompressed size of this entry.
*
* @param int $uncompressedSize the (Uncompressed) Size
*
* @return ZipEntry
*
* @internal
*/
public function setUncompressedSize($uncompressedSize)
{
$uncompressedSize = (int) $uncompressedSize;
if ($uncompressedSize < self::UNKNOWN) {
throw new InvalidArgumentException('Uncompressed size < ' . self::UNKNOWN);
}
$this->uncompressedSize = $uncompressedSize;
return $this;
}
/**
* Return relative Offset Of Local File Header.
*
* @return int
*/
public function getLocalHeaderOffset()
{
return $this->localHeaderOffset;
}
/**
* @param int $localHeaderOffset
*
* @return ZipEntry
*
* @internal
*/
public function setLocalHeaderOffset($localHeaderOffset)
{
$localHeaderOffset = (int) $localHeaderOffset;
if ($localHeaderOffset < 0) {
throw new InvalidArgumentException('Negative $localHeaderOffset');
}
$this->localHeaderOffset = $localHeaderOffset;
return $this;
}
/**
* Return relative Offset Of Local File Header.
*
* @return int
*
* @deprecated Use {@see ZipEntry::getLocalHeaderOffset()}
*/
public function getOffset()
{
@trigger_error(
__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::getLocalHeaderOffset()',
\E_USER_DEPRECATED
);
return $this->getLocalHeaderOffset();
}
/**
* @param int $offset
*
* @return ZipEntry
*
* @deprecated Use {@see ZipEntry::setLocalHeaderOffset()}
*
* @internal
*/
public function setOffset($offset)
{
@trigger_error(
__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::setLocalHeaderOffset()',
\E_USER_DEPRECATED
);
return $this->setLocalHeaderOffset($offset);
}
/**
* Returns the General Purpose Bit Flags.
*
* @return int
*/
public function getGeneralPurposeBitFlags()
{
return $this->generalPurposeBitFlags;
}
/**
* Sets the General Purpose Bit Flags.
*
* @param int $gpbf general purpose bit flags
*
* @return ZipEntry
*
* @internal
*/
public function setGeneralPurposeBitFlags($gpbf)
{
$gpbf = (int) $gpbf;
if ($gpbf < 0x0000 || $gpbf > 0xffff) {
throw new InvalidArgumentException('general purpose bit flags out of range');
}
$this->generalPurposeBitFlags = $gpbf;
$this->updateCompressionLevel();
return $this;
}
private function updateCompressionLevel()
{
if ($this->compressionMethod === ZipCompressionMethod::DEFLATED) {
$bit1 = $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::COMPRESSION_FLAG1);
$bit2 = $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::COMPRESSION_FLAG2);
if ($bit1 && !$bit2) {
$this->compressionLevel = ZipCompressionLevel::MAXIMUM;
} elseif (!$bit1 && $bit2) {
$this->compressionLevel = ZipCompressionLevel::FAST;
} elseif ($bit1 && $bit2) {
$this->compressionLevel = ZipCompressionLevel::SUPER_FAST;
} else {
$this->compressionLevel = ZipCompressionLevel::NORMAL;
}
}
}
/**
* @param int $mask
* @param bool $enable
*
* @return ZipEntry
*/
private function setGeneralBitFlag($mask, $enable)
{
if ($enable) {
$this->generalPurposeBitFlags |= $mask;
} else {
$this->generalPurposeBitFlags &= ~$mask;
}
return $this;
}
/**
* @param int $mask
*
* @return bool
*/
private function isSetGeneralBitFlag($mask)
{
return ($this->generalPurposeBitFlags & $mask) === $mask;
}
/**
* @return bool
*/
public function isDataDescriptorEnabled()
{
return $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::DATA_DESCRIPTOR);
}
/**
* Enabling or disabling the use of the Data Descriptor block.
*
* @param bool $enabled
*/
public function enableDataDescriptor($enabled = true)
{
$this->setGeneralBitFlag(GeneralPurposeBitFlag::DATA_DESCRIPTOR, (bool) $enabled);
}
/**
* @param bool $enabled
*/
public function enableUtf8Name($enabled)
{
$this->setGeneralBitFlag(GeneralPurposeBitFlag::UTF8, (bool) $enabled);
}
/**
* @return bool
*/
public function isUtf8Flag()
{
return $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::UTF8);
}
/**
* Returns true if and only if this ZIP entry is encrypted.
*
* @return bool
*/
public function isEncrypted()
{
return $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::ENCRYPTION);
}
/**
* @return bool
*/
public function isStrongEncryption()
{
return $this->isSetGeneralBitFlag(GeneralPurposeBitFlag::STRONG_ENCRYPTION);
}
/**
* Sets the encryption property to false and removes any other
* encryption artifacts.
*
* @return ZipEntry
*/
public function disableEncryption()
{
$this->setEncrypted(false);
$this->removeExtraField(WinZipAesExtraField::HEADER_ID);
$this->encryptionMethod = ZipEncryptionMethod::NONE;
$this->password = null;
$this->extractVersion = self::UNKNOWN;
return $this;
}
/**
* Sets the encryption flag for this ZIP entry.
*
* @param bool $encrypted
*
* @return ZipEntry
*/
private function setEncrypted($encrypted)
{
$encrypted = (bool) $encrypted;
$this->setGeneralBitFlag(GeneralPurposeBitFlag::ENCRYPTION, $encrypted);
return $this;
}
/**
* Returns the compression method for this entry.
*
* @return int
*
* @deprecated Use {@see ZipEntry::getCompressionMethod()}
*/
public function getMethod()
{
@trigger_error(
__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::getCompressionMethod()',
\E_USER_DEPRECATED
);
return $this->getCompressionMethod();
}
/**
* Returns the compression method for this entry.
*
* @return int
*/
public function getCompressionMethod()
{
return $this->compressionMethod;
}
/**
* Sets the compression method for this entry.
*
* @param int $method
*
* @throws ZipUnsupportMethodException
*
* @return ZipEntry
*
* @deprecated Use {@see ZipEntry::setCompressionMethod()}
*/
public function setMethod($method)
{
@trigger_error(
__METHOD__ . ' is deprecated. Use ' . __CLASS__ . '::setCompressionMethod()',
\E_USER_DEPRECATED
);
return $this->setCompressionMethod($method);
}
/**
* Sets the compression method for this entry.
*
* @param int $compressionMethod
*
* @throws ZipUnsupportMethodException
*
* @return ZipEntry
*
* @see ZipCompressionMethod::STORED
* @see ZipCompressionMethod::DEFLATED
* @see ZipCompressionMethod::BZIP2
*/
public function setCompressionMethod($compressionMethod)
{
$compressionMethod = (int) $compressionMethod;
if ($compressionMethod < 0x0000 || $compressionMethod > 0xffff) {
throw new InvalidArgumentException('method out of range: ' . $compressionMethod);
}
ZipCompressionMethod::checkSupport($compressionMethod);
$this->compressionMethod = $compressionMethod;
$this->updateCompressionLevel();
$this->extractVersion = self::UNKNOWN;
return $this;
}
/**
* Get Unix Timestamp.
*
* @return int
*/
public function getTime()
{
if ($this->getDosTime() === self::UNKNOWN) {
return self::UNKNOWN;
}
return DateTimeConverter::msDosToUnix($this->getDosTime());
}
/**
* Get Dos Time.
*
* @return int
*/
public function getDosTime()
{
return $this->dosTime;
}
/**
* Set Dos Time.
*
* @param int $dosTime
*
* @return ZipEntry
*/
public function setDosTime($dosTime)
{
$dosTime = (int) $dosTime;
if (\PHP_INT_SIZE === 8) {
if ($dosTime < 0x00000000 || $dosTime > 0xffffffff) {
throw new InvalidArgumentException('DosTime out of range');
}
}
$this->dosTime = $dosTime;
return $this;
}
/**
* Set time from unix timestamp.
*
* @param int $unixTimestamp
*
* @return ZipEntry
*/
public function setTime($unixTimestamp)
{
if ($unixTimestamp !== self::UNKNOWN) {
$this->setDosTime(DateTimeConverter::unixToMsDos($unixTimestamp));
} else {
$this->dosTime = 0;
}
return $this;
}
/**
* Returns the external file attributes.
*
* @return int the external file attributes
*/
public function getExternalAttributes()