First complete upload CasaDoc
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
<?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',
|
||||
];
|
||||
|
||||
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.')
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 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()
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user