1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types = 1); |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Copyright 2016 SURFnet bv |
7
|
|
|
* |
8
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
9
|
|
|
* you may not use this file except in compliance with the License. |
10
|
|
|
* You may obtain a copy of the License at |
11
|
|
|
* |
12
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
13
|
|
|
* |
14
|
|
|
* Unless required by applicable law or agreed to in writing, software |
15
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
16
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17
|
|
|
* See the License for the specific language governing permissions and |
18
|
|
|
* limitations under the License. |
19
|
|
|
*/ |
|
|
|
|
20
|
|
|
|
21
|
|
|
namespace Surfnet\StepupSelfService\SelfServiceBundle\EventListener; |
22
|
|
|
|
23
|
|
|
use Psr\Log\LoggerInterface; |
24
|
|
|
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\AuthenticatedSessionStateHandler; |
25
|
|
|
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\Session\SessionLifetimeGuard; |
26
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
27
|
|
|
use Symfony\Component\HttpKernel\Event\RequestEvent; |
28
|
|
|
use Symfony\Component\HttpKernel\KernelEvents; |
29
|
|
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; |
30
|
|
|
|
31
|
|
|
class AuthenticatedUserListener implements EventSubscriberInterface |
|
|
|
|
32
|
|
|
{ |
33
|
|
|
public function __construct( |
|
|
|
|
34
|
|
|
private readonly TokenStorageInterface $tokenStorage, |
35
|
|
|
private readonly SessionLifetimeGuard $sessionLifetimeGuard, |
36
|
|
|
private readonly AuthenticatedSessionStateHandler $sessionStateHandler, |
37
|
|
|
private readonly LoggerInterface $logger, |
38
|
|
|
) { |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public static function getSubscribedEvents(): array |
|
|
|
|
42
|
|
|
{ |
43
|
|
|
return [ |
44
|
|
|
// The firewall, which makes the token available, listens at P8 |
45
|
|
|
// We must jump in after the firewall, forcing us to overwrite the translator locale. |
46
|
|
|
KernelEvents::REQUEST => ['updateLastInteractionMoment', 6], |
47
|
|
|
]; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function updateLastInteractionMoment(RequestEvent $event): void |
|
|
|
|
51
|
|
|
{ |
52
|
|
|
$token = $this->tokenStorage->getToken(); |
53
|
|
|
|
54
|
|
|
if ($token === null || !$this->sessionLifetimeGuard->sessionLifetimeWithinLimits($this->sessionStateHandler)) { |
55
|
|
|
return; |
56
|
|
|
} |
57
|
|
|
$this->logger->notice('Logged in user with a session within time limits detected, updating session state'); |
58
|
|
|
|
59
|
|
|
// see ExplicitSessionTimeoutHandler for the rationale |
60
|
|
|
if ($event->getRequest()->getMethod() === 'GET') { |
61
|
|
|
$this->sessionStateHandler->setCurrentRequestUri($event->getRequest()->getRequestUri()); |
62
|
|
|
} |
63
|
|
|
$this->sessionStateHandler->updateLastInteractionMoment(); |
64
|
|
|
} |
65
|
|
|
} |
66
|
|
|
|