Skip to content

[Validator] Add Charset constraint #19341

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions reference/constraints/Charset.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
Charset
=======

.. versionadded:: 7.1

The ``Charset`` constraint was introduced in Symfony 7.1.

Validates that a string is encoded in a given charset.

========== =====================================================================
Applies to :ref:`property or method <validation-property-target>`
Class :class:`Symfony\\Component\\Validator\\Constraints\\Charset`
Validator :class:`Symfony\\Component\\Validator\\Constraints\\CharsetValidator`
========== =====================================================================

Basic Usage
-----------

If you wanted to ensure that the ``content`` property of an ``FileDTO``
class uses UTF-8, you could do the following:

.. configuration-block::

.. code-block:: php-attributes

// src/Entity/FileDTO.php
namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;

class FileDTO
{
#[Assert\Charset('UTF-8')]
protected string $content;
}

.. code-block:: yaml

# config/validator/validation.yaml
App\Entity\FileDTO:
properties:
content:
- Charset: 'UTF-8'

.. code-block:: xml

<!-- config/validator/validation.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<constraint-mapping xmlns="http://symfony.com/schema/dic/constraint-mapping"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/constraint-mapping https://symfony.com/schema/dic/constraint-mapping/constraint-mapping-1.0.xsd">

<class name="App\Entity\FileDTO">
<property name="content">
<constraint name="Charset">
<option name="charset">UTF-8</option>
</constraint>
</property>
</class>
</constraint-mapping>

.. code-block:: php

// src/Entity/FileDTO.php
namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\Validator\Mapping\ClassMetadata;

class FileDTO
{
// ...

public static function loadValidatorMetadata(ClassMetadata $metadata): void
{
$metadata->addPropertyConstraint('content', new Assert\Charset('UTF-8'));
}
}

Options
-------

``encodings``
~~~~~~~~~~~~~

**type**: ``array`` | ``string`` **default**: ``[]``

An encoding or a set of encodings to check against. If you pass an array of
encodings, the validator will check if the value is encoded in *any* of the
encodings. This option accept any value that can be passed to
:phpfunction:`mb_detect_encoding()`.

.. include:: /reference/constraints/_groups-option.rst.inc

``message``
~~~~~~~~~~~

**type**: ``string`` **default**: ``The detected encoding "{{ detected }}" does not match one of the accepted encoding: "{{ encodings }}".``

This is the message that will be shown if the value does not match any of the
accepted encodings.

You can use the following parameters in this message:

=================== ==============================================================
Parameter Description
=================== ==============================================================
``{{ detected }}`` The detected encoding
``{{ encodings }}`` The accepted encodings
=================== ==============================================================

.. include:: /reference/constraints/_payload-option.rst.inc
1 change: 1 addition & 0 deletions reference/constraints/map.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ String Constraints
* :doc:`PasswordStrength </reference/constraints/PasswordStrength>`
* :doc:`CssColor </reference/constraints/CssColor>`
* :doc:`NoSuspiciousCharacters </reference/constraints/NoSuspiciousCharacters>`
* :doc:`Charset </reference/constraints/Charset>`

Comparison Constraints
~~~~~~~~~~~~~~~~~~~~~~
Expand Down