mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
- Replaced getters/setters with direct property access across entities and repositories. - Added and configured `martin-georgiev/postgresql-for-doctrine` for PostgreSQL enhancements. - Updated Doctrine configuration with types, mappings, and JSONB query functions. - Removed unused `EliminationService` and related YAML configurations.
80 lines
2.6 KiB
PHP
80 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Controller\Backoffice;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpFoundation\StreamedResponse;
|
|
use Symfony\Component\HttpKernel\Attribute\AsController;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
use Tvdt\Controller\AbstractController;
|
|
use Tvdt\Entity\Season;
|
|
use Tvdt\Entity\User;
|
|
use Tvdt\Form\CreateSeasonFormType;
|
|
use Tvdt\Repository\SeasonRepository;
|
|
use Tvdt\Service\QuizSpreadsheetService;
|
|
|
|
#[AsController]
|
|
#[IsGranted('ROLE_USER')]
|
|
final class BackofficeController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
private readonly SeasonRepository $seasonRepository,
|
|
private readonly Security $security,
|
|
) {}
|
|
|
|
#[Route('/backoffice/', name: 'tvdt_backoffice_index')]
|
|
public function index(): Response
|
|
{
|
|
$user = $this->getUser();
|
|
\assert($user instanceof User);
|
|
|
|
$seasons = $this->security->isGranted('ROLE_ADMIN')
|
|
? $this->seasonRepository->findAll()
|
|
: $this->seasonRepository->getSeasonsForUser($user);
|
|
|
|
return $this->render('backoffice/index.html.twig', [
|
|
'seasons' => $seasons,
|
|
]);
|
|
}
|
|
|
|
#[Route('/backoffice/season/add', name: 'tvdt_backoffice_season_add', priority: 10)]
|
|
public function addSeason(Request $request, EntityManagerInterface $em): Response
|
|
{
|
|
$season = new Season();
|
|
$form = $this->createForm(CreateSeasonFormType::class, $season);
|
|
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$user = $this->getUser();
|
|
\assert($user instanceof User);
|
|
|
|
$season->addOwner($user);
|
|
$season->generateSeasonCode();
|
|
|
|
$em->persist($season);
|
|
$em->flush();
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_season', ['seasonCode' => $season->seasonCode]);
|
|
}
|
|
|
|
return $this->render('backoffice/season_add.html.twig', ['form' => $form]);
|
|
}
|
|
|
|
#[Route('/backoffice/template', name: 'tvdt_backoffice_template', priority: 10)]
|
|
public function getTemplate(QuizSpreadsheetService $excel): Response
|
|
{
|
|
$response = new StreamedResponse($excel->generateTemplate());
|
|
$response->headers->set('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
|
$response->headers->set('Content-Disposition', 'attachment; filename="template.xlsx"');
|
|
|
|
return $response;
|
|
}
|
|
}
|