New in Symfony 6.2: Improved File Validator

Contributed by
Kévin Dunglas
in #47710.

The File constraint from the Validator component checks that a given value is a valid file. One of its options is called mimeTypes and it verifies that the media type (formerly known as MIME type) of the file is one of the given values:

use Symfony\Component\Validator\Constraints as Assert;

class ScannedDocument
{
    #[Assert\File(
        maxSize: '1024k',
        mimeTypes: ['application/pdf', 'application/x-pdf'],
    )]
    protected $pdfFile;

    // ...
}

The values passed to mimeTypes must be any of the official list of valid media types. Some of these values are confusing and cumbersome even for common file types (e.g. Microsoft Excel have multiple media types associated to it, such as application/vnd.ms-excel, application/vnd.ms-excel.sheet.macroEnabled.12, etc.)

In Symfony 6.2 we're improving the File constraint with a new option called extensions. This option checks both the file extension and its media type. Using this option, the above example looks as follows:

use Symfony\Component\Validator\Constraints as Assert;

class ScannedDocument
{
    #[Assert\File(maxSize: '1024k', extensions: 'pdf')]
    protected $pdfFile;

    // ...
}

The extensions option checks both that the file has exactly the .pdf extension and that its media type is any of the types associated to that extension in the official list (application/pdf, application/x-pdf, etc.)

In the following example, we allow uploading any file associated to JPEG media types, but require that the extension is .jpg (so, .jpeg files won't be allowed):

use Symfony\Component\Validator\Constraints as Assert;

class UserProfile
{
    #[Assert\File(maxSize: '250k', extensions: 'jpg')]
    protected $avatar;

    // ...
}

The extensions option also allows to pass a list of media types to accept for the extension. Moreover, you can pass an array to accept several extensions, each of them optionally defining which media types to accept:

use Symfony\Component\Validator\Constraints as Assert;

class SharedFile
{
    #[Assert\File(extensions: [
        'jpg',
        'txt' => 'text/plain',
        'xml' => ['text/xml', 'application/xml'],
    ])]
    protected $contents;

    // ...
}
            <hr style="margin-bottom: 5px" />
            <div style="font-size: 90%">
                <a href="https://symfony.com/sponsor">Sponsor</a> the Symfony project.
            </div>

https://symfony.com/blog/new-in-symfony-6-2-improved-file-validator?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Établi 2y | 14 nov. 2022, 10:20:26


Connectez-vous pour ajouter un commentaire

Autres messages de ce groupe

SymfonyLive Berlin 2025: CI in PHP Projects: Automate Everything with Your Personal Army of Robots

SymfonyLive Berlin 2025, conference held in English, will take place from April 1 to 4! The schedule is being revealed gradually. More details are available here.

We’re thrilled to announce

5 mars 2025, 08:40:26 | Symfony
SymfonyLive Paris 2025 : API Platform sans Doctrine

SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here.

Al

4 mars 2025, 11:50:05 | Symfony
SymfonyLive Berlin 2025: SEAL: Dive into the sea of search engines

SymfonyLive Berlin 2025, conference held in English, will take place from April 1 to 4! The schedule is being revealed gradually. More details are available here. 🚨 Enjoy the last day before t

3 mars 2025, 14:50:20 | Symfony
A Week of Symfony #948 (24 February - 2 March 2025)

This week, Symfony 6.4.19 and 7.2.4 maintenance versions were released. In addition, the upcoming Symfony 7.3 version added a helper to render directory trees in the console. Lastly, we welcomed four

2 mars 2025, 11:11:13 | Symfony
SymfonyLive Paris 2025 : Tirez profit de Messenger pour améliorer votre architecture

SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here.

Al

28 févr. 2025, 10:31:15 | Symfony
SymfonyLive Berlin 2025: Building really fast applications

SymfonyLive Berlin 2025, conference held in English, will take place from April 1 to 4! The schedule is being revealed gradually. More details are available here. 🚨 Enjoy the last few days bef

27 févr. 2025, 16:10:03 | Symfony
SymfonyLive Paris 2025 :  Async avec Messenger, AMQP et Mercure

SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here. 🚨 Tod

26 févr. 2025, 14:31:31 | Symfony