71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Vanguard\Http\Requests\Auth;
|
|
|
|
use Vanguard\Http\Requests\Request;
|
|
use Vanguard\Support\Enum\UserStatus;
|
|
|
|
class RegisterRequest extends Request
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
$rules = [
|
|
'email' => 'required|email|unique:users,email',
|
|
'username' => 'required|unique:users,username',
|
|
'password' => [
|
|
'required',
|
|
'confirmed',
|
|
'min:8',
|
|
'regex:/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/'
|
|
],
|
|
];
|
|
|
|
if (setting('registration.captcha.enabled')) {
|
|
$rules['g-recaptcha-response'] = 'required|captcha';
|
|
}
|
|
|
|
if (setting('tos')) {
|
|
$rules['tos'] = 'accepted';
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
/**
|
|
* Get custom messages for validator errors.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function messages()
|
|
{
|
|
return [
|
|
'tos.accepted' => __('You have to accept Terms of Service.'),
|
|
'password.regex' => __('The password must be at least 8 characters long and contain at least one number and one special character (@$!%*?&).')
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the valid request data.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function validFormData()
|
|
{
|
|
// Determine user status. User's status will be set to UNCONFIRMED
|
|
// if he has to confirm his email or to ACTIVE if email confirmation is not required
|
|
$status = setting('reg_email_confirmation')
|
|
? UserStatus::UNCONFIRMED
|
|
: UserStatus::ACTIVE;
|
|
|
|
return array_merge($this->only('email', 'username', 'password'), [
|
|
'status' => $status,
|
|
'email_verified_at' => setting('reg_email_confirmation') ? null : now()
|
|
]);
|
|
}
|
|
}
|