2019-04-20 20:39:06 +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).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2020 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/>.
|
|
|
|
*/
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-04-20 20:39:06 +02: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-04-20 20:39:06 +02:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-04-20 20:39:06 +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
|
|
|
|
*/
|
|
|
|
|
2019-04-28 13:10:11 +02:00
|
|
|
namespace App\Controller\AdminPages;
|
2019-04-20 20:39:06 +02:00
|
|
|
|
2020-03-04 21:09:01 +01:00
|
|
|
use App\DataTables\LogDataTable;
|
2020-02-01 19:48:07 +01:00
|
|
|
use App\Entity\Base\AbstractNamedDBElement;
|
|
|
|
use App\Entity\Base\AbstractStructuralDBElement;
|
2019-09-19 12:35:28 +02:00
|
|
|
use App\Entity\UserSystem\User;
|
2019-10-19 18:50:17 +02:00
|
|
|
use App\Exceptions\AttachmentDownloadException;
|
2019-08-12 22:41:58 +02:00
|
|
|
use App\Form\AdminPages\ImportType;
|
|
|
|
use App\Form\AdminPages\MassCreationForm;
|
2019-10-19 23:29:51 +02:00
|
|
|
use App\Services\Attachments\AttachmentManager;
|
2019-10-19 17:13:13 +02:00
|
|
|
use App\Services\Attachments\AttachmentSubmitHandler;
|
2019-04-20 20:39:06 +02:00
|
|
|
use App\Services\EntityExporter;
|
|
|
|
use App\Services\EntityImporter;
|
2020-02-23 00:44:52 +01:00
|
|
|
use App\Services\LogSystem\EventCommentHelper;
|
2020-03-04 21:09:01 +01:00
|
|
|
use App\Services\LogSystem\HistoryHelper;
|
|
|
|
use App\Services\LogSystem\TimeTravel;
|
2019-04-20 20:39:06 +02:00
|
|
|
use App\Services\StructuralElementRecursionHelper;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2020-01-05 22:49:00 +01:00
|
|
|
use InvalidArgumentException;
|
2020-03-04 21:09:01 +01:00
|
|
|
use Omines\DataTablesBundle\DataTableFactory;
|
2019-04-20 20:39:06 +02:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
2019-09-24 18:28:35 +02:00
|
|
|
use Symfony\Component\Form\FormInterface;
|
2019-04-20 20:39:06 +02:00
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
2020-02-02 14:05:36 +01:00
|
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
2019-04-20 20:39:06 +02:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2020-02-02 14:05:36 +01:00
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
2019-09-19 12:35:28 +02:00
|
|
|
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
|
2019-04-20 20:39:06 +02:00
|
|
|
use Symfony\Component\Validator\ConstraintViolationList;
|
2019-08-25 18:15:58 +02:00
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
2019-04-20 20:39:06 +02:00
|
|
|
|
|
|
|
abstract class BaseAdminController extends AbstractController
|
|
|
|
{
|
2019-08-20 18:39:57 +02:00
|
|
|
protected $entity_class = '';
|
|
|
|
protected $form_class = '';
|
|
|
|
protected $twig_template = '';
|
|
|
|
protected $route_base = '';
|
2019-09-24 18:28:35 +02:00
|
|
|
protected $attachment_class = '';
|
2019-04-20 20:39:06 +02:00
|
|
|
|
2019-09-19 12:35:28 +02:00
|
|
|
protected $passwordEncoder;
|
2019-08-25 18:15:58 +02:00
|
|
|
protected $translator;
|
2019-09-24 18:28:35 +02:00
|
|
|
protected $attachmentHelper;
|
2019-10-19 17:13:13 +02:00
|
|
|
protected $attachmentSubmitHandler;
|
2020-02-23 00:44:52 +01:00
|
|
|
protected $commentHelper;
|
2019-08-25 18:15:58 +02:00
|
|
|
|
2020-03-04 21:09:01 +01:00
|
|
|
protected $historyHelper;
|
|
|
|
protected $timeTravel;
|
|
|
|
protected $dataTableFactory;
|
|
|
|
|
2019-10-19 17:13:13 +02:00
|
|
|
public function __construct(TranslatorInterface $translator, UserPasswordEncoderInterface $passwordEncoder,
|
2020-03-07 20:49:52 +01:00
|
|
|
AttachmentManager $attachmentHelper, AttachmentSubmitHandler $attachmentSubmitHandler,
|
|
|
|
EventCommentHelper $commentHelper, HistoryHelper $historyHelper, TimeTravel $timeTravel,
|
|
|
|
DataTableFactory $dataTableFactory)
|
2019-04-20 20:39:06 +02:00
|
|
|
{
|
2019-11-09 00:47:20 +01:00
|
|
|
if ('' === $this->entity_class || '' === $this->form_class || '' === $this->twig_template || '' === $this->route_base) {
|
2020-01-05 22:49:00 +01:00
|
|
|
throw new InvalidArgumentException('You have to override the $entity_class, $form_class, $route_base and $twig_template value in your subclasss!');
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
2019-08-25 18:15:58 +02:00
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
if ('' === $this->attachment_class) {
|
2020-01-05 22:49:00 +01:00
|
|
|
throw new InvalidArgumentException('You have to override the $attachment_class value in your subclass!');
|
2019-09-24 18:28:35 +02:00
|
|
|
}
|
|
|
|
|
2019-08-25 18:15:58 +02:00
|
|
|
$this->translator = $translator;
|
2019-09-19 12:35:28 +02:00
|
|
|
$this->passwordEncoder = $passwordEncoder;
|
2019-09-24 18:28:35 +02:00
|
|
|
$this->attachmentHelper = $attachmentHelper;
|
2019-10-19 17:13:13 +02:00
|
|
|
$this->attachmentSubmitHandler = $attachmentSubmitHandler;
|
2020-02-23 00:44:52 +01:00
|
|
|
$this->commentHelper = $commentHelper;
|
2020-03-04 21:09:01 +01:00
|
|
|
$this->historyHelper = $historyHelper;
|
|
|
|
$this->timeTravel = $timeTravel;
|
|
|
|
$this->dataTableFactory = $dataTableFactory;
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 14:05:36 +01:00
|
|
|
|
2020-03-04 21:54:03 +01:00
|
|
|
protected function _edit(AbstractNamedDBElement $entity, Request $request, EntityManagerInterface $em, ?string $timestamp = null) : Response
|
2019-04-20 20:39:06 +02:00
|
|
|
{
|
|
|
|
$this->denyAccessUnlessGranted('read', $entity);
|
|
|
|
|
2020-03-04 21:09:01 +01:00
|
|
|
|
2020-03-04 21:54:03 +01:00
|
|
|
$timeTravel_timestamp = null;
|
|
|
|
if ($timestamp !== null) {
|
2020-03-07 20:49:52 +01:00
|
|
|
$this->denyAccessUnlessGranted('@tools.timeTravel');
|
2020-03-07 21:36:33 +01:00
|
|
|
$this->denyAccessUnlessGranted('show_history', $entity);
|
2020-03-04 21:54:03 +01:00
|
|
|
//If the timestamp only contains numbers interpret it as unix timestamp
|
|
|
|
if (ctype_digit($timestamp)) {
|
|
|
|
$timeTravel_timestamp = new \DateTime();
|
|
|
|
$timeTravel_timestamp->setTimestamp((int) $timestamp);
|
|
|
|
} else { //Try to parse it via DateTime
|
|
|
|
$timeTravel_timestamp = new \DateTime($timestamp);
|
|
|
|
}
|
|
|
|
$this->timeTravel->revertEntityToTimestamp($entity, $timeTravel_timestamp);
|
|
|
|
}
|
|
|
|
|
2020-03-07 20:49:52 +01:00
|
|
|
if ($this->isGranted('show_history', $entity) ) {
|
|
|
|
$table = $this->dataTableFactory->createFromType(
|
|
|
|
LogDataTable::class,
|
|
|
|
[
|
|
|
|
'filter_elements' => $this->historyHelper->getAssociatedElements($entity),
|
|
|
|
'mode' => 'element_history'
|
|
|
|
],
|
|
|
|
['pageLength' => 10]
|
|
|
|
)
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$table = null;
|
2020-03-04 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2020-03-04 21:54:03 +01:00
|
|
|
$form = $this->createForm($this->form_class, $entity, [
|
|
|
|
'attachment_class' => $this->attachment_class,
|
|
|
|
'disabled' => $timeTravel_timestamp !== null ? true : null
|
|
|
|
]);
|
2019-04-20 20:39:06 +02:00
|
|
|
|
|
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
2019-09-19 12:35:28 +02:00
|
|
|
//Check if we editing a user and if we need to change the password of it
|
2020-01-05 15:46:58 +01:00
|
|
|
if ($entity instanceof User && ! empty($form['new_password']->getData())) {
|
2019-09-19 12:35:28 +02:00
|
|
|
$password = $this->passwordEncoder->encodePassword($entity, $form['new_password']->getData());
|
|
|
|
$entity->setPassword($password);
|
|
|
|
//By default the user must change the password afterwards
|
|
|
|
$entity->setNeedPwChange(true);
|
|
|
|
}
|
|
|
|
|
2019-09-24 18:28:35 +02:00
|
|
|
//Upload passed files
|
|
|
|
$attachments = $form['attachments'];
|
|
|
|
foreach ($attachments as $attachment) {
|
2020-01-05 15:46:58 +01:00
|
|
|
/** @var FormInterface $attachment */
|
2019-10-19 18:42:06 +02:00
|
|
|
$options = [
|
|
|
|
'secure_attachment' => $attachment['secureFile']->getData(),
|
2019-11-09 00:47:20 +01:00
|
|
|
'download_url' => $attachment['downloadURL']->getData(),
|
2019-10-19 18:42:06 +02:00
|
|
|
];
|
2020-01-05 15:46:58 +01:00
|
|
|
|
2019-10-19 18:50:17 +02:00
|
|
|
try {
|
|
|
|
$this->attachmentSubmitHandler->handleFormSubmit($attachment->getData(), $attachment['file']->getData(), $options);
|
2020-01-05 22:49:00 +01:00
|
|
|
} catch (AttachmentDownloadException $attachmentDownloadException) {
|
2019-10-19 18:50:17 +02:00
|
|
|
$this->addFlash(
|
|
|
|
'error',
|
2020-01-05 22:49:00 +01:00
|
|
|
$this->translator->trans('attachment.download_failed').' '.$attachmentDownloadException->getMessage()
|
2019-10-19 18:50:17 +02:00
|
|
|
);
|
|
|
|
}
|
2019-09-24 18:28:35 +02:00
|
|
|
}
|
|
|
|
|
2020-02-23 00:44:52 +01:00
|
|
|
$this->commentHelper->setMessage($form['log_comment']->getData());
|
|
|
|
|
2019-04-20 20:39:06 +02:00
|
|
|
$em->persist($entity);
|
|
|
|
$em->flush();
|
2019-12-26 14:53:13 +01:00
|
|
|
$this->addFlash('success', 'entity.edit_flash');
|
2019-08-26 11:41:39 +02:00
|
|
|
|
|
|
|
//Rebuild form, so it is based on the updated data. Important for the parent field!
|
|
|
|
//We can not use dynamic form events here, because the parent entity list is build from database!
|
2019-09-24 18:28:35 +02:00
|
|
|
$form = $this->createForm($this->form_class, $entity, ['attachment_class' => $this->attachment_class]);
|
2020-01-05 15:46:58 +01:00
|
|
|
} elseif ($form->isSubmitted() && ! $form->isValid()) {
|
2019-12-26 14:53:13 +01:00
|
|
|
$this->addFlash('error', 'entity.edit_flash.invalid');
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render($this->twig_template, [
|
|
|
|
'entity' => $entity,
|
2019-09-24 18:28:35 +02:00
|
|
|
'form' => $form->createView(),
|
2019-11-09 00:47:20 +01:00
|
|
|
'attachment_helper' => $this->attachmentHelper,
|
2020-02-23 19:45:06 +01:00
|
|
|
'route_base' => $this->route_base,
|
2020-03-04 21:54:03 +01:00
|
|
|
'datatable' => $table,
|
|
|
|
'timeTravel' => $timeTravel_timestamp
|
2019-04-20 20:39:06 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function _new(Request $request, EntityManagerInterface $em, EntityImporter $importer)
|
|
|
|
{
|
2020-02-01 19:48:07 +01:00
|
|
|
/** @var AbstractStructuralDBElement|User $new_entity */
|
2019-04-20 20:39:06 +02:00
|
|
|
$new_entity = new $this->entity_class();
|
|
|
|
|
|
|
|
$this->denyAccessUnlessGranted('read', $new_entity);
|
|
|
|
|
|
|
|
//Basic edit form
|
2019-09-24 18:28:35 +02:00
|
|
|
$form = $this->createForm($this->form_class, $new_entity, ['attachment_class' => $this->attachment_class]);
|
2019-04-20 20:39:06 +02:00
|
|
|
|
|
|
|
$form->handleRequest($request);
|
|
|
|
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
2020-01-05 15:46:58 +01:00
|
|
|
if ($new_entity instanceof User && ! empty($form['new_password']->getData())) {
|
2019-09-19 12:35:28 +02:00
|
|
|
$password = $this->passwordEncoder->encodePassword($new_entity, $form['new_password']->getData());
|
|
|
|
$new_entity->setPassword($password);
|
|
|
|
//By default the user must change the password afterwards
|
|
|
|
$new_entity->setNeedPwChange(true);
|
|
|
|
}
|
2019-09-24 18:28:35 +02:00
|
|
|
|
|
|
|
//Upload passed files
|
|
|
|
$attachments = $form['attachments'];
|
|
|
|
foreach ($attachments as $attachment) {
|
2020-01-05 15:46:58 +01:00
|
|
|
/** @var FormInterface $attachment */
|
2019-10-19 18:50:17 +02:00
|
|
|
$options = [
|
|
|
|
'secure_attachment' => $attachment['secureFile']->getData(),
|
2019-11-09 00:47:20 +01:00
|
|
|
'download_url' => $attachment['downloadURL']->getData(),
|
2019-10-19 18:50:17 +02:00
|
|
|
];
|
2020-01-05 15:46:58 +01:00
|
|
|
|
2019-10-19 18:50:17 +02:00
|
|
|
try {
|
|
|
|
$this->attachmentSubmitHandler->handleFormSubmit($attachment->getData(), $attachment['file']->getData(), $options);
|
2020-01-05 22:49:00 +01:00
|
|
|
} catch (AttachmentDownloadException $attachmentDownloadException) {
|
2019-10-19 18:50:17 +02:00
|
|
|
$this->addFlash(
|
|
|
|
'error',
|
2020-01-05 22:49:00 +01:00
|
|
|
$this->translator->trans('attachment.download_failed').' '.$attachmentDownloadException->getMessage()
|
2019-10-19 18:50:17 +02:00
|
|
|
);
|
|
|
|
}
|
2019-09-24 18:28:35 +02:00
|
|
|
}
|
|
|
|
|
2020-02-23 00:44:52 +01:00
|
|
|
$this->commentHelper->setMessage($form['log_comment']->getData());
|
|
|
|
|
2019-04-20 20:39:06 +02:00
|
|
|
$em->persist($new_entity);
|
|
|
|
$em->flush();
|
2019-12-26 14:53:13 +01:00
|
|
|
$this->addFlash('success', 'entity.created_flash');
|
2019-04-20 20:39:06 +02:00
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
return $this->redirectToRoute($this->route_base.'_edit', ['id' => $new_entity->getID()]);
|
2019-09-16 22:04:59 +02:00
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:58 +01:00
|
|
|
if ($form->isSubmitted() && ! $form->isValid()) {
|
2019-12-26 14:53:13 +01:00
|
|
|
$this->addFlash('error', 'entity.created_flash.invalid');
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Import form
|
|
|
|
$import_form = $this->createForm(ImportType::class, ['entity_class' => $this->entity_class]);
|
|
|
|
$import_form->handleRequest($request);
|
|
|
|
|
|
|
|
if ($import_form->isSubmitted() && $import_form->isValid()) {
|
|
|
|
/** @var UploadedFile $file */
|
|
|
|
$file = $import_form['file']->getData();
|
|
|
|
$data = $import_form->getData();
|
|
|
|
|
2020-01-05 22:49:00 +01:00
|
|
|
$options = [
|
|
|
|
'parent' => $data['parent'],
|
|
|
|
'preserve_children' => $data['preserve_children'],
|
|
|
|
'format' => $data['format'],
|
|
|
|
'csv_separator' => $data['csv_separator'],
|
|
|
|
];
|
2019-04-20 20:39:06 +02:00
|
|
|
|
2020-02-23 00:44:52 +01:00
|
|
|
$this->commentHelper->setMessage('Import ' . $file->getClientOriginalName());
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-20 20:39:06 +02:00
|
|
|
$errors = $importer->fileToDBEntities($file, $this->entity_class, $options);
|
|
|
|
|
|
|
|
foreach ($errors as $name => $error) {
|
2020-01-05 15:46:58 +01:00
|
|
|
/** @var ConstraintViolationList $error */
|
2019-11-09 00:47:20 +01:00
|
|
|
$this->addFlash('error', $name.':'.$error);
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-12 22:41:58 +02:00
|
|
|
//Mass creation form
|
|
|
|
$mass_creation_form = $this->createForm(MassCreationForm::class, ['entity_class' => $this->entity_class]);
|
|
|
|
$mass_creation_form->handleRequest($request);
|
|
|
|
|
|
|
|
if ($mass_creation_form->isSubmitted() && $mass_creation_form->isValid()) {
|
|
|
|
$data = $mass_creation_form->getData();
|
|
|
|
|
|
|
|
//Create entries based on input
|
2019-11-09 16:14:57 +01:00
|
|
|
$errors = [];
|
|
|
|
$results = $importer->massCreation($data['lines'], $this->entity_class, $data['parent'], $errors);
|
2019-08-12 22:41:58 +02:00
|
|
|
|
|
|
|
//Show errors to user:
|
2019-11-09 16:14:57 +01:00
|
|
|
foreach ($errors as $error) {
|
|
|
|
$this->addFlash('error', $error['entity']->getFullPath().':'.$error['violations']);
|
2019-08-12 22:41:58 +02:00
|
|
|
}
|
2019-11-09 16:14:57 +01:00
|
|
|
|
|
|
|
//Persist valid entities to DB
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$em->persist($result);
|
|
|
|
}
|
|
|
|
$em->flush();
|
2019-08-12 22:41:58 +02:00
|
|
|
}
|
|
|
|
|
2019-04-20 20:39:06 +02:00
|
|
|
return $this->render($this->twig_template, [
|
|
|
|
'entity' => $new_entity,
|
|
|
|
'form' => $form->createView(),
|
2019-08-12 22:41:58 +02:00
|
|
|
'import_form' => $import_form->createView(),
|
2019-09-24 18:28:35 +02:00
|
|
|
'mass_creation_form' => $mass_creation_form->createView(),
|
2019-11-09 00:47:20 +01:00
|
|
|
'attachment_helper' => $this->attachmentHelper,
|
2020-02-23 19:45:06 +01:00
|
|
|
'route_base' => $this->route_base,
|
2019-04-20 20:39:06 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-02-02 14:05:36 +01:00
|
|
|
protected function _delete(Request $request, AbstractNamedDBElement $entity, StructuralElementRecursionHelper $recursionHelper) : RedirectResponse
|
2019-04-20 20:39:06 +02:00
|
|
|
{
|
|
|
|
$this->denyAccessUnlessGranted('delete', $entity);
|
|
|
|
|
|
|
|
if ($this->isCsrfTokenValid('delete'.$entity->getId(), $request->request->get('_token'))) {
|
|
|
|
$entityManager = $this->getDoctrine()->getManager();
|
|
|
|
|
|
|
|
//Check if we need to remove recursively
|
2020-02-01 19:48:07 +01:00
|
|
|
if ($entity instanceof AbstractStructuralDBElement && $request->get('delete_recursive', false)) {
|
2019-04-20 20:39:06 +02:00
|
|
|
$recursionHelper->delete($entity, false);
|
|
|
|
} else {
|
2020-02-01 19:48:07 +01:00
|
|
|
if ($entity instanceof AbstractStructuralDBElement) {
|
2019-09-19 12:35:28 +02:00
|
|
|
$parent = $entity->getParent();
|
|
|
|
|
|
|
|
//Move all sub entities to the current parent
|
|
|
|
foreach ($entity->getSubelements() as $subelement) {
|
|
|
|
$subelement->setParent($parent);
|
|
|
|
$entityManager->persist($subelement);
|
|
|
|
}
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Remove current element
|
|
|
|
$entityManager->remove($entity);
|
|
|
|
}
|
|
|
|
|
2020-02-23 00:44:52 +01:00
|
|
|
$this->commentHelper->setMessage($request->request->get('log_comment', null));
|
|
|
|
|
2019-04-20 20:39:06 +02:00
|
|
|
//Flush changes
|
|
|
|
$entityManager->flush();
|
|
|
|
|
|
|
|
$this->addFlash('success', 'attachment_type.deleted');
|
2019-10-26 22:27:04 +02:00
|
|
|
} else {
|
|
|
|
$this->addFlash('error', 'csfr_invalid');
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
return $this->redirectToRoute($this->route_base.'_new');
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 14:05:36 +01:00
|
|
|
protected function _exportAll(EntityManagerInterface $em, EntityExporter $exporter, Request $request): Response
|
2019-04-20 20:39:06 +02:00
|
|
|
{
|
|
|
|
$entity = new $this->entity_class();
|
|
|
|
|
|
|
|
$this->denyAccessUnlessGranted('read', $entity);
|
|
|
|
|
|
|
|
$entities = $em->getRepository($this->entity_class)->findAll();
|
|
|
|
|
2019-11-09 00:47:20 +01:00
|
|
|
return $exporter->exportEntityFromRequest($entities, $request);
|
2019-04-20 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 14:05:36 +01:00
|
|
|
protected function _exportEntity(AbstractNamedDBElement $entity, EntityExporter $exporter, Request $request): \Symfony\Component\HttpFoundation\Response
|
2019-04-20 20:39:06 +02:00
|
|
|
{
|
|
|
|
$this->denyAccessUnlessGranted('read', $entity);
|
|
|
|
|
|
|
|
return $exporter->exportEntityFromRequest($entity, $request);
|
|
|
|
}
|
2019-11-09 00:47:20 +01:00
|
|
|
}
|