mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02:00
191 lines
7.1 KiB
PHP
191 lines
7.1 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Entity\UserSystem\User;
|
|
use App\Events\SecurityEvent;
|
|
use App\Events\SecurityEvents;
|
|
use App\Services\UserSystem\PasswordResetManager;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Gregwar\CaptchaBundle\Type\CaptchaType;
|
|
use RuntimeException;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
|
|
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
|
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
|
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
|
|
use Symfony\Component\Validator\Constraints\Length;
|
|
use Symfony\Component\Validator\Constraints\NotBlank;
|
|
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
|
|
class SecurityController extends AbstractController
|
|
{
|
|
public function __construct(protected TranslatorInterface $translator, protected bool $allow_email_pw_reset)
|
|
{
|
|
}
|
|
|
|
#[Route(path: '/login', name: 'login', methods: ['GET', 'POST'])]
|
|
public function login(AuthenticationUtils $authenticationUtils): Response
|
|
{
|
|
// get the login error if there is one
|
|
$error = $authenticationUtils->getLastAuthenticationError();
|
|
|
|
// last username entered by the user
|
|
$lastUsername = $authenticationUtils->getLastUsername();
|
|
|
|
return $this->render('security/login.html.twig', [
|
|
'last_username' => $lastUsername,
|
|
'error' => $error,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @return RedirectResponse|Response
|
|
*/
|
|
#[Route(path: '/pw_reset/request', name: 'pw_reset_request')]
|
|
public function requestPwReset(PasswordResetManager $passwordReset, Request $request): RedirectResponse|Response
|
|
{
|
|
if (!$this->allow_email_pw_reset) {
|
|
throw new AccessDeniedHttpException('The password reset via email is disabled!');
|
|
}
|
|
|
|
if ($this->isGranted('IS_AUTHENTICATED_REMEMBERED')) {
|
|
throw new AccessDeniedHttpException('You are already logged in, so you can not reset your password!');
|
|
}
|
|
|
|
$builder = $this->createFormBuilder();
|
|
$builder->add('user', TextType::class, [
|
|
'label' => $this->translator->trans('pw_reset.user_or_email'),
|
|
'constraints' => [new NotBlank()],
|
|
]);
|
|
$builder->add('captcha', CaptchaType::class, [
|
|
'width' => 200,
|
|
'height' => 50,
|
|
'length' => 6,
|
|
]);
|
|
$builder->add('submit', SubmitType::class, [
|
|
'label' => 'pw_reset.submit',
|
|
]);
|
|
|
|
$form = $builder->getForm();
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$passwordReset->request($form->getData()['user']);
|
|
$this->addFlash('success', 'pw_reset.request.success');
|
|
|
|
return $this->redirectToRoute('login');
|
|
}
|
|
|
|
return $this->render('security/pw_reset_request.html.twig', [
|
|
'form' => $form,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @return RedirectResponse|Response
|
|
*/
|
|
#[Route(path: '/pw_reset/new_pw/{user}/{token}', name: 'pw_reset_new_pw')]
|
|
public function pwResetNewPw(PasswordResetManager $passwordReset, Request $request, EntityManagerInterface $em, EventDispatcherInterface $eventDispatcher, ?string $user = null, ?string $token = null): RedirectResponse|Response
|
|
{
|
|
if (!$this->allow_email_pw_reset) {
|
|
throw new AccessDeniedHttpException('The password reset via email is disabled!');
|
|
}
|
|
|
|
if ($this->isGranted('IS_AUTHENTICATED_REMEMBERED')) {
|
|
throw new AccessDeniedHttpException('You are already logged in, so you can not reset your password!');
|
|
}
|
|
|
|
$data = [
|
|
'username' => $user,
|
|
'token' => $token,
|
|
];
|
|
$builder = $this->createFormBuilder($data);
|
|
$builder->add('username', TextType::class, [
|
|
'label' => $this->translator->trans('pw_reset.username'),
|
|
'disabled' => true,
|
|
]);
|
|
$builder->add('token', TextType::class, [
|
|
'label' => $this->translator->trans('pw_reset.token'),
|
|
'disabled' => true,
|
|
]);
|
|
$builder->add('new_password', RepeatedType::class, [
|
|
'type' => PasswordType::class,
|
|
'first_options' => [
|
|
'label' => 'user.settings.pw_new.label',
|
|
],
|
|
'second_options' => [
|
|
'label' => 'user.settings.pw_confirm.label',
|
|
],
|
|
'invalid_message' => 'password_must_match',
|
|
'constraints' => [new Length([
|
|
'min' => 6,
|
|
'max' => 128,
|
|
])],
|
|
]);
|
|
|
|
$builder->add('submit', SubmitType::class, [
|
|
'label' => 'pw_reset.submit',
|
|
]);
|
|
|
|
$form = $builder->getForm();
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$data = $form->getData();
|
|
//Try to set the new password
|
|
$success = $passwordReset->setNewPassword($data['username'], $data['token'], $data['new_password']);
|
|
if (!$success) {
|
|
$this->addFlash('error', 'pw_reset.new_pw.error');
|
|
} else {
|
|
$this->addFlash('success', 'pw_reset.new_pw.success');
|
|
|
|
$repo = $em->getRepository(User::class);
|
|
$u = $repo->findOneBy(['name' => $data['username']]);
|
|
$event = new SecurityEvent($u);
|
|
/** @var EventDispatcher $eventDispatcher */
|
|
$eventDispatcher->dispatch($event, SecurityEvents::PASSWORD_RESET);
|
|
|
|
return $this->redirectToRoute('login');
|
|
}
|
|
}
|
|
|
|
return $this->render('security/pw_reset_new_pw.html.twig', [
|
|
'form' => $form,
|
|
]);
|
|
}
|
|
|
|
#[Route(path: '/logout', name: 'logout')]
|
|
public function logout(): never
|
|
{
|
|
throw new RuntimeException('Will be intercepted before getting here');
|
|
}
|
|
}
|