respect-validation/library/Rules/Luhn.php
Henrique Moody 48405271c5
Replace placeholder "name" with "subject"
The `{{name}}` placeholder could represent different things depending on
the state of the Result, and referring to it as `{{name}}` seems
arbitrary. This commit changes it to `{{subject}}`, which is much more
generic and it describes well what that placeholder can mean.
2025-12-26 21:30:01 +01:00

52 lines
1.2 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Attribute;
use Respect\Validation\Message\Template;
use Respect\Validation\Rules\Core\Simple;
use function array_map;
use function count;
use function str_split;
/** @see https://en.wikipedia.org/wiki/Luhn_algorithm */
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
#[Template(
'{{subject}} must be a valid Luhn number',
'{{subject}} must not be a valid Luhn number',
)]
final class Luhn extends Simple
{
public function isValid(mixed $input): bool
{
if (!(new Digit())->evaluate($input)->hasPassed) {
return false;
}
$sum = 0;
$digits = array_map('intval', str_split((string) $input));
$numDigits = count($digits);
$parity = $numDigits % 2;
for ($i = 0; $i < $numDigits; ++$i) {
$digit = $digits[$i];
if ($parity == $i % 2) {
$digit <<= 1;
if (9 < $digit) {
$digit -= 9;
}
}
$sum += $digit;
}
return $sum % 10 == 0;
}
}