56 lines
1.9 KiB
PHP
56 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller\Admin\BookingEditDraft;
|
|
|
|
use App\Controller\Traits\ReturnUrlTrait;
|
|
use App\Entity\BookingEditDraft;
|
|
use App\Htmx\HxRedirectResponse;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
|
|
#[IsGranted('ROLE_ADMIN')]
|
|
class DeleteController extends AbstractController
|
|
{
|
|
use ReturnUrlTrait;
|
|
|
|
public function __construct(
|
|
private readonly EntityManagerInterface $entityManager,
|
|
private readonly LoggerInterface $adminLogger,
|
|
) {
|
|
}
|
|
|
|
#[Route('/admin/booking-edit-draft/{id}/delete', name: 'app_admin_bookingeditdraft_delete')]
|
|
public function index(BookingEditDraft $draft, Request $request): Response
|
|
{
|
|
if (true === $request->isMethod(Request::METHOD_POST)) {
|
|
if (!$this->isCsrfTokenValid('delete_booking_edit_draft_'.$draft->getId(), $request->request->getString('_token'))) {
|
|
throw $this->createAccessDeniedException('Invalid CSRF token.');
|
|
}
|
|
|
|
$this->entityManager->remove($draft);
|
|
$this->entityManager->flush();
|
|
|
|
$this->adminLogger->info('Delete booking edit draft', [
|
|
'booking_number' => $draft->getBookingNumber(),
|
|
]);
|
|
$this->addFlash('success', 'Der Buchungsentwurf wurde gelöscht');
|
|
|
|
$returnUrl = $this->getReturnUrl($request, 'app_admin_bookingeditdraft');
|
|
|
|
return new HxRedirectResponse($returnUrl);
|
|
}
|
|
|
|
return $this->render('admin/booking_edit_draft/modal_delete.html.twig', [
|
|
'draft' => $draft,
|
|
'csrf_token_id' => 'delete_booking_edit_draft_'.$draft->getId(),
|
|
]);
|
|
}
|
|
}
|