Add actors and their roles

This commit is contained in:
thibaud-leclere
2026-01-15 20:35:39 +01:00
parent dcc47fcb65
commit cb57824861
5 changed files with 287 additions and 0 deletions

93
src/Entity/Actor.php Normal file
View File

@@ -0,0 +1,93 @@
<?php
namespace App\Entity;
use App\Repository\ActorRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ActorRepository::class)]
class Actor
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(nullable: true)]
private ?float $popularity = null;
/**
* @var Collection<int, MovieRole>
*/
#[ORM\OneToMany(targetEntity: MovieRole::class, mappedBy: 'actor')]
private Collection $movieRoles;
public function __construct()
{
$this->movieRoles = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getPopularity(): ?float
{
return $this->popularity;
}
public function setPopularity(?float $popularity): static
{
$this->popularity = $popularity;
return $this;
}
/**
* @return Collection<int, MovieRole>
*/
public function getMovieRoles(): Collection
{
return $this->movieRoles;
}
public function addMovieRole(MovieRole $movieRole): static
{
if (!$this->movieRoles->contains($movieRole)) {
$this->movieRoles->add($movieRole);
$movieRole->setActor($this);
}
return $this;
}
public function removeMovieRole(MovieRole $movieRole): static
{
if ($this->movieRoles->removeElement($movieRole)) {
// set the owning side to null (unless already changed)
if ($movieRole->getActor() === $this) {
$movieRole->setActor(null);
}
}
return $this;
}
}

View File

@@ -3,6 +3,8 @@
namespace App\Entity;
use App\Repository\MovieRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MovieRepository::class)]
@@ -22,6 +24,17 @@ class Movie
#[ORM\Column(length: 255)]
private ?string $title = null;
/**
* @var Collection<int, MovieRole>
*/
#[ORM\OneToMany(targetEntity: MovieRole::class, mappedBy: 'movie')]
private Collection $actors;
public function __construct()
{
$this->actors = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
@@ -62,4 +75,34 @@ class Movie
return $this;
}
/**
* @return Collection<int, MovieRole>
*/
public function getActors(): Collection
{
return $this->actors;
}
public function addActor(MovieRole $actor): static
{
if (!$this->actors->contains($actor)) {
$this->actors->add($actor);
$actor->setMovie($this);
}
return $this;
}
public function removeActor(MovieRole $actor): static
{
if ($this->actors->removeElement($actor)) {
// set the owning side to null (unless already changed)
if ($actor->getMovie() === $this) {
$actor->setMovie(null);
}
}
return $this;
}
}

65
src/Entity/MovieRole.php Normal file
View File

@@ -0,0 +1,65 @@
<?php
namespace App\Entity;
use App\Repository\MovieRoleRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MovieRoleRepository::class)]
class MovieRole
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $character = null;
#[ORM\ManyToOne(inversedBy: 'movieRoles')]
private ?Actor $actor = null;
#[ORM\ManyToOne(inversedBy: 'actors')]
private ?Movie $movie = null;
public function getId(): ?int
{
return $this->id;
}
public function getCharacter(): ?string
{
return $this->character;
}
public function setCharacter(string $character): static
{
$this->character = $character;
return $this;
}
public function getActor(): ?Actor
{
return $this->actor;
}
public function setActor(?Actor $actor): static
{
$this->actor = $actor;
return $this;
}
public function getMovie(): ?Movie
{
return $this->movie;
}
public function setMovie(?Movie $movie): static
{
$this->movie = $movie;
return $this;
}
}