CountryConstraintValidator.php in Address 8
File
src/Plugin/Validation/Constraint/CountryConstraintValidator.phpView source
<?php
namespace Drupal\address\Plugin\Validation\Constraint;
use CommerceGuys\Addressing\Country\CountryRepositoryInterface;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the country constraint.
*/
class CountryConstraintValidator extends ConstraintValidator implements ContainerInjectionInterface {
/**
* The country repository.
*
* @var \CommerceGuys\Addressing\Country\CountryRepositoryInterface
*/
protected $countryRepository;
/**
* Constructs a new CountryConstraintValidator object.
*
* @param \CommerceGuys\Addressing\Country\CountryRepositoryInterface $country_repository
* The country repository.
*/
public function __construct(CountryRepositoryInterface $country_repository) {
$this->countryRepository = $country_repository;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('address.country_repository'));
}
/**
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint) {
$country_code = $value;
if ($country_code === NULL || $country_code === '') {
return;
}
$countries = $this->countryRepository
->getList();
if (!isset($countries[$country_code])) {
$this->context
->buildViolation($constraint->invalidMessage)
->setParameter('%value', $this
->formatValue($country_code))
->addViolation();
return;
}
$available_countries = $constraint->availableCountries;
if (!empty($available_countries) && !in_array($country_code, $available_countries)) {
$this->context
->buildViolation($constraint->notAvailableMessage)
->setParameter('%value', $this
->formatValue($country_code))
->addViolation();
}
}
}
Classes
Name | Description |
---|---|
CountryConstraintValidator | Validates the country constraint. |