respect-validation/library/Rules/AbstractSearcher.php
Henrique Moody 5b7ea866e4
Do not allow lowercase country codes
Country codes in ISO 3166-1 should be in uppercase, and the
`AbstractSearcher` should not change the input to search for a value.

While working on this fix, I also discovered that the
"PublicDomainSuffix" rule would throw an exception if it got a
non-scalar value as an input.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-02-02 16:55:37 +01:00

50 lines
982 B
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Helpers\CanValidateUndefined;
use function in_array;
use function is_scalar;
/**
* Abstract class for searches into arrays.
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
abstract class AbstractSearcher extends AbstractRule
{
use CanValidateUndefined;
/**
* @param mixed $input
* @return mixed[]
*/
abstract protected function getDataSource($input = null): array;
/**
* {@inheritDoc}
*/
public function validate($input): bool
{
$dataSource = $this->getDataSource($input);
if ($this->isUndefined($input) && empty($dataSource)) {
return true;
}
if (!is_scalar($input)) {
return false;
}
return in_array((string) $input, $dataSource, true);
}
}