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

Open in your IDE?
  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 'html5';
  25.     public const VALIDATION_MODE_STRICT 'strict';
  26.     public const VALIDATION_MODE_LOOSE 'loose';
  27.     public const INVALID_FORMAT_ERROR 'bd79c0ab-ddba-46cc-a703-a7a4b08de310';
  28.     public const VALIDATION_MODES = [
  29.         self::VALIDATION_MODE_HTML5,
  30.         self::VALIDATION_MODE_STRICT,
  31.         self::VALIDATION_MODE_LOOSE,
  32.     ];
  33.     protected const ERROR_NAMES = [
  34.         self::INVALID_FORMAT_ERROR => 'STRICT_CHECK_FAILED_ERROR',
  35.     ];
  36.     /**
  37.      * @deprecated since Symfony 6.1, use const ERROR_NAMES instead
  38.      */
  39.     protected static $errorNames self::ERROR_NAMES;
  40.     public $message 'This value is not a valid email address.';
  41.     public $mode;
  42.     public $normalizer;
  43.     public function __construct(
  44.         array $options null,
  45.         string $message null,
  46.         string $mode null,
  47.         callable $normalizer null,
  48.         array $groups null,
  49.         mixed $payload null
  50.     ) {
  51.         if (\is_array($options) && \array_key_exists('mode'$options) && !\in_array($options['mode'], self::VALIDATION_MODEStrue)) {
  52.             throw new InvalidArgumentException('The "mode" parameter value is not valid.');
  53.         }
  54.         parent::__construct($options$groups$payload);
  55.         $this->message $message ?? $this->message;
  56.         $this->mode $mode ?? $this->mode;
  57.         $this->normalizer $normalizer ?? $this->normalizer;
  58.         if (self::VALIDATION_MODE_STRICT === $this->mode && !class_exists(StrictEmailValidator::class)) {
  59.             throw new LogicException(sprintf('The "egulias/email-validator" component is required to use the "%s" constraint in strict mode.'__CLASS__));
  60.         }
  61.         if (null !== $this->normalizer && !\is_callable($this->normalizer)) {
  62.             throw new InvalidArgumentException(sprintf('The "normalizer" option must be a valid callable ("%s" given).'get_debug_type($this->normalizer)));
  63.         }
  64.     }
  65. }