2019-03-24 15:25:40 +01:00
|
|
|
<?php
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-03-24 15:25:40 +01:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-03-24 15:25:40 +01: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
|
|
|
|
*/
|
|
|
|
|
2020-01-02 22:55:28 +01:00
|
|
|
namespace App\Services\Trees;
|
2019-03-24 15:25:40 +01:00
|
|
|
|
2019-09-13 19:58:38 +02:00
|
|
|
use App\Entity\Attachments\AttachmentType;
|
2019-10-04 18:06:37 +02:00
|
|
|
use App\Entity\Attachments\PartAttachment;
|
2019-09-13 19:58:38 +02:00
|
|
|
use App\Entity\Devices\Device;
|
|
|
|
use App\Entity\Parts\Category;
|
|
|
|
use App\Entity\Parts\Footprint;
|
|
|
|
use App\Entity\Parts\Manufacturer;
|
|
|
|
use App\Entity\Parts\MeasurementUnit;
|
|
|
|
use App\Entity\Parts\Part;
|
|
|
|
use App\Entity\Parts\Storelocation;
|
|
|
|
use App\Entity\Parts\Supplier;
|
|
|
|
use App\Entity\PriceInformations\Currency;
|
|
|
|
use App\Entity\UserSystem\Group;
|
|
|
|
use App\Entity\UserSystem\User;
|
2020-01-02 22:55:28 +01:00
|
|
|
use App\Helpers\Trees\TreeViewNode;
|
|
|
|
use App\Services\UserCacheKeyGenerator;
|
2019-03-26 15:57:51 +01:00
|
|
|
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
2019-08-20 12:52:12 +02:00
|
|
|
use Symfony\Component\Security\Core\Security;
|
|
|
|
use Symfony\Contracts\Cache\ItemInterface;
|
|
|
|
use Symfony\Contracts\Cache\TagAwareCacheInterface;
|
2019-03-26 15:57:51 +01:00
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
2019-03-24 15:25:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This Service generates the tree structure for the tools.
|
2019-10-04 18:06:37 +02:00
|
|
|
* Whenever you change something here, you has to clear the cache, because the results are cached for performance reasons.
|
2019-03-24 15:25:40 +01:00
|
|
|
*/
|
|
|
|
class ToolsTreeBuilder
|
|
|
|
{
|
2019-03-26 15:57:51 +01:00
|
|
|
protected $translator;
|
|
|
|
protected $urlGenerator;
|
2019-08-20 18:18:11 +02:00
|
|
|
protected $keyGenerator;
|
2019-08-20 12:52:12 +02:00
|
|
|
protected $cache;
|
2019-09-13 19:58:38 +02:00
|
|
|
protected $security;
|
2019-03-26 15:57:51 +01:00
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
public function __construct(TranslatorInterface $translator, UrlGeneratorInterface $urlGenerator,
|
2019-09-13 19:58:38 +02:00
|
|
|
TagAwareCacheInterface $treeCache, UserCacheKeyGenerator $keyGenerator,
|
|
|
|
Security $security)
|
2019-03-26 15:57:51 +01:00
|
|
|
{
|
|
|
|
$this->translator = $translator;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
$this->cache = $treeCache;
|
2019-08-20 18:18:11 +02:00
|
|
|
|
|
|
|
$this->keyGenerator = $keyGenerator;
|
2019-09-13 19:58:38 +02:00
|
|
|
|
|
|
|
$this->security = $security;
|
2019-08-20 12:52:12 +02:00
|
|
|
}
|
2019-03-26 15:57:51 +01:00
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates the tree for the tools menu.
|
2019-08-20 12:52:12 +02:00
|
|
|
* The result is cached.
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-10-04 18:06:37 +02:00
|
|
|
* @return TreeViewNode[] The array containing all Nodes for the tools menu.
|
2019-03-24 15:25:40 +01:00
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
public function getTree(): array
|
2019-03-24 15:25:40 +01:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
$key = 'tree_tools_'.$this->keyGenerator->generateKey();
|
2019-08-20 12:52:12 +02:00
|
|
|
|
2019-08-20 18:18:11 +02:00
|
|
|
return $this->cache->get($key, function (ItemInterface $item) {
|
2019-08-20 12:52:12 +02:00
|
|
|
//Invalidate tree, whenever group or the user changes
|
2019-11-09 00:47:20 +01:00
|
|
|
$item->tag(['tree_tools', 'groups', $this->keyGenerator->generateKey()]);
|
2019-08-20 12:52:12 +02:00
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
$tree = [];
|
2019-08-20 12:52:12 +02:00
|
|
|
$tree[] = new TreeViewNode($this->translator->trans('tree.tools.edit'), null, $this->getEditNodes());
|
|
|
|
$tree[] = new TreeViewNode($this->translator->trans('tree.tools.show'), null, $this->getShowNodes());
|
|
|
|
$tree[] = new TreeViewNode($this->translator->trans('tree.tools.system'), null, $this->getSystemNodes());
|
2019-11-09 00:47:20 +01:00
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
return $tree;
|
|
|
|
});
|
|
|
|
}
|
2019-03-24 15:25:40 +01:00
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This functions creates a tree entries for the "edit" node of the tool's tree.
|
|
|
|
*
|
2019-08-20 12:52:12 +02:00
|
|
|
* @return TreeViewNode[]
|
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
protected function getEditNodes(): array
|
2019-08-20 12:52:12 +02:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
$nodes = [];
|
2019-08-12 23:45:21 +02:00
|
|
|
|
2019-09-13 19:58:38 +02:00
|
|
|
if ($this->security->isGranted('read', new AttachmentType())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.attachment_types'),
|
|
|
|
$this->urlGenerator->generate('attachment_type_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Category())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.categories'),
|
|
|
|
$this->urlGenerator->generate('category_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Device())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.devices'),
|
|
|
|
$this->urlGenerator->generate('device_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Supplier())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.suppliers'),
|
|
|
|
$this->urlGenerator->generate('supplier_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Manufacturer())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.manufacturer'),
|
|
|
|
$this->urlGenerator->generate('manufacturer_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Storelocation())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.storelocation'),
|
|
|
|
$this->urlGenerator->generate('store_location_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Footprint())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.footprint'),
|
|
|
|
$this->urlGenerator->generate('footprint_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Currency())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.currency'),
|
|
|
|
$this->urlGenerator->generate('currency_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new MeasurementUnit())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.measurement_unit'),
|
|
|
|
$this->urlGenerator->generate('measurement_unit_new')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('create', new Part())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.edit.part'),
|
|
|
|
$this->urlGenerator->generate('part_new')
|
|
|
|
);
|
|
|
|
}
|
2019-03-24 15:25:40 +01:00
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
return $nodes;
|
|
|
|
}
|
2019-03-24 15:25:40 +01:00
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This function creates the tree entries for the "show" node of the tools tree.
|
|
|
|
*
|
2019-08-20 12:52:12 +02:00
|
|
|
* @return TreeViewNode[]
|
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
protected function getShowNodes(): array
|
2019-08-20 12:52:12 +02:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
$show_nodes = [];
|
2019-10-04 18:06:37 +02:00
|
|
|
$show_nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.show.all_parts'),
|
2019-03-26 15:57:51 +01:00
|
|
|
$this->urlGenerator->generate('parts_show_all')
|
|
|
|
);
|
|
|
|
|
2019-10-04 18:06:37 +02:00
|
|
|
if ($this->security->isGranted('read', new PartAttachment())) {
|
|
|
|
$show_nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.show.all_attachments'),
|
|
|
|
$this->urlGenerator->generate('attachment_list')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-08-20 12:52:12 +02:00
|
|
|
return $show_nodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function creates the tree entries for the "system" node of the tools tree.
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-08-20 12:52:12 +02:00
|
|
|
* @return array
|
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
protected function getSystemNodes(): array
|
2019-08-20 12:52:12 +02:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
$nodes = [];
|
2019-08-20 12:52:12 +02:00
|
|
|
|
2019-09-13 19:58:38 +02:00
|
|
|
if ($this->security->isGranted('read', new User())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.system.users'),
|
2019-11-09 00:47:20 +01:00
|
|
|
$this->urlGenerator->generate('user_new')
|
2019-09-13 19:58:38 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($this->security->isGranted('read', new Group())) {
|
|
|
|
$nodes[] = new TreeViewNode(
|
|
|
|
$this->translator->trans('tree.tools.system.groups'),
|
|
|
|
$this->urlGenerator->generate('group_new')
|
|
|
|
);
|
|
|
|
}
|
2019-09-11 17:30:25 +02:00
|
|
|
|
|
|
|
return $nodes;
|
2019-03-24 15:25:40 +01:00
|
|
|
}
|
|
|
|
}
|