1 <?php
declare(strict_types
=1);
4 * This file is part of the Rapsys UserBundle package.
6 * (c) Raphaël Gertz <symfony@rapsys.eu>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Rapsys\UserBundle\Handler
;
14 use Doctrine\Persistence\ManagerRegistry
;
16 use Psr\Log\LoggerInterface
;
18 use Rapsys\PackBundle\Util\SluggerUtil
;
20 use Rapsys\UserBundle\Exception\UnactivatedException
;
21 use Rapsys\UserBundle\RapsysUserBundle
;
23 use Symfony\Bridge\Twig\Mime\TemplatedEmail
;
24 use Symfony\Component\DependencyInjection\ContainerInterface
;
25 use Symfony\Component\HttpFoundation\RedirectResponse
;
26 use Symfony\Component\HttpFoundation\Request
;
27 use Symfony\Component\HttpFoundation\RequestStack
;
28 use Symfony\Component\HttpFoundation\Response
;
29 use Symfony\Component\HttpFoundation\Session\FlashBagAwareSessionInterface
;
30 use Symfony\Component\HttpKernel\HttpKernelInterface
;
31 use Symfony\Component\Mailer\MailerInterface
;
32 use Symfony\Component\Mime\Address
;
33 use Symfony\Component\Routing\Exception\ResourceNotFoundException
;
34 use Symfony\Component\Routing\Generator\UrlGeneratorInterface
;
35 use Symfony\Component\Routing\RequestContext
;
36 use Symfony\Component\Routing\RouterInterface
;
37 use Symfony\Component\Security\Core\Exception\AuthenticationException
;
38 use Symfony\Component\Security\Core\Exception\BadCredentialsException
;
39 use Symfony\Component\Security\Core\Exception\DisabledException
;
40 use Symfony\Component\Security\Core\Exception\UserNotFoundException
;
41 use Symfony\Component\Security\Http\Authentication\DefaultAuthenticationFailureHandler
;
42 use Symfony\Component\Security\Http\HttpUtils
;
43 use Symfony\Contracts\Translation\TranslatorInterface
;
48 class AuthenticationFailureHandler
extends DefaultAuthenticationFailureHandler
{
52 protected array $config;
53 protected array $defaultOptions = [
54 'failure_path' => null,
55 'failure_forward' => false,
56 'login_path' => '/login',
57 'failure_path_parameter' => '_failure_path',
63 * @xxx Second argument will be replaced by security.firewalls.main.logout.target
64 * @see vendor/symfony/security-bundle/DependencyInjection/SecurityExtension.php +360
66 * @param HttpKernelInterface $httpKernel The http kernel
67 * @param HttpUtils $httpUtils The http utils
68 * @param array $options The options
69 * @param LoggerInterface $logger The logger instance
70 * @param ContainerInterface $container The container instance
71 * @param ManagerRegistry $doctrine The doctrine instance
72 * @param MailerInterface $mailer The mailer instance
73 * @param RouterInterface $router The router instance
74 * @param SluggerUtil $slugger The slugger instance
75 * @param RequestStack $stack The stack instance
76 * @param TranslatorInterface $translator The translator instance
78 public function __construct(protected HttpKernelInterface
$httpKernel, protected HttpUtils
$httpUtils, protected array $options, protected ?LoggerInterface
$logger, protected ContainerInterface
$container, protected ManagerRegistry
$doctrine, protected MailerInterface
$mailer, protected RouterInterface
$router, protected SluggerUtil
$slugger, protected RequestStack
$stack, protected TranslatorInterface
$translator) {
79 //Call parent constructor
80 parent
::__construct($httpKernel, $httpUtils, $options, $logger);
83 $this->config
= $container->getParameter(RapsysUserBundle
::getAlias());
87 * Adds a flash message to the current session for type.
89 * @throws \LogicException
91 protected function addFlash(string $type, mixed $message): void {
93 $session = $this->stack
->getSession();
94 } catch (SessionNotFoundException
$e) {
95 throw new \
LogicException('You cannot use the addFlash method if sessions are disabled. Enable them in "config/packages/framework.yaml".', 0, $e);
98 if (!$session instanceof FlashBagAwareSessionInterface
) {
99 throw new \
LogicException(sprintf('You cannot use the addFlash method because class "%s" doesn\'t implement "%s".', get_debug_type($session), FlashBagAwareSessionInterface
::class));
102 $session->getFlashBag()->add($type, $message);
108 * This is called when an interactive authentication attempt fails
110 public function onAuthenticationFailure(Request
$request, AuthenticationException
$exception): Response
{
111 //With bad credential exception
112 if ($exception instanceof BadCredentialsException
) {
113 //With parent exception
114 if (($parent = $exception->getPrevious()) instanceof UserNotFoundException
) {
115 /** Disabled to prevent user mail + hash retrieval for each unactivated/locked accounts
117 //Get user identifier
118 $mail = $parent->getUserIdentifier();
120 //Set extra parameters
121 $extra = ['mail' => $smail = $this->slugger->short($mail), 'hash' => $this->slugger->hash($smail)];*/
123 //With failure target path option
124 if (!empty($failurePath = $this->options
['failure_path'])) {
126 if ($failurePath[0] == '/') {
127 //Create login path request instance
128 $req = Request
::create($failurePath);
130 //Get login path pathinfo
131 $path = $req->getPathInfo();
134 $path = str_replace($request->getScriptName(), '', $path);
136 //Try with login path path
139 $oldContext = $this->router
->getContext();
141 //Force clean context
142 //XXX: prevent MethodNotAllowedException on GET only routes because our context method is POST
143 //XXX: see vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php +42
144 $this->router
->setContext(new RequestContext());
146 //Retrieve route matching path
147 $route = $this->router
->match($path);
150 $this->router
->setContext($oldContext);
156 if ($name = $route['_route']) {
157 //Remove route and controller from route defaults
158 unset($route['_route'], $route['_controller'], $route['_canonical_route']);
161 $url = $this->router
->generate($name, /*$extra+*/$route);
163 //Return redirect to url response
164 return new RedirectResponse($url, 302);
167 } catch (ResourceNotFoundException
$e) {
168 //Unset default path, name and route
169 unset($failurePath, $name, $route);
173 //Try with login path route
175 //Retrieve route matching path
176 $url = $this->router
->generate($failurePath/*, $extra*/);
178 //Return redirect to url response
179 return new RedirectResponse($url, 302);
180 //Route not found, missing parameter or invalid parameter
181 } catch (RouteNotFoundException
|MissingMandatoryParametersException
|InvalidParameterException
$e) {
182 //Unset default path and url
183 unset($failurePath, $url);
187 //With not enabled user
188 } elseif ($parent instanceof DisabledException
) {
189 //Add error message account is not enabled
190 $this->addFlash('error', $this->translator
->trans('Account not enabled'));
192 //Redirect on the same route with sent=1 to cleanup form
193 return new RedirectResponse($this->router
->generate($request->get('_route'), $request->get('_route_params')), 302);
194 //With not activated user
195 } elseif ($parent instanceof UnactivatedException
) {
197 $user = $parent->getUser();
201 'recipient_mail' => $user->getMail(),
202 'recipient_name' => $user->getRecipientName()
203 ] +
array_replace_recursive(
204 $this->config
['context'],
205 $this->config
['register']['view']['context'],
206 $this->config
['register']['mail']['context']
209 //Generate each route route
210 foreach($this->config
['register']['route'] as $route => $tag) {
211 //Only process defined routes
212 if (!empty($this->config
['route'][$route])) {
213 //Process for confirm url
214 if ($route == 'confirm') {
215 //Set the url in context
216 $context[$tag] = $this->router
->generate(
217 $this->config
['route'][$route]['name'],
218 //Prepend confirm context with tag
220 'mail' => $smail = $this->slugger
->short($context['recipient_mail']),
221 'hash' => $this->slugger
->hash($smail)
222 ]+
$this->config
['route'][$route]['context'],
223 UrlGeneratorInterface
::ABSOLUTE_URL
229 //Iterate on keys to translate
230 foreach($this->config
['translate'] as $translate) {
232 $keys = explode('.', $translate);
235 $current =& $context;
237 //Iterate on each subkey
239 //Skip unset translation keys
240 if (!isset($current[current($keys)])) {
244 //Set current to subkey
245 $current =& $current[current($keys)];
246 } while(next($keys));
249 $current = $this->translator
->trans($current);
256 $context['subject'] = $subject = ucfirst(
257 $this->translator
->trans(
258 $this->config
['register']['mail']['subject'],
259 $this->slugger
->flatten($context, null, '.', '%', '%')
264 $message = (new TemplatedEmail())
266 ->from(new Address($this->config
['contact']['address'], $this->config
['contact']['name']))
268 //XXX: remove the debug set in vendor/symfony/mime/Address.php +46
269 ->to(new Address($context['recipient_mail'], $context['recipient_name']))
271 ->subject($context['subject'])
273 //Set path to twig templates
274 ->htmlTemplate($this->config
['register']['mail']['html'])
275 ->textTemplate($this->config
['register']['mail']['text'])
280 //Try sending message
281 //XXX: mail delivery may silently fail
284 $this->mailer
->send($message);
285 //Catch obvious transport exception
286 } catch(TransportExceptionInterface
$e) {
287 //Add error message mail unreachable
288 $this->addFlash('error', $this->translator
->trans('Unable to reach account'));
292 $this->addFlash('notice', $this->translator
->trans('Your verification mail has been sent, to activate your account follow the confirmation link inside'));
295 $this->addFlash('warning', $this->translator
->trans('If you did not receive a verification mail, check your Spam or Junk mail folder'));
297 //Redirect on the same route with sent=1 to cleanup form
298 return new RedirectResponse($this->router
->generate($request->get('_route'), $request->get('_route_params')), 302);
302 //Call parent function
303 return parent
::onAuthenticationFailure($request, $exception);