invoiceninja/app/Http/Requests/Account/CreateAccountRequest.php

58 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
2018-10-24 14:50:15 +11:00
namespace App\Http\Requests\Account;
2018-10-24 14:50:15 +11:00
use App\Http\Requests\Request;
2019-06-05 14:06:27 +10:00
use App\Http\ValidationRules\NewUniqueUserRule;
2018-10-24 14:50:15 +11:00
class CreateAccountRequest extends Request
{
/**
* 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 [
'first_name' => 'string|max:100',
'last_name' => 'string:max:100',
2022-04-21 07:25:00 +10:00
'password' => 'required|string|min:6|max:1000',
2021-11-17 20:54:20 +11:00
// 'email' => 'bail|required|email:rfc,dns',
// 'email' => new NewUniqueUserRule(),
'email' => ['required', 'email:rfc,dns', new NewUniqueUserRule],
2021-05-23 07:50:34 +10:00
'privacy_policy' => 'required|boolean',
'terms_of_service' => 'required|boolean',
];
}
protected function prepareForValidation()
2021-07-17 15:58:37 +10:00
{
$input = $this->all();
$input['user_agent'] = request()->server('HTTP_USER_AGENT');
$this->replace($input);
}
}