forked from Moidea/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unzip.php
656 lines (564 loc) · 24.9 KB
/
unzip.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
<?php
/**
* UnZip Class
*
* This class is based on a library I found at PHPClasses:
* http://phpclasses.org/package/2495-PHP-Pack-and-unpack-files-packed-in-ZIP-archives.html
*
* The original library is a little rough around the edges so I
* refactored it and added several additional methods -- Phil Sturgeon
*
* This class requires extension ZLib Enabled.
*
* @package CodeIgniter
* @subpackage Libraries
* @category Encryption
* @author Alexandre Tedeschi
* @author Phil Sturgeon
* @author Don Myers
* @link http://bitbucket.org/philsturgeon/codeigniter-unzip
* @license
* @version 1.0.0
*/
class Unzip {
private $compressed_list = array();
// List of files in the ZIP
private $central_dir_list = array();
// Central dir list... It's a kind of 'extra attributes' for a set of files
private $end_of_central = array();
// End of central dir, contains ZIP Comments
private $info = array();
private $error = array();
private $_zip_file = '';
private $_target_dir = FALSE;
private $apply_chmod = 0777;
private $fh;
private $zip_signature = "\x50\x4b\x03\x04";
// local file header signature
private $dir_signature = "\x50\x4b\x01\x02";
// central dir header signature
private $central_signature_end = "\x50\x4b\x05\x06";
// ignore these directories (useless meta data)
private $_skip_dirs = array('__MACOSX');
private $_allow_extensions = NULL; // What is allowed out of the zip
// --------------------------------------------------------------------
/**
* Constructor
*
* @access Public
* @internal param $string
* @return \Unzip
*/
function __construct()
{
define('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
}
// --------------------------------------------------------------------
/**
* re inizilize all variables
* @access Private
* @param none
* @return none
*/
private function _reinit()
{
$this->compressed_list = array();
$this->central_dir_list = array();
$this->end_of_central = array();
$this->info = array();
$this->error = array();
}
/**
* Unzip all files in archive.
*
* @access Public
* @param $zip_file
* @param null $target_dir
* @param bool $preserve_filepath
* @internal param $none
* @return none
*/
public function extract($zip_file, $target_dir = NULL, $preserve_filepath = TRUE)
{
$this->_reinit();
$this->_zip_file = $zip_file;
$this->_target_dir = $target_dir ? $target_dir : dirname($this->_zip_file);
if ( ! $files = $this->_list_files())
{
$this->set_error('ZIP folder was empty.');
return FALSE;
}
$file_locations = array();
foreach ($files as $file => $trash)
{
$dirname = pathinfo($file, PATHINFO_DIRNAME);
$extension = pathinfo($file, PATHINFO_EXTENSION);
$folders = explode('/', $dirname);
$out_dn = $this->_target_dir . '/' . $dirname;
// Skip stuff in stupid folders
if (in_array(current($folders), $this->_skip_dirs))
{
continue;
}
// Skip any files that are not allowed
if (is_array($this->_allow_extensions) AND $extension AND ! in_array($extension, $this->_allow_extensions))
{
continue;
}
if ( ! is_dir($out_dn) AND $preserve_filepath)
{
$str = "";
foreach ($folders as $folder)
{
$str = $str ? $str . '/' . $folder : $folder;
if ( ! is_dir($this->_target_dir . '/' . $str))
{
$this->set_debug('Creating folder: ' . $this->_target_dir . '/' . $str);
if ( ! @mkdir($this->_target_dir . '/' . $str))
{
$this->set_error('Desitnation path is not writable.');
return FALSE;
}
// Apply chmod if configured to do so
$this->apply_chmod AND chmod($this->_target_dir . '/' . $str, $this->apply_chmod);
}
}
}
if (substr($file, -1, 1) == '/') continue;
$file_locations[] = $file_location = $this->_target_dir . '/' . ($preserve_filepath ? $file : basename($file));
$this->_extract_file($file, $file_location);
}
$this->compressed_list = array();
return $file_locations;
}
// --------------------------------------------------------------------
/**
* What extensions do we want out of this ZIP
*
* @access Public
* @param none
* @return none
*/
public function allow($ext = NULL)
{
$this->_allow_extensions = $ext;
}
// --------------------------------------------------------------------
/**
* Show error messages
*
* @access public
* @param string $open
* @param string $close
* @internal param $string
* @return string
*/
public function error_string($open = '<p>', $close = '</p>')
{
return $open . implode($close . $open, $this->error) . $close;
}
// --------------------------------------------------------------------
/**
* Show debug messages
*
* @access public
* @param string $open
* @param string $close
* @internal param $string
* @return string
*/
public function debug_string($open = '<p>', $close = '</p>')
{
return $open . implode($close . $open, $this->info) . $close;
}
// --------------------------------------------------------------------
/**
* Save errors
*
* @access Private
* @param string
* @return none
*/
function set_error($string)
{
$this->error[] = $string;
}
// --------------------------------------------------------------------
/**
* Save debug data
*
* @access Private
* @param string
* @return none
*/
function set_debug($string)
{
$this->info[] = $string;
}
// --------------------------------------------------------------------
/**
* List all files in archive.
*
* @access Public
* @param boolean
* @return mixed
*/
private function _list_files($stop_on_file = FALSE)
{
if (sizeof($this->compressed_list))
{
$this->set_debug('Returning already loaded file list.');
return $this->compressed_list;
}
// Open file, and set file handler
$fh = fopen($this->_zip_file, 'r');
$this->fh = &$fh;
if ( ! $fh)
{
$this->set_error('Failed to load file: ' . $this->_zip_file);
return FALSE;
}
$this->set_debug('Loading list from "End of Central Dir" index list...');
if ( ! $this->_load_file_list_by_eof($fh, $stop_on_file))
{
$this->set_debug('Failed! Trying to load list looking for signatures...');
if ( ! $this->_load_files_by_signatures($fh, $stop_on_file))
{
$this->set_debug('Failed! Could not find any valid header.');
$this->set_error('ZIP File is corrupted or empty');
return FALSE;
}
}
return $this->compressed_list;
}
// --------------------------------------------------------------------
/**
* Unzip file in archive.
*
* @access Public
* @param string , boolean
* @param bool $target_file_name
* @return Unziped file.
*/
private function _extract_file($compressed_file_name, $target_file_name = FALSE)
{
if ( ! sizeof($this->compressed_list))
{
$this->set_debug('Trying to unzip before loading file list... Loading it!');
$this->_list_files(FALSE, $compressed_file_name);
}
$fdetails = &$this->compressed_list[$compressed_file_name];
if ( ! isset($this->compressed_list[$compressed_file_name]))
{
$this->set_error('File "<strong>$compressed_file_name</strong>" is not compressed in the zip.');
return FALSE;
}
if (substr($compressed_file_name, -1) == '/')
{
$this->set_error('Trying to unzip a folder name "<strong>$compressed_file_name</strong>".');
return FALSE;
}
if ( ! $fdetails['uncompressed_size'])
{
$this->set_debug('File "<strong>$compressed_file_name</strong>" is empty.');
return $target_file_name ? file_put_contents($target_file_name, '') : '';
}
fseek($this->fh, $fdetails['contents_start_offset']);
$ret = $this->_uncompress(
fread($this->fh, $fdetails['compressed_size']),
$fdetails['compression_method'],
$fdetails['uncompressed_size'],
$target_file_name
);
if ($this->apply_chmod AND $target_file_name)
{
chmod($target_file_name, FILE_READ_MODE);
}
return $ret;
}
// --------------------------------------------------------------------
/**
* Free the file resource.
*
* @access Public
* @param none
* @return none
*/
public function close()
{
// Free the file resource
if ($this->fh)
{
fclose($this->fh);
}
}
// --------------------------------------------------------------------
/**
* Free the file resource Automatic destroy.
*
* @access Public
* @param none
* @return none
*/
public function __destroy()
{
$this->close();
}
// --------------------------------------------------------------------
/**
* Uncompress file. And save it to the targetFile.
*
* @access Private
* @param $content
* @param $mode
* @param $uncompressed_size
* @param bool $target_file_name
* @internal param $Filecontent , int, int, boolean
* @return none
*/
private function _uncompress($content, $mode, $uncompressed_size, $target_file_name = FALSE)
{
switch ($mode)
{
case 0:
return $target_file_name ? file_put_contents($target_file_name, $content) : $content;
case 1:
$this->set_error('Shrunk mode is not supported... yet?');
return FALSE;
case 2:
case 3:
case 4:
case 5:
$this->set_error('Compression factor ' . ($mode - 1) . ' is not supported... yet?');
return FALSE;
case 6:
$this->set_error('Implode is not supported... yet?');
return FALSE;
case 7:
$this->set_error('Tokenizing compression algorithm is not supported... yet?');
return FALSE;
case 8:
// Deflate
return $target_file_name ?
file_put_contents($target_file_name, gzinflate($content, $uncompressed_size)) :
gzinflate($content, $uncompressed_size);
case 9:
$this->set_error('Enhanced Deflating is not supported... yet?');
return FALSE;
case 10:
$this->set_error('PKWARE Date Compression Library Impoloding is not supported... yet?');
return FALSE;
case 12:
// Bzip2
return $target_file_name ?
file_put_contents($target_file_name, bzdecompress($content)) :
bzdecompress($content);
case 18:
$this->set_error('IBM TERSE is not supported... yet?');
return FALSE;
default:
$this->set_error('Unknown uncompress method: $mode');
return FALSE;
}
}
private function _load_file_list_by_eof(&$fh, $stop_on_file = FALSE)
{
// Check if there's a valid Central Dir signature.
// Let's consider a file comment smaller than 1024 characters...
// Actually, it length can be 65536.. But we're not going to support it.
for ($x = 0; $x < 1024; $x++)
{
fseek($fh, -22 - $x, SEEK_END);
$signature = fread($fh, 4);
if ($signature == $this->central_signature_end)
{
// If found EOF Central Dir
$eodir['disk_number_this'] = unpack("v", fread($fh, 2)); // number of this disk
$eodir['disk_number'] = unpack("v", fread($fh, 2)); // number of the disk with the start of the central directory
$eodir['total_entries_this'] = unpack("v", fread($fh, 2)); // total number of entries in the central dir on this disk
$eodir['total_entries'] = unpack("v", fread($fh, 2)); // total number of entries in
$eodir['size_of_cd'] = unpack("V", fread($fh, 4)); // size of the central directory
$eodir['offset_start_cd'] = unpack("V", fread($fh, 4)); // offset of start of central directory with respect to the starting disk number
$zip_comment_lenght = unpack("v", fread($fh, 2)); // zipfile comment length
$eodir['zipfile_comment'] = $zip_comment_lenght[1] ? fread($fh, $zip_comment_lenght[1]) : ''; // zipfile comment
$this->end_of_central = array(
'disk_number_this' => $eodir['disk_number_this'][1],
'disk_number' => $eodir['disk_number'][1],
'total_entries_this' => $eodir['total_entries_this'][1],
'total_entries' => $eodir['total_entries'][1],
'size_of_cd' => $eodir['size_of_cd'][1],
'offset_start_cd' => $eodir['offset_start_cd'][1],
'zipfile_comment' => $eodir['zipfile_comment'],
);
// Then, load file list
fseek($fh, $this->end_of_central['offset_start_cd']);
$signature = fread($fh, 4);
while ($signature == $this->dir_signature)
{
$dir['version_madeby'] = unpack("v", fread($fh, 2)); // version made by
$dir['version_needed'] = unpack("v", fread($fh, 2)); // version needed to extract
$dir['general_bit_flag'] = unpack("v", fread($fh, 2)); // general purpose bit flag
$dir['compression_method'] = unpack("v", fread($fh, 2)); // compression method
$dir['lastmod_time'] = unpack("v", fread($fh, 2)); // last mod file time
$dir['lastmod_date'] = unpack("v", fread($fh, 2)); // last mod file date
$dir['crc-32'] = fread($fh, 4); // crc-32
$dir['compressed_size'] = unpack("V", fread($fh, 4)); // compressed size
$dir['uncompressed_size'] = unpack("V", fread($fh, 4)); // uncompressed size
$zip_file_length = unpack("v", fread($fh, 2)); // filename length
$extra_field_length = unpack("v", fread($fh, 2)); // extra field length
$fileCommentLength = unpack("v", fread($fh, 2)); // file comment length
$dir['disk_number_start'] = unpack("v", fread($fh, 2)); // disk number start
$dir['internal_attributes'] = unpack("v", fread($fh, 2)); // internal file attributes-byte1
$dir['external_attributes1'] = unpack("v", fread($fh, 2)); // external file attributes-byte2
$dir['external_attributes2'] = unpack("v", fread($fh, 2)); // external file attributes
$dir['relative_offset'] = unpack("V", fread($fh, 4)); // relative offset of local header
$dir['file_name'] = fread($fh, $zip_file_length[1]); // filename
$dir['extra_field'] = $extra_field_length[1] ? fread($fh, $extra_field_length[1]) : ''; // extra field
$dir['file_comment'] = $fileCommentLength[1] ? fread($fh, $fileCommentLength[1]) : ''; // file comment
// Convert the date and time, from MS-DOS format to UNIX Timestamp
$binary_mod_date = str_pad(decbin($dir['lastmod_date'][1]), 16, '0', STR_PAD_LEFT);
$binary_mod_time = str_pad(decbin($dir['lastmod_time'][1]), 16, '0', STR_PAD_LEFT);
$last_mod_year = bindec(substr($binary_mod_date, 0, 7)) + 1980;
$last_mod_month = bindec(substr($binary_mod_date, 7, 4));
$last_mod_day = bindec(substr($binary_mod_date, 11, 5));
$last_mod_hour = bindec(substr($binary_mod_time, 0, 5));
$last_mod_minute = bindec(substr($binary_mod_time, 5, 6));
$last_mod_second = bindec(substr($binary_mod_time, 11, 5));
$this->central_dir_list[$dir['file_name']] = array(
'version_madeby' => $dir['version_madeby'][1],
'version_needed' => $dir['version_needed'][1],
'general_bit_flag' => str_pad(decbin($dir['general_bit_flag'][1]), 8, '0', STR_PAD_LEFT),
'compression_method' => $dir['compression_method'][1],
'lastmod_datetime' => mktime($last_mod_hour, $last_mod_minute, $last_mod_second, $last_mod_month, $last_mod_day, $last_mod_year),
'crc-32' => str_pad(dechex(ord($dir['crc-32'][3])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($dir['crc-32'][2])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($dir['crc-32'][1])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($dir['crc-32'][0])), 2, '0', STR_PAD_LEFT),
'compressed_size' => $dir['compressed_size'][1],
'uncompressed_size' => $dir['uncompressed_size'][1],
'disk_number_start' => $dir['disk_number_start'][1],
'internal_attributes' => $dir['internal_attributes'][1],
'external_attributes1' => $dir['external_attributes1'][1],
'external_attributes2' => $dir['external_attributes2'][1],
'relative_offset' => $dir['relative_offset'][1],
'file_name' => $dir['file_name'],
'extra_field' => $dir['extra_field'],
'file_comment' => $dir['file_comment'],
);
$signature = fread($fh, 4);
}
// If loaded centralDirs, then try to identify the offsetPosition of the compressed data.
if ($this->central_dir_list)
{
foreach ($this->central_dir_list as $filename => $details)
{
$i = $this->_get_file_header($fh, $details['relative_offset']);
$this->compressed_list[$filename]['file_name'] = $filename;
$this->compressed_list[$filename]['compression_method'] = $details['compression_method'];
$this->compressed_list[$filename]['version_needed'] = $details['version_needed'];
$this->compressed_list[$filename]['lastmod_datetime'] = $details['lastmod_datetime'];
$this->compressed_list[$filename]['crc-32'] = $details['crc-32'];
$this->compressed_list[$filename]['compressed_size'] = $details['compressed_size'];
$this->compressed_list[$filename]['uncompressed_size'] = $details['uncompressed_size'];
$this->compressed_list[$filename]['lastmod_datetime'] = $details['lastmod_datetime'];
$this->compressed_list[$filename]['extra_field'] = $i['extra_field'];
$this->compressed_list[$filename]['contents_start_offset'] = $i['contents_start_offset'];
if (strtolower($stop_on_file) == strtolower($filename))
{
break;
}
}
}
return TRUE;
}
}
return FALSE;
}
private function _load_files_by_signatures(&$fh, $stop_on_file = FALSE)
{
fseek($fh, 0);
$return = FALSE;
for (;;)
{
$details = $this->_get_file_header($fh);
if ( ! $details)
{
$this->set_debug('Invalid signature. Trying to verify if is old style Data Descriptor...');
fseek($fh, 12 - 4, SEEK_CUR); // 12: Data descriptor - 4: Signature (that will be read again)
$details = $this->_get_file_header($fh);
}
if ( ! $details)
{
$this->set_debug('Still invalid signature. Probably reached the end of the file.');
break;
}
$filename = $details['file_name'];
$this->compressed_list[$filename] = $details;
$return = true;
if (strtolower($stop_on_file) == strtolower($filename))
{
break;
}
}
return $return;
}
private function _get_file_header(&$fh, $start_offset = FALSE)
{
if ($start_offset !== FALSE)
{
fseek($fh, $start_offset);
}
$signature = fread($fh, 4);
if ($signature == $this->zip_signature)
{
// Get information about the zipped file
$file['version_needed'] = unpack("v", fread($fh, 2)); // version needed to extract
$file['general_bit_flag'] = unpack("v", fread($fh, 2)); // general purpose bit flag
$file['compression_method'] = unpack("v", fread($fh, 2)); // compression method
$file['lastmod_time'] = unpack("v", fread($fh, 2)); // last mod file time
$file['lastmod_date'] = unpack("v", fread($fh, 2)); // last mod file date
$file['crc-32'] = fread($fh, 4); // crc-32
$file['compressed_size'] = unpack("V", fread($fh, 4)); // compressed size
$file['uncompressed_size'] = unpack("V", fread($fh, 4)); // uncompressed size
$zip_file_length = unpack("v", fread($fh, 2)); // filename length
$extra_field_length = unpack("v", fread($fh, 2)); // extra field length
$file['file_name'] = fread($fh, $zip_file_length[1]); // filename
$file['extra_field'] = $extra_field_length[1] ? fread($fh, $extra_field_length[1]) : ''; // extra field
$file['contents_start_offset'] = ftell($fh);
// Bypass the whole compressed contents, and look for the next file
fseek($fh, $file['compressed_size'][1], SEEK_CUR);
// Convert the date and time, from MS-DOS format to UNIX Timestamp
$binary_mod_date = str_pad(decbin($file['lastmod_date'][1]), 16, '0', STR_PAD_LEFT);
$binary_mod_time = str_pad(decbin($file['lastmod_time'][1]), 16, '0', STR_PAD_LEFT);
$last_mod_year = bindec(substr($binary_mod_date, 0, 7)) + 1980;
$last_mod_month = bindec(substr($binary_mod_date, 7, 4));
$last_mod_day = bindec(substr($binary_mod_date, 11, 5));
$last_mod_hour = bindec(substr($binary_mod_time, 0, 5));
$last_mod_minute = bindec(substr($binary_mod_time, 5, 6));
$last_mod_second = bindec(substr($binary_mod_time, 11, 5));
// Mount file table
$i = array(
'file_name' => $file['file_name'],
'compression_method' => $file['compression_method'][1],
'version_needed' => $file['version_needed'][1],
'lastmod_datetime' => mktime($last_mod_hour, $last_mod_minute, $last_mod_second, $last_mod_month, $last_mod_day, $last_mod_year),
'crc-32' => str_pad(dechex(ord($file['crc-32'][3])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($file['crc-32'][2])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($file['crc-32'][1])), 2, '0', STR_PAD_LEFT) .
str_pad(dechex(ord($file['crc-32'][0])), 2, '0', STR_PAD_LEFT),
'compressed_size' => $file['compressed_size'][1],
'uncompressed_size' => $file['uncompressed_size'][1],
'extra_field' => $file['extra_field'],
'general_bit_flag' => str_pad(decbin($file['general_bit_flag'][1]), 8, '0', STR_PAD_LEFT),
'contents_start_offset' => $file['contents_start_offset']
);
return $i;
}
return FALSE;
}
}
/* End of file Unzip.php */
/* Location: ./system/libraries/Unzip.php */