2019-08-20 12:34:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-08-20 12:34:43 +02:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-08-20 12:34:43 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\EntityListeners;
|
|
|
|
|
|
|
|
use App\Entity\Base\DBElement;
|
|
|
|
use App\Entity\Base\StructuralDBElement;
|
|
|
|
use App\Entity\UserSystem\Group;
|
|
|
|
use App\Entity\UserSystem\User;
|
2019-08-20 18:18:11 +02:00
|
|
|
use App\Services\UserCacheKeyGenerator;
|
2019-08-20 12:34:43 +02:00
|
|
|
use Doctrine\ORM\Event\LifecycleEventArgs;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
use Symfony\Contracts\Cache\TagAwareCacheInterface;
|
|
|
|
|
|
|
|
class TreeCacheInvalidationListener
|
|
|
|
{
|
|
|
|
protected $cache;
|
2019-08-20 18:18:11 +02:00
|
|
|
protected $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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ORM\PostUpdate()
|
|
|
|
* @ORM\PostPersist()
|
|
|
|
* @ORM\PostRemove()
|
|
|
|
*/
|
|
|
|
public function invalidate(DBElement $element, LifecycleEventArgs $event)
|
|
|
|
{
|
|
|
|
//If an element was changed, then invalidate all cached trees with this element class
|
|
|
|
if ($element instanceof StructuralDBElement) {
|
2019-11-09 00:47:20 +01:00
|
|
|
$secure_class_name = str_replace('\\', '_', \get_class($element));
|
2019-08-20 12:34:43 +02:00
|
|
|
$this->cache->invalidateTags([$secure_class_name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//If a user change, then invalidate all cached trees for him
|
|
|
|
if ($element instanceof User) {
|
2019-08-20 18:18:11 +02:00
|
|
|
$tag = $this->keyGenerator->generateKey($element);
|
2019-08-20 12:34:43 +02:00
|
|
|
$this->cache->invalidateTags([$tag]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
}
|