mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
* Some tests * More tests! * Tests 3 * Move getScores from Candidate to Quiz * Add some suggestions for future refactoring * - **Add Gedmo doctrine-extensions and Stof bundle integration** - Added `stof/doctrine-extensions-bundle` and `gedmo/doctrine-extensions` dependencies. - Integrated `Timestampable` behavior for `Created` fields in entities. - Updated `bundles.php` to register StofDoctrineExtensionsBundle. - Added configuration for the Stof bundle. - Simplified `SeasonVoter` with `match` expression and added new tests. - Minor fixes and adjustments across various files. * WIP * All the tests * Base64 tests * Symfomny 7.4.0 * Update * Update recipe * PHP 8.5 * Rector changes * More 8.5 * Things
121 lines
4.5 KiB
PHP
121 lines
4.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Controller\Backoffice;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpKernel\Attribute\AsController;
|
|
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Routing\Requirement\Requirement;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
use Tvdt\Controller\AbstractController;
|
|
use Tvdt\Entity\Candidate;
|
|
use Tvdt\Entity\Quiz;
|
|
use Tvdt\Entity\Season;
|
|
use Tvdt\Exception\ErrorClearingQuizException;
|
|
use Tvdt\Repository\QuizCandidateRepository;
|
|
use Tvdt\Repository\QuizRepository;
|
|
use Tvdt\Security\Voter\SeasonVoter;
|
|
|
|
#[AsController]
|
|
#[IsGranted('ROLE_USER')]
|
|
class QuizController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
private readonly QuizRepository $quizRepository,
|
|
private readonly TranslatorInterface $translator,
|
|
private readonly QuizCandidateRepository $quizCandidateRepository,
|
|
) {}
|
|
|
|
#[IsGranted(SeasonVoter::EDIT, subject: 'season')]
|
|
#[Route(
|
|
'/backoffice/season/{seasonCode:season}/quiz/{quiz}',
|
|
name: 'tvdt_backoffice_quiz',
|
|
requirements: ['seasonCode' => self::SEASON_CODE_REGEX, 'quiz' => Requirement::UUID],
|
|
)]
|
|
public function index(Season $season, Quiz $quiz): Response
|
|
{
|
|
return $this->render('backoffice/quiz.html.twig', [
|
|
'season' => $season,
|
|
'quiz' => $quiz,
|
|
'result' => $this->quizRepository->getScores($quiz),
|
|
]);
|
|
}
|
|
|
|
#[IsGranted(SeasonVoter::EDIT, subject: 'season')]
|
|
#[Route(
|
|
'/backoffice/season/{seasonCode:season}/quiz/{quiz}/enable',
|
|
name: 'tvdt_backoffice_enable',
|
|
requirements: ['seasonCode' => self::SEASON_CODE_REGEX, 'quiz' => Requirement::UUID.'|null'],
|
|
)]
|
|
public function enableQuiz(Season $season, ?Quiz $quiz, EntityManagerInterface $em): RedirectResponse
|
|
{
|
|
$season->activeQuiz = $quiz;
|
|
$em->flush();
|
|
|
|
if ($quiz instanceof Quiz) {
|
|
return $this->redirectToRoute('tvdt_backoffice_quiz', ['seasonCode' => $season->seasonCode, 'quiz' => $quiz->id]);
|
|
}
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_season', ['seasonCode' => $season->seasonCode]);
|
|
}
|
|
|
|
#[IsGranted(SeasonVoter::EDIT, subject: 'quiz')]
|
|
#[Route(
|
|
'/backoffice/quiz/{quiz}/clear',
|
|
name: 'tvdt_backoffice_quiz_clear',
|
|
requirements: ['quiz' => Requirement::UUID],
|
|
)]
|
|
public function clearQuiz(Quiz $quiz): RedirectResponse
|
|
{
|
|
try {
|
|
$this->quizRepository->clearQuiz($quiz);
|
|
$this->addFlash('success', $this->translator->trans('Quiz cleared'));
|
|
} catch (ErrorClearingQuizException) {
|
|
$this->addFlash('error', $this->translator->trans('Error clearing quiz'));
|
|
}
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_quiz', ['seasonCode' => $quiz->season->seasonCode, 'quiz' => $quiz->id]);
|
|
}
|
|
|
|
#[IsGranted(SeasonVoter::DELETE, subject: 'quiz')]
|
|
#[Route(
|
|
'/backoffice/quiz/{quiz}/delete',
|
|
name: 'tvdt_backoffice_quiz_delete',
|
|
requirements: ['quiz' => Requirement::UUID],
|
|
)]
|
|
public function deleteQuiz(Quiz $quiz): RedirectResponse
|
|
{
|
|
$this->quizRepository->deleteQuiz($quiz);
|
|
|
|
$this->addFlash('success', $this->translator->trans('Quiz deleted'));
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_season', ['seasonCode' => $quiz->season->seasonCode]);
|
|
}
|
|
|
|
#[IsGranted(SeasonVoter::EDIT, subject: 'quiz')]
|
|
#[Route(
|
|
'/backoffice/quiz/{quiz}/candidate/{candidate}/modify_correction',
|
|
name: 'tvdt_backoffice_modify_correction',
|
|
requirements: ['quiz' => Requirement::UUID, 'candidate' => Requirement::UUID],
|
|
)]
|
|
public function modifyCorrection(Quiz $quiz, Candidate $candidate, Request $request): RedirectResponse
|
|
{
|
|
if (!$request->isMethod('POST')) {
|
|
throw new MethodNotAllowedHttpException(['POST']);
|
|
}
|
|
|
|
$corrections = (float) $request->request->get('corrections');
|
|
|
|
$this->quizCandidateRepository->setCorrectionsForCandidate($quiz, $candidate, $corrections);
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_quiz', ['seasonCode' => $quiz->season->seasonCode, 'quiz' => $quiz->id]);
|
|
}
|
|
}
|