2017-08-27 04:44:53 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2019-01-15 00:05:01 +09:00
|
|
|
use App\User;
|
2017-08-27 04:44:53 +09:00
|
|
|
use Illuminate\Foundation\Auth\RegistersUsers;
|
2020-05-23 20:32:24 +09:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2019-01-15 00:05:01 +09:00
|
|
|
use Illuminate\Support\Facades\Validator;
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
|
|
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 = '/';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a validator for an incoming registration request.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return \Illuminate\Contracts\Validation\Validator
|
|
|
|
*/
|
|
|
|
protected function validator(array $data)
|
|
|
|
{
|
2019-01-14 15:18:41 +09:00
|
|
|
$rules = [
|
2019-11-16 00:25:43 +09:00
|
|
|
'name' => 'required|string|regex:/^[a-zA-Z0-9_-]+$/u|max:15|unique:users|unique:deactivated_users',
|
2017-08-27 04:44:53 +09:00
|
|
|
'email' => 'required|string|email|max:255|unique:users',
|
2019-01-14 15:18:41 +09:00
|
|
|
'password' => 'required|string|min:6|confirmed'
|
|
|
|
];
|
|
|
|
|
|
|
|
// reCAPTCHAのキーが設定されている場合、判定を有効化
|
|
|
|
if (!empty(config('captcha.secret'))) {
|
|
|
|
$rules['g-recaptcha-response'] = 'required|captcha';
|
|
|
|
}
|
|
|
|
|
2019-01-15 00:05:01 +09:00
|
|
|
return Validator::make(
|
|
|
|
$data,
|
|
|
|
$rules,
|
2017-08-27 04:44:53 +09:00
|
|
|
['name.regex' => 'ユーザー名には半角英数字とアンダーバー、ハイフンのみ使用できます。'],
|
|
|
|
['name' => 'ユーザー名']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new user instance after a valid registration.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return \App\User
|
|
|
|
*/
|
|
|
|
protected function create(array $data)
|
|
|
|
{
|
|
|
|
return User::create([
|
|
|
|
'name' => $data['name'],
|
|
|
|
'display_name' => $data['name'],
|
|
|
|
'email' => $data['email'],
|
2020-05-23 20:32:24 +09:00
|
|
|
'password' => Hash::make($data['password']),
|
2017-08-27 04:44:53 +09:00
|
|
|
'is_protected' => $data['is_protected'] ?? false,
|
|
|
|
'accept_analytics' => $data['accept_analytics'] ?? false
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|