2FAuth/app/Rules/IsValidRegex.php

26 lines
587 B
PHP
Raw Normal View History

<?php
namespace App\Rules;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class IsValidRegex implements ValidationRule
{
/**
* Run the validation rule.
*/
public function validate(string $attribute, mixed $value, Closure $fail) : void
{
try {
preg_match('/' . $value . '/', '');
2024-09-26 23:50:01 +02:00
if (preg_last_error() !== PREG_NO_ERROR) {
$fail('validation.IsValidRegex')->translate();
}
2024-09-26 23:50:01 +02:00
} catch (\Throwable $ex) {
$fail('validation.IsValidRegex')->translate();
}
}
}