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

Utworzony 3y | 12 lis 2021, 10:20:18


Zaloguj się, aby dodać komentarz

Inne posty w tej grupie

New in Symfony 7.3: Assets Pre-Compression

Contributed by Kévin Dunglas in

23 kwi 2025, 08:20:31 | Symfony
SymfonyOnline June 2025: Inside a Financial App Breach: Debugging a Million-Dollar Bug

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

22 kwi 2025, 13:50:03 | Symfony
New in Symfony 7.3: Invokable Commands and Input Attributes

This is the first article in a series showcasing the most important new features introduced by Symfony 7.3, which will be released at the end of May 2025.

22 kwi 2025, 09:10:36 | Symfony
A Week of Symfony #955 (April 14–20, 2025)

This week, the upcoming Symfony 7.3 version improved the AsAlias attribute by adding a new argument, introduced Clock support for UriSigner, and refined the return type of the ContainerInterface::get(

20 kwi 2025, 08:30:06 | Symfony
SymfonyOnline June 2025: Rethinking File Handling in Symfony

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

16 kwi 2025, 16:30:02 | Symfony
SymfonyLive Paris 2025: Recap and replay!

SymfonyLive Paris 2025 took place three weeks ago — a big thank you to everyone who joined us! The conference was held entirely in French, and now you can relive the best moments: replays, hig

15 kwi 2025, 14:50:24 | Symfony
A Week of Symfony #954 (April 7–13, 2025)

This week, Symfony 7.3 entered its "feature freeze" period in preparation for its release at the end of May 2025. Development activity focused on refining and polishing its new features, including a n

13 kwi 2025, 09:40:02 | Symfony