pixelfed/app/Http/Controllers/Auth/RegisterController.php

116 wiersze
3.0 KiB
PHP
Czysty Zwykły widok Historia

2018-04-15 23:56:48 +00:00
<?php
namespace App\Http\Controllers\Auth;
2018-08-28 03:07:36 +00:00
use App\Http\Controllers\Controller;
2018-04-15 23:56:48 +00:00
use App\User;
use App\Util\Lexer\RestrictedNames;
2018-08-28 03:07:36 +00:00
use Illuminate\Foundation\Auth\RegistersUsers;
2018-04-15 23:56:48 +00:00
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
class RegisterController extends Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/
use RegistersUsers;
/**
* Where to redirect users after registration.
*
* @var string
*/
protected $redirectTo = '/home';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
$this->openRegistrationCheck();
2018-04-15 23:56:48 +00:00
}
/**
* Get a validator for an incoming registration request.
*
2018-08-28 03:07:36 +00:00
* @param array $data
*
2018-04-15 23:56:48 +00:00
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function validator(array $data)
{
$this->validateUsername($data['username']);
2018-08-21 00:34:26 +00:00
$usernameRules = [
'required',
'alpha_dash',
'min:2',
'max:15',
'unique:users',
2018-08-28 03:07:36 +00:00
function ($attribute, $value, $fail) {
if (!ctype_alpha($value[0])) {
return $fail($attribute.' is invalid. Username must be alpha-numeric and start with a letter.');
2018-08-21 00:34:26 +00:00
}
2018-08-28 03:07:36 +00:00
},
];
2018-06-01 17:58:43 +00:00
$rules = [
2018-08-28 03:07:36 +00:00
'name' => 'required|string|max:'.config('pixelfed.max_name_length'),
2018-08-21 00:34:26 +00:00
'username' => $usernameRules,
2018-08-28 03:07:36 +00:00
'email' => 'required|string|email|max:255|unique:users',
2018-04-15 23:56:48 +00:00
'password' => 'required|string|min:6|confirmed',
2018-06-01 17:58:43 +00:00
];
2018-08-28 03:07:36 +00:00
if (config('pixelfed.recaptcha')) {
2018-06-01 17:58:43 +00:00
$rules['g-recaptcha-response'] = 'required|recaptcha';
}
return Validator::make($data, $rules);
2018-04-15 23:56:48 +00:00
}
/**
* Create a new user instance after a valid registration.
*
2018-08-28 03:07:36 +00:00
* @param array $data
*
2018-04-15 23:56:48 +00:00
* @return \App\User
*/
protected function create(array $data)
{
return User::create([
2018-08-28 03:07:36 +00:00
'name' => $data['name'],
2018-04-16 00:23:02 +00:00
'username' => $data['username'],
2018-08-28 03:07:36 +00:00
'email' => $data['email'],
2018-04-15 23:56:48 +00:00
'password' => Hash::make($data['password']),
]);
}
public function validateUsername($username)
{
$restricted = RestrictedNames::get();
2018-08-28 03:07:36 +00:00
if (in_array($username, $restricted)) {
return abort(403);
}
}
public function openRegistrationCheck()
{
$openRegistration = config('pixelfed.open_registration');
2018-08-28 03:07:36 +00:00
if (false == $openRegistration) {
abort(403);
}
}
2018-04-15 23:56:48 +00:00
}