New in Symfony 5.4: New Validation Constraints

The Symfony Validator component provides tens of validators to validate that a given value matches some expected constraints (e.g. not blank, being a valid IP address, being a string shorter than 255 characters, etc.) In Symfony 5.4 we've expanded that list with two new validators/constraints.

CIDR Validator

        Contributed by Sorin Pop 
        in #43593.

This checks that a value is a valid CIDR (Classless Inter-Domain Routing) notation. By default, it validates the CIDR's IP and netmask both for version 4 and 6, with the option of allowing only one type of IP version to be valid. It also supports a minimum and maximum range constraint in which the value of the netmask is valid.

    1

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // src/Entity/RoutingTable.php namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;

class RoutingTable {

[Assert\Cidr]

protected $cidr;

#[Assert\Cidr(version: 6)]
protected $anotherCidr;

#[Assert\Cidr(netmaskMax: 20, version: 4)]
protected $yetAnotherCidr;

}

CssColor Validator

        Contributed by Mathieu Santostefano 
        in #40168.

CSS colors handling is common in applications like CMS and site builders. Checking that some given value is a valid CSS color (e.g. to allow users customize some themes) is not an easy feat because there are a lot of different ways to define a color in CSS. By default, this new constraint allows all the CSS color formats (RGB, HEX, HSL, named colors, keywords, etc.) but you can restrict the formats allowed:

    1

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 // src/Entity/ThemeColors.php namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;

class ThemeColors {

[Assert\CssColor]

protected $bodyBackgroundColor;

#[Assert\CssColor(
    formats: Assert\CssColor::HEX_LONG,
    message: 'The accent color must be a 6-character hexadecimal color.',
)]
protected $accentColor;

#[Assert\CssColor(
    formats: [Assert\CssColor::BASIC_NAMED_COLORS, Assert\CssColor::EXTENDED_NAMED_COLORS],
    message: 'The color '{{ value }}' is not a valid CSS color name.',
)]
protected $headerColor;

}

                Sponsor the Symfony project.

https://symfony.com/blog/new-in-symfony-5-4-new-validation-constraints?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Établi 3y | 12 nov. 2021 à 10:20:18


Connectez-vous pour ajouter un commentaire

Autres messages de ce groupe

A Week of Symfony #943 (20-26 January 2025)

This week, the upcoming Symfony 7.3 version improved the invokable command feature, deprecated the use of option arrays for configuring validation constraints, and updated the JsonEncoder component to

26 janv. 2025 à 12:10:08 | Symfony
SymfonyLive Berlin 2025: Need a MACH-ready Search Engine?

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.

As we are now unveiling th

24 janv. 2025 à 11:20:16 | Symfony
SymfonyLive Paris 2025 : Rôles & permissions : développez une marque blanche avec du Feature Flipping

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

23 janv. 2025 à 16:50:03 | Symfony
SymfonyLive Berlin 2025: So you think you know PHPUnit

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.

First, a big thank you to

22 janv. 2025 à 08:20:10 | Symfony
SymfonyLive Paris 2025 : Passkeys pour une authentification fluide et sécurisée

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.

To

21 janv. 2025 à 11:30:10 | Symfony
Join us for SymfonyDay Chicago – March 17, 2025!

Mark your calendars for March 17, 2025 because SymfonyDay Chicago 2025 promises to be a one-of-a-kind event that you won’t want to miss! This full day is dedicated to celebrating the incredible contri

20 janv. 2025 à 19:20:03 | Symfony
A Week of Symfony #942 (13-19 January 2025)

This week, Symfony celebrated the SymfonyOnline January 2025 conference. In addition, it announced the new Symfony UX Core Team. Lastly, the upcoming Symfony 7.3 version simplified the configuration o

19 janv. 2025 à 08:30:08 | Symfony