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

66 lines
1.7 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;
2022-04-30 11:55:39 +10:00
use App\Http\ValidationRules\Account\BlackListRule;
use App\Http\ValidationRules\Account\EmailBlackListRule;
2019-06-05 14:06:27 +10:00
use App\Http\ValidationRules\NewUniqueUserRule;
2022-04-30 11:55:39 +10:00
use App\Utils\Ninja;
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()
{
2022-04-30 11:55:39 +10:00
if(Ninja::isHosted())
2022-05-03 14:43:46 +10:00
$email_rules = ['bail','required', 'email:rfc,dns', new NewUniqueUserRule, new BlackListRule, new EmailBlackListRule];
2022-04-30 11:55:39 +10:00
else
2022-05-03 14:43:46 +10:00
$email_rules = ['bail','required', 'email:rfc,dns', new NewUniqueUserRule];
2022-04-30 11:55:39 +10:00
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',
2022-04-30 11:55:39 +10:00
'email' => $email_rules,
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);
}
}