123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?php
- namespace App\Http\Controllers\Auth;
- use App\Http\Controllers\Controller;
- use App\User;
- use App\Util\Lexer\RestrictedNames;
- use Illuminate\Foundation\Auth\RegistersUsers;
- use Illuminate\Support\Facades\Hash;
- use Illuminate\Support\Facades\Validator;
- use Illuminate\Auth\Events\Registered;
- use Illuminate\Http\Request;
- 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)
- {
- $this->validateUsername($data['username']);
- $usernameRules = [
- 'required',
- 'min:2',
- 'max:15',
- 'unique:users',
- function ($attribute, $value, $fail) {
- if (!ctype_alpha($value[0])) {
- return $fail($attribute.' is invalid. Username must be alpha-numeric and start with a letter.');
- }
- $val = str_replace(['-', '_'], '', $value);
- if(!ctype_alnum($val)) {
- return $fail($attribute . ' is invalid. Username must be alpha-numeric.');
- }
- },
- ];
- $rules = [
- 'name' => 'required|string|max:'.config('pixelfed.max_name_length'),
- 'username' => $usernameRules,
- 'email' => 'required|string|email|max:255|unique:users',
- 'password' => 'required|string|min:6|confirmed',
- ];
- return Validator::make($data, $rules);
- }
- /**
- * 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'],
- 'username' => $data['username'],
- 'email' => $data['email'],
- 'password' => Hash::make($data['password']),
- ]);
- }
- public function validateUsername($username)
- {
- $restricted = RestrictedNames::get();
- if (in_array($username, $restricted)) {
- return abort(403);
- }
- }
- /**
- * Show the application registration form.
- *
- * @return \Illuminate\Http\Response
- */
- public function showRegistrationForm()
- {
- $count = User::count();
- $limit = config('pixelfed.max_users');
- if($limit && $limit <= $count) {
- $view = 'site.closed-registration';
- } else {
- $view = config('pixelfed.open_registration') == true ? 'auth.register' : 'site.closed-registration';
- }
- return view($view);
- }
- /**
- * Handle a registration request for the application.
- *
- * @param \Illuminate\Http\Request $request
- * @return \Illuminate\Http\Response
- */
- public function register(Request $request)
- {
- $count = User::count();
- $limit = config('pixelfed.max_users');
- if(false == config('pixelfed.open_registration') || $limit && $limit <= $count) {
- return abort(403);
- }
- $this->validator($request->all())->validate();
- event(new Registered($user = $this->create($request->all())));
- $this->guard()->login($user);
- return $this->registered($request, $user)
- ?: redirect($this->redirectPath());
- }
- }
|