<?php
namespace App\Entity;
use App\Repository\ProjectRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ORM\Entity(repositoryClass: ProjectRepository::class)]
class Project
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column]
private ?\DateTimeImmutable $createdAt = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $brief = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $preview_image = null;
#[ORM\Column]
private ?bool $isFinish = null;
#[ORM\Column(nullable: true)]
private ?\DateTimeImmutable $updatedAt = null;
#[ORM\ManyToOne]
private ?Status $status = null;
#[ORM\OneToMany(mappedBy: 'project', targetEntity: ProjectDeliverable::class, cascade: ['persist','remove'])]
private Collection $projectDeliverables;
#[ORM\ManyToMany(targetEntity: User::class, inversedBy: 'projects')]
private Collection $user;
#[ORM\OneToMany(mappedBy: 'projet', targetEntity: Logs::class, cascade:['remove'])]
#[ORM\OrderBy(['createdAt'=>'DESC'])]
private Collection $logs;
#[ORM\ManyToMany(targetEntity: User::class, inversedBy: 'adminProjects')]
#[ORM\JoinTable('project_admin')]
private Collection $admin;
#[ORM\ManyToMany(targetEntity: User::class, inversedBy: 'contact')]
#[ORM\JoinTable('project_contact')]
private Collection $contact;
#[ORM\Column]
private ?bool $notification_active = null;
public function __construct()
{
$this->projectDeliverables = new ArrayCollection();
$this->user = new ArrayCollection();
$this->logs = new ArrayCollection();
$this->admin = new ArrayCollection();
$this->contact = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getCreatedAt(): ?\DateTimeImmutable
{
return $this->createdAt;
}
public function setCreatedAt(\DateTimeImmutable $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getBrief(): ?string
{
return $this->brief;
}
public function setBrief(?string $brief): self
{
$this->brief = $brief;
return $this;
}
public function getPreviewImage(): ?string
{
return $this->preview_image;
}
public function setPreviewImage(?string $preview_image): self
{
$this->preview_image = $preview_image;
return $this;
}
public function isIsFinish(): ?bool
{
return $this->isFinish;
}
public function setIsFinish(bool $isFinish): self
{
$this->isFinish = $isFinish;
return $this;
}
public function getUpdatedAt(): ?\DateTimeImmutable
{
return $this->updatedAt;
}
public function setUpdatedAt(?\DateTimeImmutable $updatedAt): self
{
$this->updatedAt = $updatedAt;
return $this;
}
public function getStatus(): ?Status
{
return $this->status;
}
public function setStatus(?Status $status): self
{
$this->status = $status;
return $this;
}
/**
* @return Collection<int, ProjectDeliverable>
*/
public function getProjectDeliverables(): Collection
{
return $this->projectDeliverables;
}
public function addProjectDeliverable(ProjectDeliverable $projectDeliverable): self
{
if (!$this->projectDeliverables->contains($projectDeliverable)) {
$this->projectDeliverables->add($projectDeliverable);
$projectDeliverable->setProject($this);
}
return $this;
}
public function removeProjectDeliverable(ProjectDeliverable $projectDeliverable): self
{
if ($this->projectDeliverables->removeElement($projectDeliverable)) {
// set the owning side to null (unless already changed)
if ($projectDeliverable->getProject() === $this) {
$projectDeliverable->setProject(null);
}
}
return $this;
}
/**
* @return Collection<int, User>
*/
public function getUser(): Collection
{
return $this->user;
}
public function addUser(User $user): self
{
if (!$this->user->contains($user)) {
$this->user->add($user);
}
return $this;
}
public function removeUser(User $user): self
{
$this->user->removeElement($user);
return $this;
}
/**
* @return Collection<int, Logs>
*/
public function getLogs(): Collection
{
return $this->logs;
}
public function addLog(Logs $log): self
{
if (!$this->logs->contains($log)) {
$this->logs->add($log);
$log->setProjet($this);
}
return $this;
}
public function removeLog(Logs $log): self
{
if ($this->logs->removeElement($log)) {
// set the owning side to null (unless already changed)
if ($log->getProjet() === $this) {
$log->setProjet(null);
}
}
return $this;
}
/**
* @return Collection<int, User>
*/
public function getAdmin(): Collection
{
return $this->admin;
}
public function addAdmin(User $admin): self
{
if (!$this->admin->contains($admin)) {
$this->admin->add($admin);
}
return $this;
}
public function removeAdmin(User $admin): self
{
$this->admin->removeElement($admin);
return $this;
}
/**
* @return Collection<int, User>
*/
public function getContact(): Collection
{
return $this->contact;
}
public function addContact(User $contact): self
{
if (!$this->contact->contains($contact)) {
$this->contact->add($contact);
}
return $this;
}
public function removeContact(User $contact): self
{
$this->contact->removeElement($contact);
return $this;
}
public function isNotificationActive(): ?bool
{
return $this->notification_active;
}
public function setNotificationActive(bool $notification_active): self
{
$this->notification_active = $notification_active;
return $this;
}
}