How to Apply only a Subset of all Your Validation Constraints (Validation Groups)

By default, when validating an object all constraints of this class will be checked whether or not they actually pass. In some cases, however, you will need to validate an object against only some constraints on that class. To do this, you can organize each constraint into one or more "validation groups" and then apply validation against one group of constraints.

デフォルトでは、オブジェクトを検証するときに、このクラスのすべての制約が実際に合格するかどうかがチェックされます。ただし、場合によっては、そのクラスの一部の制約のみに対してオブジェクトを検証する必要があります。これを行うには、各制約を 1 つ以上の「検証グループ」に編成してから、制約の 1 つのグループに対して検証を適用します。

For example, suppose you have a User class, which is used both when a user registers and when a user updates their contact information later:

たとえば、User クラスがあるとします。このクラスは、ユーザーが登録するときと、後で連絡先情報を更新するときに使用されます。
  • Attributes
    属性
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// src/Entity/User.php
namespace App\Entity;

use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Validator\Constraints as Assert;

class User implements UserInterface
{
    #[Assert\Email(groups: ['registration'])]
    private $email;

    #[Assert\NotBlank(groups: ['registration'])]
    #[Assert\Length(min: 7, groups: ['registration'])]
    private $password;

    #[Assert\Length(min: 2)]
    private $city;
}

With this configuration, there are three validation groups:

この構成では、3 つの検証グループがあります。
Default
Contains the constraints in the current class and all referenced classes that belong to no other group. In this example, it only contains the city field.
現在のクラスの制約と、他のグループに属さないすべての参照クラスが含まれます。この例では、city フィールドのみが含まれています。
User
Equivalent to all constraints of the User object in the Default group. This is always the name of the class. The difference between this and Default is explained in How to Sequentially Apply Validation Groups.
Defaultgroup の User オブジェクトのすべての制約に相当します。これは常にクラスの名前です。 this と Default の違いは、検証グループを順次適用する方法で説明されています。
registration
This is a custom validation group, so it only contains the constraints that are explicitly associated with it. In this example, only the email and password fields.
これはカスタム検証グループであるため、明示的に関連付けられた制約のみが含まれます。この例では、電子メール フィールドとパスワード フィールドのみです。

Constraints in the Default group of a class are the constraints that have either no explicit group configured or that are configured to a group equal to the class name or the string Default.

クラスのデフォルト グループの制約は、明示的なグループが設定されていないか、クラス名または文字列 Default と等しいグループに設定されている制約です。

Caution

注意

When validating just the User object, there is no difference between the Default group and the User group. But, there is a difference if User has embedded objects. For example, imagine User has an address property that contains some Address object and that you've added the Valid constraint to this property so that it's validated when you validate the User object.

User オブジェクトのみを検証する場合、Default グループと User グループの間に違いはありません。ただし、ユーザーにオブジェクトが埋め込まれている場合は違いがあります。たとえば、User に Address オブジェクトを含む address プロパティがあり、このプロパティに Valid 制約を追加して、User オブジェクトを検証するときに検証されるとします。

If you validate User using the Default group, then any constraints on the Address class that are in the Default group will be used. But, if you validate User using the User validation group, then only constraints on the Address class with the User group will be validated.

Default グループを使用して User を検証すると、Default グループにある Address クラスのすべての制約が使用されます。ただし、User 検証グループを使用して User を検証すると、User グループの Address クラスの制約のみが検証されます。

In other words, the Default group and the class name group (e.g. User) are identical, except when the class is embedded in another object that's actually the one being validated.

つまり、Default グループとクラス名グループ (例: User) は、クラスが実際に検証されている別のオブジェクトに埋め込まれている場合を除き、同じです。

If you have inheritance (e.g. User extends BaseUser) and you validate with the class name of the subclass (i.e. User), then all constraints in the User and BaseUser will be validated. However, if you validate using the base class (i.e. BaseUser), then only the default constraints in the BaseUser class will be validated.

継承があり (User extends BaseUser など)、サブクラスのクラス名 (つまり User) で検証すると、User と BaseUser のすべての制約が検証されます。ただし、基本クラス (つまり、BaseUser) を使用して検証すると、BaseUser クラスの defaultconstraints のみが検証されます。

To tell the validator to use a specific group, pass one or more group names as the third argument to the validate() method:

バリデーターに特定のグループを使用するように指示するには、3 番目の引数として 1 つ以上のグループ名を validate() メソッドに渡します。
1
$errors = $validator->validate($author, null, ['registration']);

If no groups are specified, all constraints that belong to the group Default will be applied.

グループが指定されていない場合、グループ Default に属するすべての制約が適用されます。

In a full stack Symfony project, you'll usually work with validation indirectly through the form library. For information on how to use validation groups inside forms, see How to Define the Validation Groups to Use.

フルスタックの Symfony プロジェクトでは、通常、フォーム ライブラリを介して間接的に検証を行います。フォーム内で検証グループを使用する方法については、使用する検証グループを定義する方法を参照してください。