orkhanahmadov / laravel-zip-validator by orkhanahmadov

Laravel ZIP file content validator
17,263
123
3
Package Data
Maintainer Username: orkhanahmadov
Maintainer Contact: ahmadov90@gmail.com (Orkhan Ahmadov)
Package Create Date: 2020-01-09
Package Last Update: 2023-12-21
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:14:59
Package Statistics
Total Downloads: 17,263
Monthly Downloads: 408
Daily Downloads: 7
Total Stars: 123
Total Watchers: 3
Total Forks: 4
Total Open Issues: 0

Laravel ZIP file validator

Buy us a tree Latest Stable Version Latest Unstable Version Total Downloads GitHub license

Build Status Test Coverage Maintainability Quality Score StyleCI

Custom Laravel validation rule for checking ZIP file content.

Requirements

  • Laravel 6 or higher
  • PHP 7.2 or higher with zip extension enabled

Installation

You can install the package via composer:

composer require orkhanahmadov/laravel-zip-validator

Usage

Use ZipContent rule with list of required files.

use Orkhanahmadov\ZipValidator\Rules\ZipContent;

public function rules()
{
    return [
        'file' => [
            'required',
            'file',
            'mimes:zip',
            new ZipContent('thumb.jpg', 'assets/logo.png'),
        ],
    ];
}

Pass list of required files/folders to the constructor of the validator.

You can pass files as different constructor arguments or as array. If files are nested inside folders, pass relative path to file.

Validator will fail if any of the passed files does not exist in ZIP archive.

Validating maximum file size

Validator also allows checking maximum size of each file inside ZIP archive.

Simply pass file name as array key and maximum size as value:

new ZipContent(['thumb.jpg' => 100000]);

Validator in above example will look for thumb.jpg file with maximum size of 100000 bytes (100KB).

You can also mix multiple files with name-only or name+size validation:

new ZipContent(['thumb.jpg' => 100000, 'logo.png']);

Multiple files with "OR" validation

You can also pass multiple files with | symbol, if any of them exist in ZIP file validator will succeed.

new ZipContent('thumb.jpg|thumb.png|thumb.svg');

Validator in above example will look if thumb.jpg or thumb.png or thumb.svg file exists in ZIP.

Of course, you can also validate file size with "OR" validation:

new ZipContent(['thumb.jpg|thumb.png' => 100000]);

Above example will look if thumb.jpg or thumb.png file exists in ZIP and its file size is not bigger than 100000 bytes (100KB).

Important to keep in mind that when using "OR" validation with additional file size validation, validator will compare file size with the first matching element in ZIP archive.

Rejecting empty files

By default, validator only checks if file with given name exists, it will return true even if file with matching name is empty (has size of 0 bytes).

You can pass array of files as first argument and false as second argument to constructor if you want validator to reject files with 0 bytes.

new ZipContent(['thumb.jpg', 'style.css'], false);

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email ahmadov90@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.