2017 © Pedro Peláez
 

library zipper

This is a little neat helper for the ZipArchive methods with handy functions

image

chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  • Saturday, May 5, 2018
  • by Chumper
  • Repository
  • 18 Watchers
  • 477 Stars
  • 920,373 Installations
  • PHP
  • 38 Dependents
  • 0 Suggesters
  • 96 Forks
  • 52 Open issues
  • 10 Versions
  • 14 % Grown

The README.md

Note

I haven't updated this package in a long time except merging PRs. The last time I was using this package was with PHP5. I archived the repository for the reason that I am no longer working with PHP (we all have to move on sometimes) and have no time to take proper care of it anymore., (*1)

Feel free to read the code, to fork it or to use it in whatever way you want., (*2)

Update 25th February 2020

I have merged a PR that includes a security fixe to mitigate zip directory traversal attacks. \ This package is still archived and should be swapped out with another package. \ However, as long as security fixes will come in I see it as my basic obligation to update this package on demand., (*3)

Zipper

Build Status, (*4)

This is a simple Wrapper around the ZipArchive methods with some handy functions., (*5)

Installation

  1. Add this package to the list of required packages, inside composer.json
    • for Laravel 5: "chumper/zipper": "1.0.x"
    • ~~for Laravel 4: "chumper/zipper": "0.5.x"~~
  2. Run composer update, (*6)

  3. Go to app/config/app.php, (*7)

  • add to providers Chumper\Zipper\ZipperServiceProvider::class
  • add to aliases 'Zipper' => Chumper\Zipper\Zipper::class

You can now access Zipper with the Zipper alias., (*8)

Simple example

$files = glob('public/files/*');
Zipper::make('public/test.zip')->add($files)->close();
  • by default the package will create the test.zip in the project route folder but in the example above we changed it to project_route/public/.

Another example

$zipper = new \Chumper\Zipper\Zipper;

$zipper->make('test.zip')->folder('test')->add('composer.json');
$zipper->zip('test.zip')->folder('test')->add('composer.json','test');

$zipper->remove('composer.lock');

$zipper->folder('mySuperPackage')->add(
    array(
        'vendor',
        'composer.json'
    ),
);

$zipper->getFileContent('mySuperPackage/composer.json');

$zipper->make('test.zip')->extractTo('',array('mySuperPackage/composer.json'),Zipper::WHITELIST);

$zipper->close();

Note: Please be aware that you need to call ->close() at the end to write the zip file to disk., (*9)

You can easily chain most functions, except getFileContent, getStatus, close and extractTo which must come at the end of the chain., (*10)

The main reason I wrote this little package is the extractTo method since it allows you to be very flexible when extracting zips. So you can for example implement an update method which will just override the changed files., (*11)

Functions

make($pathToFile)

Create or Open a zip archive; if the file does not exists it will create a new one. It will return the Zipper instance so you can chain easily., (*12)

add($files/folder)

You can add an array of Files, or a Folder and all the files in that folder will then be added, so from the first example we could instead do something like $files = 'public/files/';., (*13)

addString($filename, $content)

add a single file to the zip by specifying a name and the content as strings., (*14)

remove($file/s)

removes a single file or an array of files from the zip., (*15)

folder($folder)

Specify a folder to 'add files to' or 'remove files from' from the zip, example, (*16)

Zipper::make('test.zip')->folder('test')->add('composer.json');
Zipper::make('test.zip')->folder('test')->remove('composer.json');

listFiles($regexFilter = null)

Lists all files within archive (if no filter pattern is provided). Use $regexFilter parameter to filter files. See Pattern Syntax for regular expression syntax, (*17)

NB: listFiles ignores folder set with folder function, (*18)

Example: Return all files/folders ending/not ending with '.log' pattern (case insensitive). This will return matches in sub folders and their sub folders also, (*19)

$logFiles = Zipper::make('test.zip')->listFiles('/\.log$/i'); 
$notLogFiles = Zipper::make('test.zip')->listFiles('/^(?!.*\.log).*$/i'); 

