2018-10-17 23:26:27 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
|
*
|
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
|
*/
|
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;
|
|
|
|
|
//return ! auth()->user();
|
2018-10-17 23:26:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function rules()
|
|
|
|
|
{
|
2019-10-24 15:46:24 +11:00
|
|
|
$this->sanitize();
|
|
|
|
|
|
2018-10-17 23:26:27 +11:00
|
|
|
return [
|
|
|
|
|
//'email' => 'required|string|email|max:100',
|
2018-10-18 21:47:55 +11:00
|
|
|
'first_name' => 'required|string|max:100',
|
|
|
|
|
'last_name' => 'required|string:max:100',
|
|
|
|
|
'password' => 'required|string|min:6',
|
2019-08-25 20:43:21 +10:00
|
|
|
'email' => 'bail|required|email',
|
2019-06-05 14:06:27 +10:00
|
|
|
'email' => new NewUniqueUserRule(),
|
2018-10-18 21:47:55 +11:00
|
|
|
'privacy_policy' => 'required',
|
|
|
|
|
'terms_of_service' => 'required'
|
2018-10-17 23:26:27 +11:00
|
|
|
];
|
|
|
|
|
}
|
2018-10-19 14:45:55 +11:00
|
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
|
{
|
|
|
|
|
$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
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-17 23:26:27 +11:00
|
|
|
}
|