30 lines
779 B
PHP
30 lines
779 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Rules;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
/**
|
|
* Validate a date in the format YYYY-MM-DD.
|
|
*/
|
|
class DateYMD implements ValidationRule
|
|
{
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
if (!preg_match('/^\d{4}-\d{2}-\d{2}$/', $value)) {
|
|
$fail('validation.format.date_ymd');
|
|
}
|
|
if (\DateTimeImmutable::createFromFormat("Y-m-d", $value) === false) {
|
|
$fail('validation.format.date_ymd');
|
|
}
|
|
// DateTime accept dates such as 2021-31-55
|
|
$errors = \DateTimeImmutable::getLastErrors();
|
|
if (!empty($errors['warning_count'])) {
|
|
$fail('validation.date_ymdhi');
|
|
}
|
|
}
|
|
}
|