mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-05 07:45:39 +00:00
32 lines
985 B
PHP
32 lines
985 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Support\Facades\Crypt;
|
|
use Illuminate\Validation\Concerns\ValidatesAttributes;
|
|
|
|
class AlphaEncrypted implements ValidationRule
|
|
{
|
|
use ValidatesAttributes;
|
|
/**
|
|
* Run the validation rule.
|
|
*
|
|
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
|
|
*/
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
try {
|
|
$attributeName = trim(preg_replace('/_+|snipeit|\d+/', ' ', $attribute));
|
|
$decrypted = Crypt::decrypt($value);
|
|
if (!$this->validateAlpha($attributeName, $decrypted, 'ascii') && !is_null($decrypted)) {
|
|
$fail(trans('validation.alpha', ['attribute' => $attributeName]));
|
|
}
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
$fail(trans('general.something_went_wrong'));
|
|
}
|
|
}
|
|
}
|