1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/Http/Requests/Account/CreateAccountRequest.php

69 lines
2.0 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2018-10-24 05:50:15 +02:00
namespace App\Http\Requests\Account;
2018-10-24 05:50:15 +02:00
use App\Http\Requests\Request;
2022-04-30 03:55:39 +02:00
use App\Http\ValidationRules\Account\BlackListRule;
use App\Http\ValidationRules\Account\EmailBlackListRule;
2019-06-05 06:06:27 +02:00
use App\Http\ValidationRules\NewUniqueUserRule;
2022-04-30 03:55:39 +02:00
use App\Utils\Ninja;
2018-10-24 05:50:15 +02: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()
{
if (Ninja::isHosted()) {
2024-01-14 05:05:00 +01:00
$email_rules = ['bail', 'required', 'email:rfc,dns', new NewUniqueUserRule(), new BlackListRule(), new EmailBlackListRule()];
} else {
2024-01-14 05:05:00 +01:00
$email_rules = ['bail', 'required', 'email:rfc,dns', new NewUniqueUserRule()];
}
2022-04-30 03:55:39 +02:00
return [
'first_name' => 'string|max:100',
'last_name' => 'string:max:100',
2023-11-18 11:21:59 +01:00
'password' => 'required|string|min:6|max:100',
2022-04-30 03:55:39 +02:00
'email' => $email_rules,
2021-05-22 23:50:34 +02:00
'privacy_policy' => 'required|boolean',
'terms_of_service' => 'required|boolean',
2023-11-15 07:49:01 +01:00
'utm_source' => 'sometimes|nullable|string',
'utm_medium' => 'sometimes|nullable|string',
'utm_campaign' => 'sometimes|nullable|string',
'utm_term' => 'sometimes|nullable|string',
'utm_content' => 'sometimes|nullable|string',
];
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
2021-07-17 07:58:37 +02:00
{
$input = $this->all();
$input['user_agent'] = request()->server('HTTP_USER_AGENT');
$this->replace($input);
}
}