2019-08-20 12:34:43 +02:00
|
|
|
<?php
|
2020-02-22 18:14:36 +01:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
2022-11-29 22:28:53 +01:00
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
2020-02-22 18:14:36 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-20 12:34:43 +02:00
|
|
|
namespace App\EntityListeners;
|
|
|
|
|
2020-02-01 19:48:07 +01:00
|
|
|
use App\Entity\Base\AbstractDBElement;
|
|
|
|
use App\Entity\Base\AbstractStructuralDBElement;
|
2020-04-11 17:34:01 +02:00
|
|
|
use App\Entity\LabelSystem\LabelProfile;
|
2019-08-20 12:34:43 +02:00
|
|
|
use App\Entity\UserSystem\Group;
|
|
|
|
use App\Entity\UserSystem\User;
|
2022-12-18 17:28:42 +01:00
|
|
|
use App\Services\UserSystem\UserCacheKeyGenerator;
|
2019-08-20 12:34:43 +02:00
|
|
|
use Doctrine\ORM\Event\LifecycleEventArgs;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
2020-01-05 22:49:00 +01:00
|
|
|
use function get_class;
|
2019-08-20 12:34:43 +02:00
|
|
|
use Symfony\Contracts\Cache\TagAwareCacheInterface;
|
|
|
|
|
|
|
|
class TreeCacheInvalidationListener
|
|
|
|
{
|
2022-09-18 22:59:31 +02:00
|
|
|
protected TagAwareCacheInterface $cache;
|
|
|
|
protected UserCacheKeyGenerator $keyGenerator;
|
2019-08-20 12:34:43 +02:00
|
|
|
|
2019-08-20 18:18:11 +02:00
|
|
|
public function __construct(TagAwareCacheInterface $treeCache, UserCacheKeyGenerator $keyGenerator)
|
2019-08-20 12:34:43 +02:00
|
|
|
{
|
|
|
|
$this->cache = $treeCache;
|
2019-08-20 18:18:11 +02:00
|
|
|
$this->keyGenerator = $keyGenerator;
|
2019-08-20 12:34:43 +02:00
|
|
|
}
|
|
|
|
|
2023-05-28 01:33:45 +02:00
|
|
|
#[ORM\PostUpdate]
|
|
|
|
#[ORM\PostPersist]
|
|
|
|
#[ORM\PostRemove]
|
2020-02-01 19:48:07 +01:00
|
|
|
public function invalidate(AbstractDBElement $element, LifecycleEventArgs $event): void
|
2019-08-20 12:34:43 +02:00
|
|
|
{
|
|
|
|
//If an element was changed, then invalidate all cached trees with this element class
|
2020-04-11 17:34:01 +02:00
|
|
|
if ($element instanceof AbstractStructuralDBElement || $element instanceof LabelProfile) {
|
2020-01-05 22:49:00 +01:00
|
|
|
$secure_class_name = str_replace('\\', '_', get_class($element));
|
2019-08-20 12:34:43 +02:00
|
|
|
$this->cache->invalidateTags([$secure_class_name]);
|
2022-09-25 02:08:54 +02:00
|
|
|
|
|
|
|
//Trigger a sidebar reload for all users (see SidebarTreeUpdater service)
|
|
|
|
if(!$element instanceof LabelProfile) {
|
|
|
|
$this->cache->invalidateTags(['sidebar_tree_update']);
|
|
|
|
}
|
2019-08-20 12:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//If a user change, then invalidate all cached trees for him
|
|
|
|
if ($element instanceof User) {
|
2020-01-08 20:50:37 +01:00
|
|
|
$secure_class_name = str_replace('\\', '_', get_class($element));
|
2019-08-20 18:18:11 +02:00
|
|
|
$tag = $this->keyGenerator->generateKey($element);
|
2020-01-08 20:50:37 +01:00
|
|
|
$this->cache->invalidateTags([$tag, $secure_class_name]);
|
2019-08-20 12:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If any group change, then invalidate all cached trees. Users Permissions can be inherited from groups,
|
|
|
|
so a change in any group can cause big permisssion changes for users. So to be sure, invalidate all trees */
|
2019-11-09 00:47:20 +01:00
|
|
|
if ($element instanceof Group) {
|
|
|
|
$tag = 'groups';
|
2019-08-20 12:34:43 +02:00
|
|
|
$this->cache->invalidateTags([$tag]);
|
|
|
|
}
|
|
|
|
}
|
2019-11-09 00:47:20 +01:00
|
|
|
}
|