2018-10-17 23:26:27 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2021-01-04 08:54:54 +11:00
|
|
|
* @copyright Copyright (c) 2021. 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-17 23:26:27 +11:00
|
|
|
|
2018-10-24 14:50:15 +11:00
|
|
|
namespace App\Http\Requests\Account;
|
2018-10-17 23:26:27 +11:00
|
|
|
|
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-17 23:26:27 +11:00
|
|
|
|
2018-10-24 14:50:15 +11:00
|
|
|
class CreateAccountRequest extends Request
|
2018-10-17 23:26:27 +11:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize()
|
|
|
|
|
{
|
2019-11-25 20:38:55 +11:00
|
|
|
return true;
|
2018-10-17 23:26:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function rules()
|
|
|
|
|
{
|
|
|
|
|
return [
|
2020-05-26 22:37:15 +10:00
|
|
|
'first_name' => 'string|max:100',
|
|
|
|
|
'last_name' => 'string:max:100',
|
2018-10-18 21:47:55 +11:00
|
|
|
'password' => 'required|string|min:6',
|
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',
|
2018-10-17 23:26:27 +11:00
|
|
|
];
|
|
|
|
|
}
|
2018-10-19 14:45:55 +11:00
|
|
|
|
2019-12-20 22:23:09 +11:00
|
|
|
protected function prepareForValidation()
|
2021-07-17 15:58:37 +10:00
|
|
|
{
|
|
|
|
|
|
2018-10-19 14:45:55 +11:00
|
|
|
$input = $this->all();
|
|
|
|
|
|
2019-10-24 15:46:24 +11:00
|
|
|
$input['user_agent'] = request()->server('HTTP_USER_AGENT');
|
|
|
|
|
|
|
|
|
|
$this->replace($input);
|
2018-10-19 14:45:55 +11:00
|
|
|
}
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|