123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?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;
- use App\Services\EmailService;
- 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)
- {
- if(config('database.default') == 'pgsql') {
- $data['username'] = strtolower($data['username']);
- $data['email'] = strtolower($data['email']);
- }
- $usernameRules = [
- 'required',
- 'min:2',
- 'max:15',
- 'unique:users',
- function ($attribute, $value, $fail) {
- $dash = substr_count($value, '-');
- $underscore = substr_count($value, '_');
- $period = substr_count($value, '.');
- if(ends_with($value, ['.php', '.js', '.css'])) {
- return $fail('Username is invalid.');
- }
- if(($dash + $underscore + $period) > 1) {
- return $fail('Username is invalid. Can only contain one dash (-), period (.) or underscore (_).');
- }
- if (!ctype_alpha($value[0])) {
- return $fail('Username is invalid. Must start with a letter or number.');
- }
- if (!ctype_alnum($value[strlen($value) - 1])) {
- return $fail('Username is invalid. Must end with a letter or number.');
- }
- $val = str_replace(['_', '.', '-'], '', $value);
- if(!ctype_alnum($val)) {
- return $fail('Username is invalid. Username must be alpha-numeric and may contain dashes (-), periods (.) and underscores (_).');
- }
- $restricted = RestrictedNames::get();
- if (in_array(strtolower($value), array_map('strtolower', $restricted))) {
- return $fail('Username cannot be used.');
- }
- },
- ];
- $emailRules = [
- 'required',
- 'string',
- 'email',
- 'max:255',
- 'unique:users',
- function ($attribute, $value, $fail) {
- $banned = EmailService::isBanned($value);
- if($banned) {
- return $fail('Email is invalid.');
- }
- },
- ];
- $rules = [
- 'agecheck' => 'required|accepted',
- 'name' => 'nullable|string|max:'.config('pixelfed.max_name_length'),
- 'username' => $usernameRules,
- 'email' => $emailRules,
- 'password' => 'required|string|min:'.config('pixelfed.min_password_length').'|confirmed',
- ];
- if(config('captcha.enabled')) {
- $rules['h-captcha-response'] = 'required|captcha';
- }
- 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)
- {
- if(config('database.default') == 'pgsql') {
- $data['username'] = strtolower($data['username']);
- $data['email'] = strtolower($data['email']);
- }
- return User::create([
- 'name' => $data['name'],
- 'username' => $data['username'],
- 'email' => $data['email'],
- 'password' => Hash::make($data['password']),
- ]);
- }
- /**
- * Show the application registration form.
- *
- * @return \Illuminate\Http\Response
- */
- public function showRegistrationForm()
- {
- if(config('pixelfed.open_registration')) {
- $limit = config('pixelfed.max_users');
- if($limit) {
- abort_if($limit <= User::count(), 404);
- return view('auth.register');
- } else {
- return view('auth.register');
- }
- } else {
- abort(404);
- }
- }
- /**
- * Handle a registration request for the application.
- *
- * @param \Illuminate\Http\Request $request
- * @return \Illuminate\Http\Response
- */
- public function register(Request $request)
- {
- abort_if(config('pixelfed.open_registration') == false, 400);
- $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());
- }
- }
|