mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 15:10:16 +02:00
281462fab8
* Added Gedmo stuff, fix translations * Add CSRF token validation across backoffice forms - Added CSRF validations to candidate correction, penalty, answer saving, and elimination forms. - Updated corresponding Twig templates to include CSRF token inputs. - Adjusted column count in `tab_result` template to maintain layout consistency. * Add unique index constraint for `quiz_candidate` with soft delete support - Updated migration to include a unique index on `quiz_candidate` table that excludes soft-deleted records. - Adjusted `QuizCandidate` entity to reflect the new unique constraint with `deleted_at` condition. * Add CSRF token validation for quiz-related actions - Added CSRF validation to `enableQuiz`, `clearQuiz`, `deleteQuiz`, `toggleCandidate`, and `prepareElimination` actions. - Updated Twig templates to replace links with POST forms to include CSRF tokens. - Set HTTP method restrictions for related endpoints to `POST`. * Fix unique index condition for `quiz_candidate` with soft deletes - Updated condition in unique index definition of `quiz_candidate` to add parentheses for clarity. - Adjusted related migration to reflect the revised condition. * Remove if for post an use methods in Route instead * Refactor CSRF token validation in backoffice controllers - Applied `#[IsCsrfTokenValid]` attribute for CSRF checks to simplify and standardize validation. - Removed manual `isCsrfTokenValid` calls and associated exception throwing. - Updated method signatures across affected endpoints to remove unnecessary `Request` dependency. - Ensured consistency in route HTTP method restrictions where applicable. * Add rector and phpstan * Add validation for answering incorrect quiz question - Added logic to prevent candidates from answering questions out of sequence in `QuizController`. - Updated Dutch translations to include the new error message. * Things
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Entity;
|
|
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Gedmo\Mapping\Annotation as Gedmo;
|
|
use Gedmo\SoftDeleteable\Traits\SoftDeleteableEntity;
|
|
use Gedmo\Timestampable\Traits\TimestampableEntity;
|
|
use Symfony\Bridge\Doctrine\Types\UuidType;
|
|
use Symfony\Component\HttpFoundation\InputBag;
|
|
use Symfony\Component\Uid\Uuid;
|
|
use Tvdt\Repository\EliminationRepository;
|
|
|
|
#[Gedmo\SoftDeleteable]
|
|
#[ORM\Entity(repositoryClass: EliminationRepository::class)]
|
|
class Elimination
|
|
{
|
|
use SoftDeleteableEntity;
|
|
use TimestampableEntity;
|
|
|
|
public const string SCREEN_GREEN = 'green';
|
|
|
|
public const string SCREEN_RED = 'red';
|
|
|
|
#[ORM\Column(type: UuidType::NAME, unique: true)]
|
|
#[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
|
|
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
|
|
#[ORM\Id]
|
|
public private(set) Uuid $id;
|
|
|
|
/** @var array<string, mixed> */
|
|
#[ORM\Column(type: Types::JSONB)]
|
|
public array $data = [];
|
|
|
|
public function __construct(
|
|
#[ORM\JoinColumn(nullable: false, onDelete: 'CASCADE')]
|
|
#[ORM\ManyToOne(inversedBy: 'eliminations')]
|
|
public Quiz $quiz,
|
|
) {}
|
|
|
|
/** @param InputBag<bool|float|int|string> $inputBag */
|
|
public function updateFromInputBag(InputBag $inputBag): self
|
|
{
|
|
foreach (array_keys($this->data) as $name) {
|
|
$newColour = $inputBag->get('colour-'.mb_strtolower($name));
|
|
if (\is_string($newColour)) {
|
|
$this->data[$name] = $inputBag->get('colour-'.mb_strtolower($name));
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getScreenColour(?string $name): ?string
|
|
{
|
|
if (null === $name) {
|
|
return null;
|
|
}
|
|
|
|
return $this->data[$name] ?? null;
|
|
}
|
|
}
|