getUser()) { return $this->redirectToRoute('main_all'); } // get the login error if there is one $error = $authenticationUtils->getLastAuthenticationError(); // last username entered by the user $last_login_id = $authenticationUtils->getLastUsername(); return [ '_template' => 'security/login.html.twig', 'last_login_id' => $last_login_id, 'error' => $error, 'notes_fn' => fn () => Note::getAllNotes(VisibilityScope::$instance_scope), ]; } /** * @codeCoverageIgnore */ public function logout() { throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.'); } /** * * Register a user, making sure the nickname is not reserved and * possibly sending a confirmation email * * @param Request $request * @param GuardAuthenticatorHandler $guard_handler * @param Authenticator $authenticator * * @throws EmailTakenException * @throws NicknameTakenException * @throws ServerException * @throws DuplicateFoundException * @throws NicknameEmptyException * @throws NicknameReservedException * @throws NicknameTooLongException * @throws NicknameTooShortException * @throws NotImplementedException * * @return null|array|Response */ public function register(Request $request, GuardAuthenticatorHandler $guard_handler, Authenticator $authenticator) { $form = Form::create([ ['nickname', TextType::class, [ 'label' => _m('Nickname'), 'help' => _m('Your desired nickname (e.g., j0hnD03)'), 'constraints' => [ new NotBlank(['message' => _m('Please enter a nickname')]), new Length([ 'min' => Common::config('nickname', 'min_length'), 'minMessage' => _m(['Your nickname must be at least # characters long'], ['count' => Common::config('nickname', 'min_length')]), 'max' => Nickname::MAX_LEN, 'maxMessage' => _m(['Your nickname must be at most # characters long'], ['count' => Nickname::MAX_LEN]), ]), ], 'block_name' => 'nickname', 'label_attr' => ['class' => 'section-form-label'], 'invalid_message' => _m('Nickname not valid. Please provide a valid nickname.'), ]], ['email', EmailType::class, [ 'label' => _m('Email'), 'help' => _m('Desired email for this account (e.g., john@provider.com)'), 'constraints' => [ new NotBlank(['message' => _m('Please enter an email') ])], 'block_name' => 'email', 'label_attr' => ['class' => 'section-form-label'], 'invalid_message' => _m('Email not valid. Please provide a valid email.'), ]], FormFields::repeated_password(), ['register', SubmitType::class, ['label' => _m('Register')]], ], form_options: ['block_prefix' => 'register']); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $data = $form->getData(); $data['password'] = $form->get('password')->getData(); // This will throw the appropriate errors, result ignored $user = LocalUser::findByNicknameOrEmail($data['nickname'], $data['email']); if ($user !== null) { // If we do find something, there's a duplicate if ($user->getNickname() === $data['nickname']) { // Register page feedback on nickname already in use $this->addFlash('verify_nickname_error', _m('Nickname is already in use on this server.')); throw new NicknameTakenException; } else { // Register page feedback on email already in use $this->addFlash('verify_email_error', _m('Email is already taken.')); throw new EmailTakenException; } } $valid_nickname = Nickname::validate($data['nickname'], check_already_used: false); try { // This already checks if the nickname is being used $actor = Actor::create(['nickname' => $valid_nickname]); $user = LocalUser::create([ 'nickname' => $valid_nickname, 'outgoing_email' => $data['email'], 'incoming_email' => $data['email'], 'password' => LocalUser::hashPassword($data['password']), ]); DB::persistWithSameId( $actor, $user, // Self follow fn (int $id) => DB::persist(Follow::create(['follower' => $id, 'followed' => $id])) ); DB::flush(); // @codeCoverageIgnoreStart } catch (UniqueConstraintViolationException $e) { // _something_ was duplicated, but since we already check if nickname is in use, we can't tell what went wrong $e = 'An error occurred while trying to register'; Log::critical($e . " with nickname: '{$valid_nickname}' and email '{$data['email']}'"); throw new ServerException(_m($e)); } // @codeCoverageIgnoreEnd // generate a signed url and email it to the user if ($_ENV['APP_ENV'] !== 'dev' && Common::config('site', 'use_email')) { // @codeCoverageIgnoreStart EmailVerifier::sendEmailConfirmation($user); // @codeCoverageIgnoreEnd } else { $user->setIsEmailVerified(true); } return $guard_handler->authenticateUserAndHandleSuccess( $user, $request, $authenticator, 'main' // firewall name in security.yaml ); } return [ '_template' => 'security/register.html.twig', 'registration_form' => $form->createView(), 'notes_fn' => fn () => Note::getAllNotes(VisibilityScope::$instance_scope), ]; } }