makinacorpus / filechunk-bundle
Javascript file upload widget and form type for Symfony
Installs: 6 637
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 14
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.0
- makinacorpus/files: ^1.0.1
- symfony/dependency-injection: ^5.4|^6.0
- symfony/event-dispatcher: ^5.4|^6.0
- symfony/framework-bundle: ^5.4|^6.0
- symfony/mime: ^5.4|^6.0
Requires (Dev)
- phpunit/phpunit: ^9.0
- symfony/form: ^5.4|^6.0
- symfony/validator: ^5.4|^6.0
- dev-master
- 3.0.2
- 3.0.1
- 3.0.0
- 3.0.0-alpha1
- 2.x-dev
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 2.0.0-alpha16
- 2.0.0-alpha15
- 2.0.0-alpha14
- 2.0.0-alpha13
- 2.0.0-alpha12
- 2.0.0-alpha11
- 2.0.0-alpha10
- 2.0.0-alpha9
- 2.0.0-alpha8
- 2.0.0-alpha7
- 2.0.0-alpha6
- 2.0.0-alpha5
- 2.0.0-alpha4
- 2.0.0-alpha3
- 2.0.0-alpha2
- 2.0.0-alpha1
- 1.x-dev
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-beta7
- 1.0.0-beta6
- 1.0.0-beta5
- 1.0.0-alpha9
- 1.0.0-alpha8
- 1.0.0-alpha7
- 1.0.0-alpha6
- 1.0.0-alpha5
- 1.0.0-alpha4
- 1.0.0-alpha3
- 1.0.0-alpha2
- 1.0.0-alpha1
- 0.x-dev
- dev-prevent-checksum
This package is auto-updated.
Last update: 2024-10-29 11:03:23 UTC
README
This bundle provides a chunked file upload endpoint, that is tailored to be used with the https://github.com/makinacorpus/filechunk-front widget, but that may be used by any other component,
The chunked file upload endpoint allows:
- very large file uploads,
- resuming broken uploads,
- bypassing most HTTP restrictions on file uploads (size, timeouts);
- avoiding the PHP file upload mecanisms,
- easy to use with a custom form type that can input and output either
File
instances or string URIs.
Known browsers to work with the external JavaScript widget:
- Chrome <= 49
- Edge <= 13
- IE <= 11
- Firefox <= 33
- And probably others, since it only uses a very small subset of the FileReader API.
Setup
Installation
composer require makinacorpus/filechunk-bundle
Current version does not carry the associated JavaScript widget, you must install it from: https://github.com/makinacorpus/filechunk-front
Optionnally, if you are working in a Drupal 7 context, you may just install the following module: https://github.com/makinacorpus/drupal-filechunk instead of manually registering the JavaScript widget.
Basic configuration
Everything should be auto-configured if you follow the rest of this section.
Custom schemes configuration
Each custom scheme is tied to a custom folder, allowing you to store protocol relative URI in your database instead of absolute path, making the application portable and migrable easily.
Per default, the bundle offers three schemes:
private://
for files that should not be accessible via the HTTPd which will default to%kernel.project_dir/var/private/%
,public://
for files that will be freely visible via the HTTPd, which will default to%kernel.project_dir/public/files/
,temporary://
for temporary files, which will default to PHP configured temporary folder,upload://
for chunked file upload, which defaults totemporary://filechunk/
webroot://
for files that are in the public directory, will default to%kernel.project_dir/public
,
Only the temporary one cannot be configured, all others can be set via
the following .env
file variables:
FILE_PRIVATE_DIR="%kernel.project_dir%/var/private"
FILE_PUBLIC_DIR="%kernel.project_dir%/public/files"
FILE_UPLOAD_DIR="%kernel.project_dir%/var/tmp/upload"
FILE_WEBROOT_DIR="%kernel.project_dir%/public"
Chunked file upload widget configuration
Register the routing.yml file in your config/routes.yaml
file:
filechunk: resource: "@FilechunkBundle/Resources/config/routing.yml" prefix: /
And the associated form theme in your config/packages/twig.yaml
file:
twig: debug: "%kernel.debug%" strict_variables: false form_themes: # ... - "FilechunkBundle:Form:fields.html.twig"
And it should probably work.
Usage
File manager API
Documentation will come soon.
File widget
Basic usage
Just use the MakinaCorpus\FilechunkBundle\Form\Type\FilechunkType
form type
in your own form builders.
Default values MUST be Symfony\Component\HttpFoundation\File\File
instances, values returned will also be.
Validation
You may happily use the Symfony\Component\Validator\Constraints\File
file
constraint to validate you file:
$this ->createFormBuilder() ->add('photo', FilechunkType::class, [ 'label' => "Photo", 'multiple' => false, 'required' => true, 'constraints' => [ new Assert\NotBlank(), new Assert\File(['mimeTypes' => ['image/jpg', 'image/jpeg', 'image/png', 'application/pdf']]), ], ])
Caveat with multiple values
When using the multiple
property set to true, you cannot just apply the
Assert\File
validator, if you do, since the widget will return an array
of files the validator will fail. To get around this problem, here is a real life
working example on how to tranform the previous example:
$this ->createFormBuilder() ->add('photo', FilechunkType::class, [ 'label' => "Photo", 'multiple' => false, 'required' => true, 'constraints' => [ new Assert\NotBlank(), new All([ 'constraints' => [ new Assert\File(['mimeTypes' => ['image/jpg', 'image/jpeg', 'image/png', 'application/pdf']]), ], ]), ], ])
You may find a better explaination of this there http://blog.arithm.com/2014/11/24/validating-multiple-files-in-symfony-2-5/
Using validation group when working with multiple values
Same as upper, but you have validation groups too, you need to cascade the groups in the whole validator chain, this way:
$this ->createFormBuilder() ->add('photo', FilechunkType::class, [ 'label' => "Photo", 'multiple' => false, 'required' => true, 'constraints' => [ new Assert\NotBlank([ 'groups' => ['some', 'group'], ]), new All([ 'groups' => ['some', 'group'], 'constraints' => [ new Assert\File( 'groups' => ['some', 'group'], 'mimeTypes' => ['image/jpg', 'image/jpeg', 'image/png', 'application/pdf'], ]), ], ]), ], ])
Important notes
-
if you provide default values via the form data, and remove it via the UI on the HTML page, you have no way of fetching the removed file list, you must take care of this manually: this will be one of the first feature to be implemented in the future;
-
uploaded files are NOT PHP uploaded files, but regular files in your temporary folder, you need to move them manually (you cannot use the
move_uploaded_file()
PHP function; -
You need recent browsers.
That's pretty much it, have fun!