-
Notifications
You must be signed in to change notification settings - Fork 270
get started (laravel 5)
- open
composer.json
- under
"require": {
add"Chumper/Zipper": "0.6.x"
- open
config/app.php
- under
'providers' => [
add'Chumper\Zipper\ZipperServiceProvider',
- under
'aliases' => [
add'Zipper' => 'Chumper\Zipper\Zipper',
- run
composer update
You can now access Zipper with the Zipper
alias.
$files = glob('public/files/*');
Zipper::make('public/test.zip')->add($files);
- by default the package will create the
test.zip
in the project route folder but in the example above we changed it toproject_folder/public/
.
at the top of file add use Chumper\Zipper\Zipper;
$zipper = new 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);
- You can easily chain most functions, except
getFileContent
,getStatus
,close
andextractTo
which must come at the end of the chaine.
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.
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.
add($files/folder)
You can add and array of Files, or a Folder which all the files in that folder will then be added, so from the first example we could instead do something like $files = 'public/files/';
.
addString($filename, $content)
add a single file to the zip by specifying a name and content as strings.
remove($file/s)
removes a single file or an array of files from the zip.
folder($folder)
Specify a folder to 'add files to' or 'remove files from' from the zip, example
Zipper::make('test.zip')->folder('test')->add('composer.json');
Zipper::make('test.zip')->folder('test')->remove('composer.json');
home()
Resets the folder pointer.
zip($fileName)
Uses the ZipRepository for file handling.
getFileContent($filePath)
get the content of a file in the zip. This will return the content or false.
getStatus()
get the opening status of the zip as integer.
close()
closes the zip and writes all changes.
extractTo($path)
Extracts the content of the zip archive to the specified location, for example
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
.
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
white listed
Zipper::WHITELIST
Zipper::make('test.zip')->extractTo('public', array('vendor'), Zipper::WHITELIST);
Which will extract the test.zip
into the public
folder but only the folder vendor
inside the zip will be extracted.
or black listed
Zipper::BLACKLIST
Zipper::make('test.zip')->extractTo('public', array('vendor'), Zipper::BLACKLIST);
Which will extract the test.zip
into the public
folder except the folder vendor
inside the zip will not be extracted.