2019-03-05 23:52:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* part-db version 0.1
|
|
|
|
* Copyright (C) 2005 Christoph Lechner
|
2019-03-20 23:16:07 +01:00
|
|
|
* http://www.cl-projects.de/.
|
2019-03-05 23:52:45 +01:00
|
|
|
*
|
|
|
|
* part-db version 0.2+
|
|
|
|
* Copyright (C) 2009 K. Jacobs and others (see authors.php)
|
|
|
|
* http://code.google.com/p/part-db/
|
|
|
|
*
|
|
|
|
* Part-DB Version 0.4+
|
|
|
|
* Copyright (C) 2016 - 2019 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 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\Services;
|
|
|
|
|
2019-08-10 18:06:28 +02:00
|
|
|
use App\Entity\Attachment;
|
2019-04-05 17:49:02 +02:00
|
|
|
use App\Entity\AttachmentType;
|
2019-03-24 15:25:40 +01:00
|
|
|
use App\Entity\Category;
|
2019-04-26 18:31:09 +02:00
|
|
|
use App\Entity\Device;
|
2019-04-28 13:08:06 +02:00
|
|
|
use App\Entity\Footprint;
|
2019-04-26 19:12:48 +02:00
|
|
|
use App\Entity\Manufacturer;
|
2019-03-05 23:52:45 +01:00
|
|
|
use App\Entity\NamedDBElement;
|
|
|
|
use App\Entity\Part;
|
2019-04-28 12:50:35 +02:00
|
|
|
use App\Entity\Storelocation;
|
2019-04-26 19:12:48 +02:00
|
|
|
use App\Entity\Supplier;
|
2019-04-28 14:18:11 +02:00
|
|
|
use App\Entity\User;
|
2019-03-05 23:52:45 +01:00
|
|
|
use App\Exceptions\EntityNotSupported;
|
2019-04-28 12:50:35 +02:00
|
|
|
use Symfony\Component\HttpKernel\HttpCache\Store;
|
2019-03-05 23:52:45 +01:00
|
|
|
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
|
|
|
|
|
|
|
class EntityURLGenerator
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var UrlGeneratorInterface
|
|
|
|
*/
|
|
|
|
protected $urlGenerator;
|
|
|
|
|
|
|
|
public function __construct(UrlGeneratorInterface $urlGenerator)
|
|
|
|
{
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to the page using the given page type and element.
|
|
|
|
* For the given types, the [type]URL() functions are called (e.g. infoURL()).
|
|
|
|
* Not all entity class and $type combinations are supported.
|
|
|
|
*
|
|
|
|
* @param $entity mixed The element for which the page should be generated.
|
|
|
|
* @param string $type The page type. Currently supported: 'info', 'edit', 'create', 'clone', 'list'/'list_parts'
|
|
|
|
* @return string The link to the desired page.
|
|
|
|
* @throws EntityNotSupported Thrown if the entity is not supported for the given type.
|
|
|
|
* @throws \InvalidArgumentException Thrown if the givent type is not existing.
|
|
|
|
*/
|
|
|
|
public function getURL($entity, string $type)
|
|
|
|
{
|
|
|
|
switch ($type) {
|
|
|
|
case 'info':
|
|
|
|
return $this->infoURL($entity);
|
|
|
|
case 'edit':
|
|
|
|
return $this->editURL($entity);
|
|
|
|
case 'create':
|
|
|
|
return $this->createURL($entity);
|
|
|
|
case 'clone':
|
|
|
|
return $this->cloneURL($entity);
|
|
|
|
case 'list':
|
|
|
|
case 'list_parts':
|
|
|
|
return $this->listPartsURL($entity);
|
2019-04-06 18:38:36 +02:00
|
|
|
case 'delete':
|
|
|
|
return $this->deleteURL($entity);
|
2019-08-10 18:06:28 +02:00
|
|
|
case 'file_download':
|
|
|
|
return $this->downloadURL($entity);
|
|
|
|
case 'file_view':
|
|
|
|
return $this->viewURL($entity);
|
2019-03-24 15:25:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
throw new \InvalidArgumentException('Method is not supported!');
|
|
|
|
}
|
|
|
|
|
2019-08-10 18:06:28 +02:00
|
|
|
public function viewURL($entity) : string
|
|
|
|
{
|
|
|
|
if ($entity instanceof Attachment) {
|
|
|
|
return $this->urlGenerator->generate('attachment_view', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Otherwise throw an error
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function downloadURL($entity) : string
|
|
|
|
{
|
|
|
|
if ($entity instanceof Attachment) {
|
|
|
|
return $this->urlGenerator->generate('attachment_download', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Otherwise throw an error
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-05 23:52:45 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to a page, where info about this entity can be viewed.
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
2019-03-05 23:52:45 +01:00
|
|
|
* @param $entity mixed The entity for which the info should be generated.
|
|
|
|
* @return string The URL to the info page
|
|
|
|
* @throws EntityNotSupported If the method is not supported for the given Entity
|
|
|
|
*/
|
2019-03-20 23:16:07 +01:00
|
|
|
public function infoURL($entity): string
|
2019-03-05 23:52:45 +01:00
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
if ($entity instanceof Part) {
|
2019-03-05 23:52:45 +01:00
|
|
|
return $this->urlGenerator->generate('part_info', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Otherwise throw an error
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to a page, where this entity can be edited.
|
|
|
|
*
|
|
|
|
* @param $entity mixed The entity for which the edit link should be generated.
|
|
|
|
* @return string The URL to the edit page.
|
|
|
|
* @throws EntityNotSupported If the method is not supported for the given Entity
|
|
|
|
*/
|
2019-03-20 23:16:07 +01:00
|
|
|
public function editURL($entity): string
|
2019-03-13 18:41:32 +01:00
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
if ($entity instanceof Part) {
|
2019-03-13 18:41:32 +01:00
|
|
|
return $this->urlGenerator->generate('part_edit', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof AttachmentType) {
|
2019-04-05 17:49:02 +02:00
|
|
|
return $this->urlGenerator->generate('attachment_type_edit', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof Category) {
|
|
|
|
return $this->urlGenerator->generate("category_edit", ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity instanceof Device) {
|
|
|
|
return $this->urlGenerator->generate("device_edit", ['id' => $entity->getID()]);
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
2019-04-26 19:12:48 +02:00
|
|
|
if ($entity instanceof Supplier) {
|
|
|
|
return $this->urlGenerator->generate("supplier_edit", ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity instanceof Manufacturer) {
|
|
|
|
return $this->urlGenerator->generate("manufacturer_edit", ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-28 12:50:35 +02:00
|
|
|
if ($entity instanceof Storelocation) {
|
|
|
|
return $this->urlGenerator->generate("store_location_edit", ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-28 13:08:06 +02:00
|
|
|
if ($entity instanceof Footprint) {
|
|
|
|
return $this->urlGenerator->generate("footprint_edit", ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-28 14:18:11 +02:00
|
|
|
if($entity instanceof User) {
|
|
|
|
return $this->urlGenerator->generate('user_edit', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-03-13 18:41:32 +01:00
|
|
|
//Otherwise throw an error
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to a page, where a entity of this type can be created.
|
|
|
|
*
|
|
|
|
* @param $entity mixed The entity for which the link should be generated.
|
|
|
|
* @return string The URL to the page.
|
|
|
|
* @throws EntityNotSupported If the method is not supported for the given Entity
|
|
|
|
*/
|
2019-03-20 23:16:07 +01:00
|
|
|
public function createURL($entity): string
|
2019-03-13 18:41:32 +01:00
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
if ($entity instanceof Part) {
|
2019-03-13 18:41:32 +01:00
|
|
|
return $this->urlGenerator->generate('part_new');
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof AttachmentType) {
|
2019-04-05 17:49:02 +02:00
|
|
|
return $this->urlGenerator->generate('attachment_type_new');
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof Category) {
|
2019-04-20 20:39:06 +02:00
|
|
|
return $this->urlGenerator->generate('category_new');
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof Device) {
|
|
|
|
return $this->urlGenerator->generate('device_new');
|
|
|
|
}
|
|
|
|
|
2019-04-26 19:12:48 +02:00
|
|
|
if ($entity instanceof Supplier) {
|
|
|
|
return $this->urlGenerator->generate('supplier_new');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity instanceof Manufacturer) {
|
|
|
|
return $this->urlGenerator->generate('manufacturer_new');
|
|
|
|
}
|
|
|
|
|
2019-04-28 12:50:35 +02:00
|
|
|
if ($entity instanceof Storelocation) {
|
|
|
|
return $this->urlGenerator->generate('store_location_new');
|
|
|
|
}
|
|
|
|
|
2019-04-28 13:08:06 +02:00
|
|
|
if ($entity instanceof Footprint) {
|
|
|
|
return $this->urlGenerator->generate('footprint_new');
|
|
|
|
}
|
|
|
|
|
2019-04-28 14:18:11 +02:00
|
|
|
if ($entity instanceof User) {
|
|
|
|
return $this->urlGenerator->generate('user_new');
|
|
|
|
}
|
|
|
|
|
2019-03-13 18:41:32 +01:00
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to a page, where a new entity can be created, that has the same informations as the
|
|
|
|
* given entity (element cloning)
|
|
|
|
*
|
|
|
|
* @param $entity mixed The entity for which the link should be generated.
|
|
|
|
* @return string The URL to the page.
|
|
|
|
* @throws EntityNotSupported If the method is not supported for the given Entity
|
|
|
|
*/
|
2019-03-20 23:16:07 +01:00
|
|
|
public function cloneURL($entity): string
|
2019-03-19 19:53:23 +01:00
|
|
|
{
|
2019-03-20 23:16:07 +01:00
|
|
|
if ($entity instanceof Part) {
|
2019-03-19 19:53:23 +01:00
|
|
|
return $this->urlGenerator->generate('part_clone', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:25:40 +01:00
|
|
|
/**
|
|
|
|
* Generates an URL to a page, where all parts are listed, which are contained in the given element.
|
|
|
|
*
|
|
|
|
* @param $entity mixed The entity for which the link should be generated.
|
|
|
|
* @return string The URL to the page.
|
|
|
|
* @throws EntityNotSupported If the method is not supported for the given Entity
|
|
|
|
*/
|
|
|
|
public function listPartsURL($entity) : string
|
|
|
|
{
|
|
|
|
if ($entity instanceof Category) {
|
|
|
|
return $this->urlGenerator->generate('app_partlists_showcategory', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-06 18:38:36 +02:00
|
|
|
public function deleteURL($entity) : string
|
|
|
|
{
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof AttachmentType) {
|
2019-04-06 18:38:36 +02:00
|
|
|
return $this->urlGenerator->generate('attachment_type_delete', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof Category) {
|
2019-04-20 20:39:06 +02:00
|
|
|
return $this->urlGenerator->generate('category_delete', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-26 18:31:09 +02:00
|
|
|
if ($entity instanceof Device) {
|
|
|
|
return $this->urlGenerator->generate('device_delete', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
2019-04-26 19:12:48 +02:00
|
|
|
if ($entity instanceof Supplier) {
|
|
|
|
return $this->urlGenerator->generate('supplier_delete', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity instanceof Manufacturer) {
|
2019-04-28 14:18:11 +02:00
|
|
|
return $this->urlGenerator->generate('manufacturer_delete', ['id' => $entity->getID()]);
|
2019-04-26 19:12:48 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 12:50:35 +02:00
|
|
|
if ($entity instanceof Storelocation) {
|
2019-04-28 14:18:11 +02:00
|
|
|
return $this->urlGenerator->generate('store_location_delete', ['id' => $entity->getID()]);
|
2019-04-28 12:50:35 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 13:08:06 +02:00
|
|
|
if ($entity instanceof Footprint) {
|
2019-04-28 14:18:11 +02:00
|
|
|
return $this->urlGenerator->generate('footprint_delete', ['id' => $entity->getID()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity instanceof User) {
|
|
|
|
return $this->urlGenerator->generate('user_delete', ['id' => $entity->getID()]);
|
2019-04-28 13:08:06 +02:00
|
|
|
}
|
|
|
|
|
2019-04-06 18:38:36 +02:00
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
|
|
|
}
|
|
|
|
|
2019-03-05 23:52:45 +01:00
|
|
|
/**
|
|
|
|
* Generates an HTML link to the info page about the given entity.
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
2019-03-05 23:52:45 +01:00
|
|
|
* @param $entity mixed The entity for which the info link should be generated.
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
2019-03-05 23:52:45 +01:00
|
|
|
* @return string The HTML of the info page link
|
|
|
|
*
|
|
|
|
* @throws EntityNotSupported
|
|
|
|
*/
|
2019-03-20 23:16:07 +01:00
|
|
|
public function infoHTML($entity): string
|
2019-03-05 23:52:45 +01:00
|
|
|
{
|
|
|
|
$href = $this->infoURL($entity);
|
|
|
|
|
2019-03-20 23:16:07 +01:00
|
|
|
if ($entity instanceof NamedDBElement) {
|
2019-03-05 23:52:45 +01:00
|
|
|
return sprintf('<a href="%s">%s</a>', $href, $entity->getName());
|
|
|
|
}
|
2019-03-20 23:24:20 +01:00
|
|
|
|
|
|
|
throw new EntityNotSupported('The given entity is not supported yet!');
|
2019-03-05 23:52:45 +01:00
|
|
|
}
|
2019-03-20 23:16:07 +01:00
|
|
|
}
|