mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 00:33:18 +01:00
39 lines
1008 B
PHP
39 lines
1008 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class TwoFAccountStoreRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'service' => 'nullable|string|regex:/^[^:]+$/i',
|
|
'account' => 'required|string|regex:/^[^:]+$/i',
|
|
'icon' => 'nullable|string',
|
|
'otp_type' => 'required|string|in:totp,hotp',
|
|
'secret' => ['string', 'bail', new \App\Rules\IsBase32Encoded],
|
|
'digits' => 'nullable|integer|between:6,10',
|
|
'algorithm' => 'nullable|string|in:sha1,sha256,sha512,md5',
|
|
'period' => 'nullable|integer|min:1',
|
|
'counter' => 'nullable|integer|min:0',
|
|
];
|
|
}
|
|
}
|