Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #8 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
131 lines
3.2 KiB
PHP
131 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use ApiPlatform\Doctrine\Orm\Filter\DateFilter;
|
|
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\Patch;
|
|
use ApiPlatform\Metadata\Post;
|
|
use App\Repository\ObservationRepository;
|
|
use DateTimeImmutable;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
#[ApiResource(
|
|
operations: [
|
|
new Get(
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
),
|
|
new GetCollection(
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
),
|
|
new Post(
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
),
|
|
new Patch(
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
),
|
|
new Delete(
|
|
security: "is_granted('ROLE_ADMIN')"
|
|
),
|
|
],
|
|
normalizationContext: [
|
|
'groups' => ['observation:read', 'employee:read'],
|
|
'datetime_format' => 'Y-m-d',
|
|
],
|
|
denormalizationContext: [
|
|
'groups' => ['observation:write'],
|
|
'datetime_format' => 'Y-m-d',
|
|
],
|
|
order: ['month' => 'DESC'],
|
|
paginationEnabled: false,
|
|
)]
|
|
#[ApiFilter(DateFilter::class, properties: ['month'])]
|
|
#[ApiFilter(SearchFilter::class, properties: ['employee' => 'exact'])]
|
|
#[ORM\Entity(repositoryClass: ObservationRepository::class)]
|
|
#[ORM\Table(name: 'observations')]
|
|
#[ORM\UniqueConstraint(name: 'uniq_observation_employee_month', columns: ['employee_id', 'month'])]
|
|
class Observation
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column(type: 'integer')]
|
|
#[Groups(['observation:read'])]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Employee::class)]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
#[Groups(['observation:read', 'observation:write'])]
|
|
private ?Employee $employee = null;
|
|
|
|
#[ORM\Column(type: 'date_immutable')]
|
|
#[Groups(['observation:read', 'observation:write'])]
|
|
private ?DateTimeImmutable $month = null;
|
|
|
|
#[ORM\Column(type: 'text')]
|
|
#[Groups(['observation:read', 'observation:write'])]
|
|
private string $content = '';
|
|
|
|
#[ORM\Column(type: 'datetime_immutable')]
|
|
#[Groups(['observation:read'])]
|
|
private DateTimeImmutable $createdAt;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->createdAt = new DateTimeImmutable();
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getEmployee(): ?Employee
|
|
{
|
|
return $this->employee;
|
|
}
|
|
|
|
public function setEmployee(?Employee $employee): self
|
|
{
|
|
$this->employee = $employee;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getMonth(): ?DateTimeImmutable
|
|
{
|
|
return $this->month;
|
|
}
|
|
|
|
public function setMonth(?DateTimeImmutable $month): self
|
|
{
|
|
$this->month = $month;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getContent(): string
|
|
{
|
|
return $this->content;
|
|
}
|
|
|
|
public function setContent(string $content): self
|
|
{
|
|
$this->content = $content;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCreatedAt(): DateTimeImmutable
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
}
|