vendor/symfony/validator/Constraints/Email.php line 26

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Egulias\EmailValidator\EmailValidator as StrictEmailValidator;
  12. use Symfony\Component\Validator\Constraint;
  13. use Symfony\Component\Validator\Exception\InvalidArgumentException;
  14. use Symfony\Component\Validator\Exception\LogicException;
  15. /**
  16.  * @Annotation
  17.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  18.  *
  19.  * @author Bernhard Schussek <bschussek@gmail.com>
  20.  */
  21. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  22. class Email extends Constraint
  23. {
  24.     public const VALIDATION_MODE_HTML5_ALLOW_NO_TLD 'html5-allow-no-tld';
  25.     public const VALIDATION_MODE_HTML5 'html5';
  26.     public const VALIDATION_MODE_STRICT 'strict';
  27.     /**
  28.      * @deprecated since Symfony 6.2, use VALIDATION_MODE_HTML5 instead
  29.      */
  30.     public const VALIDATION_MODE_LOOSE 'loose';
  31.     public const INVALID_FORMAT_ERROR 'bd79c0ab-ddba-46cc-a703-a7a4b08de310';
  32.     public const VALIDATION_MODES = [
  33.         self::VALIDATION_MODE_HTML5_ALLOW_NO_TLD,
  34.         self::VALIDATION_MODE_HTML5,
  35.         self::VALIDATION_MODE_STRICT,
  36.         self::VALIDATION_MODE_LOOSE,
  37.     ];
  38.     protected const ERROR_NAMES = [
  39.         self::INVALID_FORMAT_ERROR => 'STRICT_CHECK_FAILED_ERROR',
  40.     ];
  41.     /**
  42.      * @deprecated since Symfony 6.1, use const ERROR_NAMES instead
  43.      */
  44.     protected static $errorNames self::ERROR_NAMES;
  45.     public $message 'This value is not a valid email address.';
  46.     public $mode;
  47.     public $normalizer;
  48.     public function __construct(
  49.         array $options null,
  50.         string $message null,
  51.         string $mode null,
  52.         callable $normalizer null,
  53.         array $groups null,
  54.         mixed $payload null
  55.     ) {
  56.         if (\is_array($options) && \array_key_exists('mode'$options) && !\in_array($options['mode'], self::VALIDATION_MODEStrue)) {
  57.             throw new InvalidArgumentException('The "mode" parameter value is not valid.');
  58.         }
  59.         parent::__construct($options$groups$payload);
  60.         $this->message $message ?? $this->message;
  61.         $this->mode $mode ?? $this->mode;
  62.         $this->normalizer $normalizer ?? $this->normalizer;
  63.         if (self::VALIDATION_MODE_LOOSE === $this->mode) {
  64.             trigger_deprecation('symfony/validator''6.2''The "%s" mode is deprecated. It will be removed in 7.0 and the default mode will be changed to "%s".'self::VALIDATION_MODE_LOOSEself::VALIDATION_MODE_HTML5);
  65.         }
  66.         if (self::VALIDATION_MODE_STRICT === $this->mode && !class_exists(StrictEmailValidator::class)) {
  67.             throw new LogicException(sprintf('The "egulias/email-validator" component is required to use the "%s" constraint in strict mode.'__CLASS__));
  68.         }
  69.         if (null !== $this->normalizer && !\is_callable($this->normalizer)) {
  70.             throw new InvalidArgumentException(sprintf('The "normalizer" option must be a valid callable ("%s" given).'get_debug_type($this->normalizer)));
  71.         }
  72.     }
  73. }