Skip to content

[Validator] Documented the ExpressionLanguageSyntax constraint #13669

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
Jun 3, 2020
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
1 change: 1 addition & 0 deletions reference/constraints.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Validation Constraints Reference
constraints/Type

constraints/Email
constraints/ExpressionLanguageSyntax
constraints/Length
constraints/Url
constraints/Regex
Expand Down
129 changes: 129 additions & 0 deletions reference/constraints/ExpressionLanguageSyntax.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
ExpressionLanguageSyntax
========================

This constraint checks that the value is valid as an `ExpressionLanguage`_
expression.

.. versionadded:: 5.1

The ``ExpressionLanguageSyntax`` constraint was introduced in Symfony 5.1.

========== ===================================================================
Applies to :ref:`property or method <validation-property-target>`
Options - `allowedVariables`_
- `groups`_
- `message`_
- `payload`_
Class :class:`Symfony\\Component\\Validator\\Constraints\\ExpressionLanguageSyntax`
Validator :class:`Symfony\\Component\\Validator\\Constraints\\ExpressionLanguageSyntaxValidator`
========== ===================================================================

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

The following constraints ensure that:

* the ``promotion`` propery stores a value which is valid as an
ExpressionLanguage expression;
* the ``shippingOptions`` property also ensures that the expression only uses
certain variables.

.. configuration-block::

.. code-block:: php-annotations

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

use Symfony\Component\Validator\Constraints as Assert;

class Order
{
/**
* @Assert\ExpressionLanguageSyntax()
*/
protected $promotion;

/**
* @Assert\ExpressionLanguageSyntax(
* allowedVariables = ['user', 'shipping_centers']
* )
*/
protected $shippingOptions;
}

.. code-block:: yaml

# config/validator/validation.yaml
App\Entity\Order:
properties:
promotion:
- ExpressionLanguageSyntax: ~
shippingOptions:
- ExpressionLanguageSyntax:
allowedVariables: ['user', 'shipping_centers']

.. 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\Order">
<property name="promotion">
<constraint name="ExpressionLanguageSyntax"/>
</property>
<property name="shippingOptions">
<constraint name="ExpressionLanguageSyntax">
<option name="allowedVariables">['user', 'shipping_centers']</option>
</constraint>
</property>
</class>
</constraint-mapping>

.. code-block:: php

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

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

class Order
{
public static function loadValidatorMetadata(ClassMetadata $metadata)
{
$metadata->addPropertyConstraint('promotion', new Assert\ExpressionLanguageSyntax());

$metadata->addPropertyConstraint('shippingOptions', new Assert\ExpressionLanguageSyntax([
'allowedVariables' => ['user', 'shipping_centers'],
]));
}
}

Options
-------

allowedVariables
~~~~~~~~~~~~~~~~

**type**: ``array`` or ``null`` **default**: ``null``

If this option is defined, the expression can only use the variables whose names
are included in this option. Unset this option or set its value to ``null`` to
allow any variables.

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

message
~~~~~~~

**type**: ``string`` **default**: ``This value should be a valid expression.``

This is the message displayed when the validation fails.

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

.. _`ExpressionLanguage`: https://symfony.com/components/ExpressionLanguage
1 change: 1 addition & 0 deletions reference/constraints/map.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ String Constraints
~~~~~~~~~~~~~~~~~~

* :doc:`Email </reference/constraints/Email>`
* :doc:`ExpressionLanguageSyntax </reference/constraints/ExpressionLanguageSyntax>`
* :doc:`Length </reference/constraints/Length>`
* :doc:`Url </reference/constraints/Url>`
* :doc:`Regex </reference/constraints/Regex>`
Expand Down