home()

Resets the folder pointer., (*20)

zip($fileName)

Uses the ZipRepository for file handling., (*21)

getFileContent($filePath)

get the content of a file in the zip. This will return the content or false., (*22)

getStatus()

get the opening status of the zip as integer., (*23)

close()

closes the zip and writes all changes., (*24)

extractTo($path)

Extracts the content of the zip archive to the specified location, for example, (*25)

Zipper::make('test.zip')->folder('test')->extractTo('foo');

This will go into the folder test in the zip file and extract the content of that folder only to the folder foo, this is equal to using the Zipper::WHITELIST., (*26)

This command is really nice to get just a part of the zip file, you can also pass a 2nd & 3rd param to specify a single or an array of files that will be, (*27)

NB: Php ZipArchive uses internally '/' as directory separator for files/folders in zip. So Windows users should not set whitelist/blacklist patterns with '\' as it will not match anything, (*28)

white listed, (*29)

Zipper::WHITELIST, (*30)

Zipper::make('test.zip')->extractTo('public', array('vendor'), Zipper::WHITELIST);

Which will extract the test.zip into the public folder but only files/folders starting with vendor prefix inside the zip will be extracted., (*31)

or black listed, (*32)

Zipper::BLACKLIST Which will extract the test.zip into the public folder except files/folders starting with vendor prefix inside the zip will not be extracted., (*33)

Zipper::make('test.zip')->extractTo('public', array('vendor'), Zipper::BLACKLIST);

Zipper::EXACT_MATCH, (*34)

Zipper::make('test.zip')
    ->folder('vendor')
    ->extractTo('public', array('composer', 'bin/phpunit'), Zipper::WHITELIST | Zipper::EXACT_MATCH);

Which will extract the test.zip into the public folder but only files/folders exact matching names. So this will: * extract file or folder named composer in folder named vendor inside zip to public resulting public/composer * extract file or folder named bin/phpunit in vendor/bin/phpunit folder inside zip to public resulting public/bin/phpunit, (*35)

NB: extracting files/folder from zip without setting Zipper::EXACT_MATCH When zip has similar structure as below and only test.bat is given as whitelist/blacklist argument then extractTo would extract all those files and folders as they all start with given string, (*36)

test.zip
 |- test.bat
 |- test.bat.~
 |- test.bat.dir/
    |- fileInSubFolder.log

extractMatchingRegex($path, $regex)

Extracts the content of the zip archive matching regular expression to the specified location. See Pattern Syntax for regular expression syntax., (*37)

Example: extract all files ending with .php from src folder and its sub folders., (*38)

Zipper::make('test.zip')->folder('src')->extractMatchingRegex($path, '/\.php$/i'); 

Example: extract all files except those ending with test.php from src folder and its sub folders., (*39)

Zipper::make('test.zip')->folder('src')->extractMatchingRegex($path, '/^(?!.*test\.php).*$/i'); 

Development

Maybe it is a good idea to add other compression functions like rar, phar or bzip2 etc... Everything is setup for that, if you want just fork and develop further., (*40)

If you need other functions or got errors, please leave an issue on github., (*41)

The Versions

05/05 2018

dev-master

9999999-dev http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

17/07 2017

v1.0.2

1.0.2.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

01/02 2017

v1.0.1

1.0.1.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

30/01 2017

v1.0.0

1.0.0.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

27/12 2016

0.7.0

0.7.0.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

16/02 2015

0.6.1

0.6.1.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

13/02 2015

dev-l4

dev-l4 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

13/02 2015

0.6.0

0.6.0.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

08/01 2015

0.5.1

0.5.1.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive

25/11 2014

0.5.0

0.5.0.0 http://github.com/Chumper/zipper

This is a little neat helper for the ZipArchive methods with handy functions

  Sources   Download

Apache2

The Requires

 

The Development Requires

laravel zip archive