| Total Complexity | 7 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class EmailVerificationRequest extends FormRequest |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Determine if the user is authorized to make this request. |
||
| 16 | * |
||
| 17 | * @return bool |
||
| 18 | */ |
||
| 19 | public function authorize() |
||
| 20 | { |
||
| 21 | if (!hash_equals((string) $this->user('{{singularSlug}}')->getKey(), (string) $this->route('id'))) { |
||
| 22 | return false; |
||
| 23 | } |
||
| 24 | |||
| 25 | if (!hash_equals(sha1($this->user('{{singularSlug}}')->getEmailForVerification()), (string) $this->route('hash'))) { |
||
| 26 | return false; |
||
| 27 | } |
||
| 28 | |||
| 29 | return true; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the validation rules that apply to the request. |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function rules() |
||
| 38 | { |
||
| 39 | return [ |
||
| 40 | // |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Fulfill the email verification request. |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function fulfill() |
||
| 50 | { |
||
| 51 | if (!$this->user('{{singularSlug}}')->hasVerifiedEmail()) { |
||
| 52 | $this->user('{{singularSlug}}')->markEmailAsVerified(); |
||
| 53 | |||
| 54 | event(new Verified($this->user('{{singularSlug}}'))); |
||
| 55 | } |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Configure the validator instance. |
||
| 60 | * |
||
| 61 | * @return void |
||
| 62 | */ |
||
| 63 | public function withValidator(Validator $validator) |
||
| 64 | { |
||
| 65 | return $validator; |
||
| 66 | } |
||
| 68 |