<?php
declare(strict_types=1);
namespace App\Entity;
use App\Entity\SonataMediaGallery;
use App\Entity\Traits\EntitySEOTrait;
use App\Entity\Traits\EntityTimestampableTrait;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Gedmo\Sluggable\Util\Urlizer;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
*/
class Route
{
use EntitySEOTrait;
use EntityTimestampableTrait;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private int $id;
/**
* @ORM\Column(type="string", length=255, nullable=false)
* @Assert\NotBlank
* @Assert\Length(max=255)
*/
private string $name = '';
/**
* @ORM\Column(type="string", length=255, nullable=false)
* @Assert\NotBlank
* @Assert\Length(max=255)
* @Assert\Regex(
* pattern="/^[a-z0-9\p{L}]+$/iu",
* message="CodeName can only contain letters (including Polish), numbers, and no spaces or special characters."
* )
*/
private string $codeName = '';
/**
* @ORM\OneToMany(targetEntity="Course", mappedBy="route")
*/
private Collection $courses;
/**
* @ORM\OneToMany(targetEntity="BusStop", mappedBy="route")
*/
private Collection $busStops;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private ?string $headTitle = null;
/**
* @ORM\Column(type="string", length=255, unique=true, nullable=true)
* @Gedmo\Slug(fields={"name"})
*/
private ?string $slug = null;
/**
* @ORM\Column(type="text", nullable=true)
*/
private ?string $seoBody = null;
/**
* @ORM\OneToOne(targetEntity="SonataMediaGallery", cascade={"persist", "remove"})
*/
private ?SonataMediaGallery $gallery = null;
/**
* @ORM\Column(type="boolean", options={"default": true})
*/
private bool $isVisible = true;
public function __construct()
{
$this->courses = new ArrayCollection();
$this->busStops = 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 getCodeName(): string
{
return $this->codeName;
}
public function setCodeName(string $codeName): self
{
$this->codeName = $codeName;
return $this;
}
/**
* @return Collection|Course[]
*/
public function getCourses(): Collection
{
return $this->courses;
}
public function addCourse(Course $course): self
{
if (!$this->courses->contains($course)) {
$this->courses[] = $course;
$course->setRoute($this);
}
return $this;
}
public function removeCourse(Course $course): self
{
if ($this->courses->removeElement($course)) {
// set the owning side to null (unless already changed)
if ($course->getRoute() === $this) {
$course->setRoute(null);
}
}
return $this;
}
/**
* @return Collection|BusStop[]
*/
public function getBusStops(): Collection
{
return $this->busStops;
}
public function addBusStop(BusStop $busStop): self
{
if (!$this->busStops->contains($busStop)) {
$this->busStops[] = $busStop;
$busStop->setRoute($this);
}
return $this;
}
public function removeBusStop(BusStop $busStop): self
{
if ($this->busStops->removeElement($busStop)) {
// set the owning side to null (unless already changed)
if ($busStop->getRoute() === $this) {
$busStop->setRoute(null);
}
}
return $this;
}
public function getBusStopByType(string $type): ?BusStop
{
$result = $this->busStops->filter(fn ($busStop) => $busStop->getType() === $type);
return $result->count() > 0 ? $result->first() : null;
}
public function getTripStartStop(): ?BusStop
{
return $this->getBusStopByType(BusStop::TYPE_TRIP_START);
}
public function getTripEndStop(): ?BusStop
{
return $this->getBusStopByType(BusStop::TYPE_TRIP_END);
}
public function getHeadTitle(): ?string
{
return $this->headTitle;
}
public function setHeadTitle(?string $headTitle): void
{
$this->headTitle = $headTitle;
}
public function getSlug(): ?string
{
if ($this->slug === null && $this->name !== null) {
$this->slug = Urlizer::urlize($this->name);
}
return $this->slug;
}
public function setSlug(?string $slug): void
{
$this->slug = $slug;
}
public function getSeoBody(): ?string
{
return $this->seoBody;
}
public function setSeoBody(?string $seoBody): void
{
$this->seoBody = $seoBody;
}
public function getGallery(): SonataMediaGallery
{
if (null === $this->gallery) {
$this->gallery = new SonataMediaGallery();
$this->gallery->setName("Transfer gallery for " . $this->getName());
$this->gallery->setContext('default');
}
return $this->gallery;
}
public function setGallery(?SonataMediaGallery $gallery): void
{
$this->gallery = $gallery;
}
public function isVisible(): bool
{
return $this->isVisible;
}
public function setIsVisible(bool $isVisible): self
{
$this->isVisible = $isVisible;
return $this;
}
public function __toString(): string
{
return $this->getCodeName() . ': ' . $this->getName();
}
}