mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-05 08:05:47 +00:00
33 lines
974 B
PHP
33 lines
974 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Support\Facades\Crypt;
|
|
use Illuminate\Validation\Concerns\ValidatesAttributes;
|
|
|
|
class DateEncrypted 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->validateDate($attributeName, $decrypted) && !is_null($decrypted)) {
|
|
$fail(trans('validation.date', ['attribute' => $attributeName]));
|
|
}
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
$fail(trans('general.something_went_wrong'));
|
|
}
|
|
}
|
|
}
|