forked from McNetic/PHPZipStreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZipStreamer.php
More file actions
495 lines (423 loc) · 22 KB
/
ZipStreamer.php
File metadata and controls
495 lines (423 loc) · 22 KB
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
<?php
/**
* Class to create zip files on the fly and stream directly to the HTTP client as the content is added.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Inspired by
* CreateZipFile by Rochak Chauhan www.rochakchauhan.com (http://www.phpclasses.org/browse/package/2322.html)
* and
* ZipStream by A. Grandt https://github.com/Grandt/PHPZip (http://www.phpclasses.org/package/6116)
*
* Unix-File attributes according to
* http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute
*
* @author Nicolai Ehemann (en@enlightened.de)
* @copyright 2013 Nicolai Ehemann
* @license GNU GPL
* @version 0.2
*/
class ZipStreamer {
const VERSION = "0.3";
const ZIP_LOCAL_FILE_HEADER = 0x04034b50; // Local file header signature
const ZIP_CENTRAL_FILE_HEADER = 0x02014b50; // Central file header signature
const ZIP_END_OF_CENTRAL_DIRECTORY = 0x06054b50; // end of Central directory record
const ZIP64_CENTRAL_DIR_RECORD = 0x06064b50; //zip64 end of central directory record
const ZIP64_CENTRAL_DIR_LOCATOR = 0x07064b50; // zip64 end of central directory locator
//TODO: make this dynamic, depending on flags/compression methods
const ATTR_VERSION_TO_EXTRACT = 0x2D; // Version needed to extract (min. 4.5)
const ATTR_MADE_BY_VERSION = 0x032D; // Made By Version (upper byte: UNIX, lower byte v4.5)
const STREAM_CHUNK_SIZE = 1048576; // 1mb chunks
private $cdRec = array(); // central directory
private $offset = 0; // offset of next file to be added
private $isFinalized = false;
/**
* Constructor.
*
* @param bool $sendHeaders Send suitable headers to the HTTP client (assumes nothing was sent yet)
* @param string $archiveName Name to send to the HTTP client. Optional, defaults to "archive.zip".
* @param string $contentType Content mime type. Optional, defaults to "application/zip".
*/
function __construct($sendHeaders = false, $archiveName = 'archive.zip', $contentType = 'application/zip') {
//TODO: is this advisable/necessary?
if (ini_get('zlib.output_compression')) {
ini_set('zlib.output_compression', 'Off');
}
if ($sendHeaders) {
$headerFile = null;
$headerLine = null;
if (!headers_sent($headerFile, $headerLine)
or die(
'<p><strong>Error:</strong> Unable to send file '
. '$archiveName. HTML Headers have already been sent from '
. '<strong>$headerFile</strong> in line <strong>$headerLine'
. '</strong></p>')) {
if ((ob_get_contents() === false || ob_get_contents() == '')
or die(
'\n<p><strong>Error:</strong> Unable to send file '
. '<strong>$archiveName.epub</strong>. Output buffer '
. 'already contains text (typically warnings or errors).</p>')) {
header('Pragma: public');
header('Last-Modified: '
. gmdate('D, d M Y H:i:s T'));
header('Expires: 0');
header('Accept-Ranges: bytes');
header('Connection: Keep-Alive');
header('Content-Type: '
. $contentType);
header(
'Content-Disposition: attachment; filename="'
. $archiveName
. '";');
header('Content-Transfer-Encoding: binary');
}
}
flush();
// turn off output buffering
ob_end_flush();
}
}
function __destruct() {
$this->isFinalized = true;
$this->cdRec = null;
exit;
}
private static function getExternalDirPermission() {
# 755
return UNIX::getPermission(UNIX::S_IFDIR, UNIX::S_IRWXU, UNIX::S_IRGRP, UNIX::S_IXGRP, UNIX::S_IROTH,
UNIX::S_IXOTH) + DOS::getPermission(DOS::DIR);
}
private static function getExternalFilePermission() {
# 544
return UNIX::getPermission(UNIX::S_IFREG + UNIX::S_IRUSR + UNIX::S_IXUSR + UNIX::S_IRGRP + UNIX::S_IROTH);
}
/**
* Add a file to the archive at the specified location and file name.
*
* @param string $stream Stream to read data from
* @param string $filePath Filepath and name to be used in the archive.
* @param int $timestamp (Optional) Timestamp for the added file, if omitted or set to 0, the current time will be used.
* @param string $fileComment (Optional) Comment to be added to the archive for this file. To use fileComment, timestamp must be given.
* @param bool $compress (Optional) Compress file, if set to false the file will only be stored. Default FALSE.
* @return bool $success
*/
public function addFileFromStream($stream, $filePath, $timestamp = 0, $fileComment = null, $compress = false) {
if ($this->isFinalized) {
return false;
}
if (!is_resource($stream) || get_resource_type($stream) != 'stream') {
return false;
}
$filePath = self::normalizeFilePath($filePath);
$gpFlags = GPFLAGS::ADD;
if ($compress) {
$gzMethod = GZMETHOD::DEFLATE;
} else {
$gzMethod = GZMETHOD::STORE;
}
list($gpFlags, $lfhLength) = $this->beginFile($filePath, $fileComment, $timestamp, $gpFlags, $gzMethod);
list($dataLength, $gzLength, $dataCRC32) = $this->streamFileData($stream, $compress);
// build cdRec
$zip64Ext = $this->buildZip64ExtendedInformationField($dataLength, $gzLength, $this->offset);
$this->cdRec[] = $this->buildCentralDirectoryHeader($filePath, $timestamp, $gpFlags, $gzMethod, $zip64Ext,
$dataCRC32, self::getExternalFilePermission());
// calc offset
$this->offset += $lfhLength + $gzLength;
return true;
}
/**
* Add an empty directory entry to the zip archive.
*
* @param string $directoryPath Directory Path and name to be added to the archive.
* @param int $timestamp (Optional) Timestamp for the added directory, if omitted or set to 0, the current time will be used.
* @param string $fileComment (Optional) Comment to be added to the archive for this directory. To use fileComment, timestamp must be given.
* @return bool $success
*/
public function addEmptyDir($directoryPath, $timestamp = 0, $fileComment = null) {
if ($this->isFinalized) {
return false;
}
$directoryPath = self::normalizeFilePath($directoryPath)
. '/';
if (strlen($directoryPath) > 0) {
$gpFlags = 0x0000; // Compression type 0 = stored
$gzMethod = GZMETHOD::STORE; // Compression type 0 = stored
list($gpFlags, $lfhLength) = $this->beginFile($directoryPath, $fileComment, $timestamp, $gpFlags, $gzMethod);
// build cdRec
// the offset is the byte position of the localfileheader
$zip64Ext = $this->buildZip64ExtendedInformationField(0, 0, $this->offset);
$this->cdRec[] = $this->buildCentralDirectoryHeader($directoryPath, $timestamp, $gpFlags, $gzMethod,
$zip64Ext, 0, self::getExternalDirPermission());
// calc offset where the next local file header starts
$this->offset += $lfhLength;
return true;
}
return false;
}
/**
* Close the archive.
* A closed archive can no longer have new files added to it.
* @return bool $success
*/
public function finalize() {
if (!$this->isFinalized) {
// print central directory
$cd = implode('', $this->cdRec);
echo $cd;
// print the zip64 end of central directory record
echo $this->buildZip64EndOfCentralDirectoryRecord(strlen($cd));
// print the zip64 end of central directory locator
echo $this->buildZip64EndOfCentralDirectoryLocator($this->offset + strlen($cd));
// print end of central directory record
echo $this->buildEndOfCentralDirectoryRecord();
flush();
$this->isFinalized = true;
$cd = null;
$this->cdRec = null;
return true;
}
return false;
}
private function beginFile($filePath, $fileComment, $timestamp, $gpFlags = 0x0000, $gzMethod = GZMETHOD::STORE,
$dataLength = 0, $gzLength = 0, $dataCRC32 = 0) {
$isFileUTF8 = mb_check_encoding($filePath, 'UTF-8') && !mb_check_encoding($filePath, 'ASCII');
$isCommentUTF8 = !empty($fileComment) && mb_check_encoding($fileComment, 'UTF-8')
&& !mb_check_encoding($fileComment, 'ASCII');
if ($isFileUTF8 || $isCommentUTF8) {
$gpFlags |= GPFLAGS::EFS;
}
$zip64Ext = $this->buildZip64ExtendedInformationField($dataLength, $gzLength, $this->offset);
$localFileHeader = $this->buildLocalFileHeader($filePath, $timestamp, $gpFlags, $gzMethod, $zip64Ext,
$dataCRC32);
echo $localFileHeader;
return array($gpFlags, strlen($localFileHeader));
}
private function streamFileData($stream, $compress) {
$dataLength = 0;
$gzLength = 0;
$hashCtx = hash_init('crc32b');
while (!feof($stream)) {
$data = fread($stream, self::STREAM_CHUNK_SIZE);
$dataLength += strlen($data);
hash_update($hashCtx, $data);
if ($compress) {
//TODO: this is broken.
$data = gzdeflate($data);
}
$gzLength += strlen($data);
echo $data;
flush();
}
$binary = unpack('N', hash_final($hashCtx, true));
return array($dataLength, $gzLength, $binary[1]);
}
private function buildZip64ExtendedInformationField($dataLength = 0, $gzLength = 0, $offset = 0) {
return ''
. $this->encode16(1) // header id (zip 64 ext)
. $this->encode16(28) // size of data
. $this->encode64($dataLength)
. $this->encode64($gzLength)
. $this->encode64($offset)
. $this->encode32(0);
}
private function buildLocalFileHeader($filePath, $timestamp, $gpFlags = 0x0000, $gzMethod = GZMETHOD::STORE,
$zip64Ext, $dataCRC32 = 0) {
$dosTime = self::getDosTime($timestamp);
return ''
. $this->encode32(self::ZIP_LOCAL_FILE_HEADER) // local file header signature 4 bytes (0x04034b50)
. $this->encode16(self::ATTR_VERSION_TO_EXTRACT) // version needed to extract 2 bytes
. $this->encode16($gpFlags) // general purpose bit flag 2 bytes
. $this->encode16($gzMethod) // compression method 2 bytes
. $this->encode32($dosTime) // last mod file time 2 bytes
// last mod file date 2 bytes
. $this->encode32($dataCRC32) // crc-32 4 bytes
. $this->encode32(-1) // compressed size 4 bytes
. $this->encode32(-1) // uncompressed size 4 bytes
. $this->encode16(strlen($filePath)) // file name length 2 bytes
. $this->encode16(strlen($zip64Ext)) // extra field length 2 bytes
. $filePath // file name (variable size) (little endian encoded, TODO: it could be UTF?)
. $zip64Ext; // extra field (variable size)
}
private function buildZip64EndOfCentralDirectoryRecord($cdRecLength) {
$cdRecCount = sizeof($this->cdRec);
return ''
. $this->encode32(self::ZIP64_CENTRAL_DIR_RECORD) // zip64 end of central dir signature 4 bytes (0x06064b50)
. $this->encode64(44) // size of zip64 end of central directory record 8 bytes
. $this->encode16(self::ATTR_MADE_BY_VERSION) //version made by 2 bytes
. $this->encode16(self::ATTR_VERSION_TO_EXTRACT) //version needed to extract 2 bytes
. $this->encode32(0) // number of this disk 4 bytes
. $this->encode32(0) // number of the disk with the start of the central directory 4 bytes
. $this->encode64($cdRecCount) // total number of entries in the central directory on this disk 8 bytes
. $this->encode64($cdRecCount) // total number of entries in the central directory 8 bytes
. $this->encode64($cdRecLength) // size of the central directory 8 bytes
. $this->encode64($this->offset) // offset of start of central directory with respect to the starting disk number 8 bytes
. ''; // zip64 extensible data sector (variable size)
}
private function buildZip64EndOfCentralDirectoryLocator($zip64RecStart) {
return ''
. $this->encode32(self::ZIP64_CENTRAL_DIR_LOCATOR) //zip64 end of central dir locator signature 4 bytes (0x07064b50)
. $this->encode32(0) // number of the disk with the start of the zip64 end of central directory 4 bytes
. $this->encode64($zip64RecStart) // relative offset of the zip64 end of central directory record 8 bytes
. $this->encode32(0); // total number of disks 4 bytes
}
private function buildCentralDirectoryHeader($filePath, $timestamp, $gpFlags, $gzMethod, $zip64Ext, $dataCRC32,
$extFileAttr) {
$dosTime = self::getDosTime($timestamp);
return ''
. $this->encode32(self::ZIP_CENTRAL_FILE_HEADER) //central file header signature 4 bytes (0x02014b50)
. $this->encode16(self::ATTR_MADE_BY_VERSION) //version made by 2 bytes
. $this->encode16(self::ATTR_VERSION_TO_EXTRACT) //version needed to extract 2 bytes
. $this->encode16($gpFlags) //general purpose bit flag 2 bytes
. $this->encode16($gzMethod) //compression method 2 bytes
. $this->encode32($dosTime) //last mod file time 2 bytes
//last mod file date 2 bytes
. $this->encode32($dataCRC32) //crc-32 4 bytes
. $this->encode32(-1) //compressed size 4 bytes
. $this->encode32(-1) //uncompressed size 4 bytes
. $this->encode16(strlen($filePath)) //file name length 2 bytes
. $this->encode16(strlen($zip64Ext)) //extra field length 2 bytes
. $this->encode16(0) //file comment length 2 bytes
. $this->encode16(-1) //disk number start 2 bytes
. $this->encode16(0) //internal file attributes 2 bytes
. $this->encode32($extFileAttr) //external file attributes 4 bytes
. $this->encode32(-1) //relative offset of local header 4 bytes
. $filePath //file name (variable size)
. $zip64Ext //extra field (variable size)
. ''; //file comment (variable size)
}
private function buildEndOfCentralDirectoryRecord() {
return ''
. $this->encode32(self::ZIP_END_OF_CENTRAL_DIRECTORY) // end of central dir signature 4 bytes (0x06064b50)
. $this->encode16(-1) // number of this disk 2 bytes
. $this->encode16(-1) // number of the disk with the start of the central directory 2 bytes
. $this->encode16(-1) // total number of entries in the central directory on this disk 2 bytes
. $this->encode16(-1) // total number of entries in the central directory 2 bytes
. $this->encode32(-1) // size of the central directory 4 bytes
. $this->encode32(-1) // offset of start of central directory with respect to the starting disk number 4 bytes
. $this->encode16(0) // .ZIP file comment length 2 bytes
. ''; // .ZIP file comment (variable size)
}
// Utility methods ////////////////////////////////////////////////////////
private static function normalizeFilePath($filePath) {
return trim(str_replace('\\', '/', $filePath), '/');
}
/**
* Calculate the 2 byte dostime used in the zip entries.
*
* @param int $timestamp
* @return 2-byte encoded DOS Date
*/
private static function getDosTime($timestamp = 0) {
$timestamp = (int) $timestamp;
$oldTZ = @date_default_timezone_get();
date_default_timezone_set('UTC');
$date = ($timestamp == 0 ? getdate() : getdate($timestamp));
date_default_timezone_set($oldTZ);
if ($date['year'] >= 1980) {
return (($date['mday'] + ($date['mon'] << 5) + (($date['year'] - 1980) << 9)) << 16)
| (($date['seconds'] >> 1) + ($date['minutes'] << 5) + ($date['hours'] << 11));
}
return 0x0000;
}
function encode16($in, $little_endian = true) {
return $this->encode64($in, 16, $little_endian);
}
function encode32($in, $little_endian = true) {
return $this->encode64($in, 32, $little_endian);
}
/**
* this method encodes the given integer as hexadecimal value in the given order (i.e. little-endian)
* It will return -1, if the given integer is bigger than the requested bit number (16, 32, 64).
*/
function encode64($in, $pad = 64, $little_endian = true) {
$in = decbin($in);
if (strlen($in) > $pad) {
$in = decbin(-1); # needs 64 bit architecture to work
}
$in = str_pad($in, $pad, '0', STR_PAD_LEFT);
$in = substr($in, -$pad);
$out = '';
for ($i = 0, $len = strlen($in); $i < $len; $i += 8) {
$out .= chr(bindec(substr($in, $i, 8)));
}
if ($little_endian)
$out = strrev($out);
return $out;
}
}
abstract class Permission {
# ZIP permission layout
# TTTTsstrwxrwxrwx0000000000ADVSHR
# ^^^^____________________________ file type as explained above
# ^^^_________________________ setuid, setgid, sticky
# ^^^^^^^^^________________ permissions
# ^^^^^^^^________ This is the "lower-middle byte" your post mentions
# ^^^^^^^^ DOS attribute bits (reserved, reserved, archived, directory, volume, system, hidden, read-only
public static function getPermission() {
$result = 00;
$arg_list = func_get_args();
for ($i = 0; $i < func_num_args(); $i++) {
$result += $arg_list[$i];
}
return $result;
}
}
class UNIX extends Permission {
# Octal
const S_IFIFO = 0010000; /* named pipe (fifo) */
const S_IFCHR = 0020000; /* character special */
const S_IFDIR = 0040000; /* directory */
const S_IFBLK = 0060000; /* block special */
const S_IFREG = 0100000; /* regular */
const S_IFLNK = 0120000; /* symbolic link */
const S_IFSOCK = 0140000; /* socket */
const S_ISUID = 0004000; /* set user id on execution */
const S_ISGID = 0002000; /* set group id on execution */
const S_ISTXT = 0001000; /* sticky bit */
const S_IRWXU = 0000700; /* RWX mask for owner */
const S_IRUSR = 0000400; /* R for owner */
const S_IWUSR = 0000200; /* W for owner */
const S_IXUSR = 0000100; /* X for owner */
const S_IRWXG = 0000070; /* RWX mask for group */
const S_IRGRP = 0000040; /* R for group */
const S_IWGRP = 0000020; /* W for group */
const S_IXGRP = 0000010; /* X for group */
const S_IRWXO = 0000007; /* RWX mask for other */
const S_IROTH = 0000004; /* R for other */
const S_IWOTH = 0000002; /* W for other */
const S_IXOTH = 0000001; /* X for other */
const S_ISVTX = 0001000; /* save swapped text even after use */
public static function getPermission() {
$args = func_get_args();
return call_user_func_array('Permission::getPermission', $args) << 16;
}
}
class DOS extends Permission {
const READ_ONLY = 0x1;
const HIDDEN = 0x2;
const SYSTEM = 0x4;
const VOLUME = 0x8;
const DIR = 0x10;
const ARCHIVE = 0x20;
const RESERVED1 = 0x40;
const RESERVED2 = 0x80;
}
class GPFLAGS {
const ADD = 0x0008; // ADD flag (sizes and crc32 are append in data descriptor)
const EFS = 0x0800; // EFS flag (UTF-8 encoded filename and/or comment)
}
class GZMETHOD {
const STORE = 0x0000; // 0 - The file is stored (no compression)
const DEFLATE = 0x0008; // 8 - The file is Deflated
}