Deux lots regroupés sur la branche feat/absence-management. Suppression complète du portail client : - retire ROLE_CLIENT (security.yaml) ; User::getRoles() ajoute toujours ROLE_USER - supprime l'entité ClientTicket (+ repo, states, relations), User.client et User.allowedProjects, NotificationService, ProjectAllowedExtension, le bloc ROLE_CLIENT de MailAccessChecker - front : pages /portal, layout portal, composants client-ticket/, AdminClientTicketTab, services/dto/i18n/docs associés - fixtures : retire les users client-liot / client-acme - migration Version20260522110000 (drop client_ticket, user_allowed_projects, colonnes liées ; task_document.task_id -> NOT NULL) - tests : retire les cas obsolètes testant le blocage des clients sur le mail Module gestion des absences (WIP) : - entités / migrations (Version20260521160000, Version20260522090000) - pages absences.vue / team-absences.vue, composants frontend/components/absence/ - services front, AccrueLeaveCommand, PublicHolidayController Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
166 lines
4.0 KiB
PHP
166 lines
4.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
|
|
use ApiPlatform\Metadata\ApiFilter;
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use ApiPlatform\Metadata\Delete;
|
|
use ApiPlatform\Metadata\Get;
|
|
use ApiPlatform\Metadata\GetCollection;
|
|
use ApiPlatform\Metadata\Post;
|
|
use App\EventListener\TaskDocumentListener;
|
|
use App\State\TaskDocumentProcessor;
|
|
use App\State\TaskDocumentProvider;
|
|
use DateTimeImmutable;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
#[ApiResource(
|
|
operations: [
|
|
new GetCollection(paginationEnabled: false, security: "is_granted('ROLE_USER')", provider: TaskDocumentProvider::class),
|
|
new Get(security: "is_granted('ROLE_USER')", provider: TaskDocumentProvider::class),
|
|
new Post(
|
|
security: "is_granted('ROLE_ADMIN')",
|
|
processor: TaskDocumentProcessor::class,
|
|
deserialize: false,
|
|
),
|
|
new Delete(security: "is_granted('ROLE_ADMIN')"),
|
|
],
|
|
normalizationContext: ['groups' => ['task_document:read']],
|
|
denormalizationContext: ['groups' => ['task_document:write']],
|
|
order: ['id' => 'DESC'],
|
|
)]
|
|
#[ApiFilter(SearchFilter::class, properties: ['task' => 'exact'])]
|
|
#[ORM\Entity]
|
|
#[ORM\EntityListeners([TaskDocumentListener::class])]
|
|
class TaskDocument
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Task::class, inversedBy: 'documents')]
|
|
#[ORM\JoinColumn(nullable: false, onDelete: 'CASCADE')]
|
|
#[Groups(['task_document:read', 'task_document:write'])]
|
|
private ?Task $task = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?string $originalName = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?string $fileName = null;
|
|
|
|
#[ORM\Column(length: 100)]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?string $mimeType = null;
|
|
|
|
#[ORM\Column]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?int $size = null;
|
|
|
|
#[ORM\Column(type: 'datetime_immutable')]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?DateTimeImmutable $createdAt = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: User::class)]
|
|
#[ORM\JoinColumn(nullable: true, onDelete: 'SET NULL')]
|
|
#[Groups(['task_document:read', 'task:read'])]
|
|
private ?User $uploadedBy = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getTask(): ?Task
|
|
{
|
|
return $this->task;
|
|
}
|
|
|
|
public function setTask(?Task $task): static
|
|
{
|
|
$this->task = $task;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getOriginalName(): ?string
|
|
{
|
|
return $this->originalName;
|
|
}
|
|
|
|
public function setOriginalName(string $originalName): static
|
|
{
|
|
$this->originalName = $originalName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getFileName(): ?string
|
|
{
|
|
return $this->fileName;
|
|
}
|
|
|
|
public function setFileName(string $fileName): static
|
|
{
|
|
$this->fileName = $fileName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getMimeType(): ?string
|
|
{
|
|
return $this->mimeType;
|
|
}
|
|
|
|
public function setMimeType(string $mimeType): static
|
|
{
|
|
$this->mimeType = $mimeType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSize(): ?int
|
|
{
|
|
return $this->size;
|
|
}
|
|
|
|
public function setSize(int $size): static
|
|
{
|
|
$this->size = $size;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCreatedAt(): ?DateTimeImmutable
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
|
|
public function setCreatedAt(DateTimeImmutable $createdAt): static
|
|
{
|
|
$this->createdAt = $createdAt;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getUploadedBy(): ?User
|
|
{
|
|
return $this->uploadedBy;
|
|
}
|
|
|
|
public function setUploadedBy(?User $uploadedBy): static
|
|
{
|
|
$this->uploadedBy = $uploadedBy;
|
|
|
|
return $this;
|
|
}
|
|
}
|