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

Created 2y | Nov 14, 2022, 10:20:26 AM


Login to add comment

Other posts in this group

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

Mar 5, 2025, 8:40:26 AM | 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

Mar 4, 2025, 11:50:05 AM | 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

Mar 3, 2025, 2:50:20 PM | 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

Mar 2, 2025, 11:11:13 AM | 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

Feb 28, 2025, 10:31:15 AM | 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

Feb 27, 2025, 4:10:03 PM | 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

Feb 26, 2025, 2:31:31 PM | Symfony