mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-06 02:59:29 +00:00
66 lines
2.1 KiB
PHP
66 lines
2.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\EventSubscriber\LogSystem;
|
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
|
use App\Entity\LogSystem\UserLogoutLogEntry;
|
|
use App\Entity\UserSystem\User;
|
|
use App\Services\LogSystem\EventLogger;
|
|
use Symfony\Component\Security\Http\Event\LogoutEvent;
|
|
|
|
/**
|
|
* This handler logs to event log, if a user logs out.
|
|
*/
|
|
final class LogLogoutEventSubscriber implements EventSubscriberInterface
|
|
{
|
|
public function __construct(private readonly EventLogger $logger, private readonly bool $gdpr_compliance)
|
|
{
|
|
}
|
|
|
|
public function logLogout(LogoutEvent $event): void
|
|
{
|
|
$request = $event->getRequest();
|
|
$token = $event->getToken();
|
|
|
|
if (!$token instanceof TokenInterface) {
|
|
return;
|
|
}
|
|
|
|
$log = new UserLogoutLogEntry($request->getClientIp(), $this->gdpr_compliance);
|
|
$user = $token->getUser();
|
|
if ($user instanceof User) {
|
|
$log->setTargetElement($user);
|
|
}
|
|
|
|
$this->logger->logAndFlush($log);
|
|
}
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public static function getSubscribedEvents(): array
|
|
{
|
|
return [LogoutEvent::class => 'logLogout'];
|
|
}
|
|
|
|
}
|