123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace App\Api\v1\Requests;
- use Illuminate\Support\Arr;
- use Illuminate\Foundation\Http\FormRequest;
- use Illuminate\Support\Facades\Auth;
- class TwoFAccountDynamicRequest extends FormRequest
- {
- /**
- * Determine if the user is authorized to make this request.
- *
- * @return bool
- */
- public function authorize()
- {
- return Auth::check();
- }
-
- /**
- * Get the validation rules that apply to the request.
- *
- * @return array
- */
- public function rules()
- {
- $rules = Arr::has($this->validationData(), 'uri')
- ? (new TwoFAccountUriRequest)->rules()
- : (new TwoFAccountStoreRequest)->rules();
- return $rules;
- }
- /**
- * Prepare the data for validation.
- *
- * @return void
- */
- protected function prepareForValidation()
- {
- $this->merge([
- 'otp_type' => strtolower($this->otp_type),
- 'algorithm' => strtolower($this->algorithm),
- ]);
- }
- }
|