mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 09:44:04 +01:00
24 lines
564 B
PHP
24 lines
564 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use App\Helpers\Helpers;
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use ParagonIE\ConstantTime\Base32;
|
|
|
|
class IsBase32Encoded implements ValidationRule
|
|
{
|
|
/**
|
|
* Run the validation rule.
|
|
*/
|
|
public function validate(string $attribute, mixed $value, Closure $fail) : void
|
|
{
|
|
try {
|
|
$secret = Base32::decodeUpper(Helpers::PadToBase32Format($value));
|
|
} catch (\Exception $e) {
|
|
$fail('validation.custom.secret.isBase32Encoded')->translate();
|
|
}
|
|
}
|
|
}
|