This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Constraints/CurrencyValidator.php

55 lines
1.5 KiB
PHP
Raw Normal View History

2013-01-05 09:58:46 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Constraints;
use Symfony\Component\Intl\Intl;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
/**
2014-12-21 17:00:50 +00:00
* Validates whether a value is a valid currency.
2013-01-05 09:58:46 +00:00
*
* @author Miha Vrhovnik <miha.vrhovnik@pagein.si>
*
* @api
*/
class CurrencyValidator extends ConstraintValidator
{
/**
* {@inheritdoc}
2013-01-05 09:58:46 +00:00
*/
public function validate($value, Constraint $constraint)
{
if (!$constraint instanceof Currency) {
throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\Currency');
}
2013-01-05 09:58:46 +00:00
if (null === $value || '' === $value) {
return;
}
if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) {
throw new UnexpectedTypeException($value, 'string');
}
$value = (string) $value;
$currencies = Intl::getCurrencyBundle()->getCurrencyNames();
if (!isset($currencies[$value])) {
$this->buildViolation($constraint->message)
->setParameter('{{ value }}', $this->formatValue($value))
->addViolation();
2013-01-05 09:58:46 +00:00
}
}
}