2018-10-17 14:26:27 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
|
2018-10-24 05:50:15 +02:00
|
|
|
namespace App\Http\Requests\Account;
|
2018-10-17 14:26:27 +02:00
|
|
|
|
2018-10-24 05:50:15 +02:00
|
|
|
use App\Http\Requests\Request;
|
2019-06-05 06:06:27 +02:00
|
|
|
use App\Http\ValidationRules\NewUniqueUserRule;
|
2018-10-17 14:26:27 +02:00
|
|
|
|
2018-10-24 05:50:15 +02:00
|
|
|
class CreateAccountRequest extends Request
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return true;
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//'email' => 'required|string|email|max:100',
|
2020-05-26 14:37:15 +02:00
|
|
|
'first_name' => 'string|max:100',
|
|
|
|
'last_name' => 'string:max:100',
|
2018-10-18 12:47:55 +02:00
|
|
|
'password' => 'required|string|min:6',
|
2020-10-12 23:27:42 +02:00
|
|
|
'email' => 'bail|required|email:rfc,dns',
|
2019-06-05 06:06:27 +02:00
|
|
|
'email' => new NewUniqueUserRule(),
|
2018-10-18 12:47:55 +02:00
|
|
|
'privacy_policy' => 'required',
|
2020-09-06 11:38:10 +02:00
|
|
|
'terms_of_service' => 'required',
|
2018-10-17 14:26:27 +02:00
|
|
|
];
|
|
|
|
}
|
2018-10-19 05:45:55 +02:00
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2018-10-19 05:45:55 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2019-10-24 06:46:24 +02:00
|
|
|
$input['user_agent'] = request()->server('HTTP_USER_AGENT');
|
|
|
|
|
|
|
|
$this->replace($input);
|
2018-10-19 05:45:55 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|