src/Entity/Route.php line 20

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\SonataMediaGallery;
  5. use App\Entity\Traits\EntitySEOTrait;
  6. use App\Entity\Traits\EntityTimestampableTrait;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Gedmo\Mapping\Annotation as Gedmo;
  11. use Gedmo\Sluggable\Util\Urlizer;
  12. use Symfony\Component\Validator\Constraints as Assert;
  13. /**
  14.  * @ORM\Entity
  15.  */
  16. class Route
  17. {
  18.     use EntitySEOTrait;
  19.     use EntityTimestampableTrait;
  20.     /**
  21.      * @ORM\Id
  22.      * @ORM\GeneratedValue
  23.      * @ORM\Column(type="integer")
  24.      */
  25.     private int $id;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=false)
  28.      * @Assert\NotBlank
  29.      * @Assert\Length(max=255)
  30.      */
  31.     private string $name '';
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=false)
  34.      * @Assert\NotBlank
  35.      * @Assert\Length(max=255)
  36.      * @Assert\Regex(
  37.      *     pattern="/^[a-z0-9\p{L}]+$/iu",
  38.      *     message="CodeName can only contain letters (including Polish), numbers, and no spaces or special characters."
  39.      * )
  40.      */
  41.     private string $codeName '';
  42.     /**
  43.      * @ORM\OneToMany(targetEntity="Course", mappedBy="route")
  44.      */
  45.     private Collection $courses;
  46.     /**
  47.      * @ORM\OneToMany(targetEntity="BusStop", mappedBy="route")
  48.      */
  49.     private Collection $busStops;
  50.     /**
  51.      * @ORM\Column(type="string", length=255, nullable=true)
  52.      */
  53.     private ?string $headTitle null;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, unique=true, nullable=true)
  56.      * @Gedmo\Slug(fields={"name"})
  57.      */
  58.     private ?string $slug null;
  59.     /**
  60.      * @ORM\Column(type="text", nullable=true)
  61.      */
  62.     private ?string $seoBody null;
  63.     /**
  64.      * @ORM\OneToOne(targetEntity="SonataMediaGallery", cascade={"persist", "remove"})
  65.      */
  66.     private ?SonataMediaGallery $gallery null;
  67.     /**
  68.      * @ORM\Column(type="boolean", options={"default": true})
  69.      */
  70.     private bool $isVisible true;
  71.     public function __construct()
  72.     {
  73.         $this->courses = new ArrayCollection();
  74.         $this->busStops = new ArrayCollection();
  75.     }
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getName(): string
  81.     {
  82.         return $this->name;
  83.     }
  84.     public function setName(string $name): self
  85.     {
  86.         $this->name $name;
  87.         return $this;
  88.     }
  89.     public function getCodeName(): string
  90.     {
  91.         return $this->codeName;
  92.     }
  93.     public function setCodeName(string $codeName): self
  94.     {
  95.         $this->codeName $codeName;
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection|Course[]
  100.      */
  101.     public function getCourses(): Collection
  102.     {
  103.         return $this->courses;
  104.     }
  105.     public function addCourse(Course $course): self
  106.     {
  107.         if (!$this->courses->contains($course)) {
  108.             $this->courses[] = $course;
  109.             $course->setRoute($this);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeCourse(Course $course): self
  114.     {
  115.         if ($this->courses->removeElement($course)) {
  116.             // set the owning side to null (unless already changed)
  117.             if ($course->getRoute() === $this) {
  118.                 $course->setRoute(null);
  119.             }
  120.         }
  121.         return $this;
  122.     }
  123.     /**
  124.      * @return Collection|BusStop[]
  125.      */
  126.     public function getBusStops(): Collection
  127.     {
  128.         return $this->busStops;
  129.     }
  130.     public function addBusStop(BusStop $busStop): self
  131.     {
  132.         if (!$this->busStops->contains($busStop)) {
  133.             $this->busStops[] = $busStop;
  134.             $busStop->setRoute($this);
  135.         }
  136.         return $this;
  137.     }
  138.     public function removeBusStop(BusStop $busStop): self
  139.     {
  140.         if ($this->busStops->removeElement($busStop)) {
  141.             // set the owning side to null (unless already changed)
  142.             if ($busStop->getRoute() === $this) {
  143.                 $busStop->setRoute(null);
  144.             }
  145.         }
  146.         return $this;
  147.     }
  148.     public function getBusStopByType(string $type): ?BusStop
  149.     {
  150.         $result $this->busStops->filter(fn ($busStop) => $busStop->getType() === $type);
  151.         return $result->count() > $result->first() : null;
  152.     }
  153.     public function getTripStartStop(): ?BusStop
  154.     {
  155.         return $this->getBusStopByType(BusStop::TYPE_TRIP_START);
  156.     }
  157.     public function getTripEndStop(): ?BusStop
  158.     {
  159.         return $this->getBusStopByType(BusStop::TYPE_TRIP_END);
  160.     }
  161.     public function getHeadTitle(): ?string
  162.     {
  163.         return $this->headTitle;
  164.     }
  165.     public function setHeadTitle(?string $headTitle): void
  166.     {
  167.         $this->headTitle $headTitle;
  168.     }
  169.     public function getSlug(): ?string
  170.     {
  171.         if ($this->slug === null && $this->name !== null) {
  172.             $this->slug Urlizer::urlize($this->name);
  173.         }
  174.         return $this->slug;
  175.     }
  176.     public function setSlug(?string $slug): void
  177.     {
  178.         $this->slug $slug;
  179.     }
  180.     public function getSeoBody(): ?string
  181.     {
  182.         return $this->seoBody;
  183.     }
  184.     public function setSeoBody(?string $seoBody): void
  185.     {
  186.         $this->seoBody $seoBody;
  187.     }
  188.     public function getGallery(): SonataMediaGallery
  189.     {
  190.         if (null === $this->gallery) {
  191.             $this->gallery = new SonataMediaGallery();
  192.             $this->gallery->setName("Transfer gallery for " $this->getName());
  193.             $this->gallery->setContext('default');
  194.         }
  195.         return $this->gallery;
  196.     }
  197.     public function setGallery(?SonataMediaGallery $gallery): void
  198.     {
  199.         $this->gallery $gallery;
  200.     }
  201.     public function isVisible(): bool
  202.     {
  203.         return $this->isVisible;
  204.     }
  205.     public function setIsVisible(bool $isVisible): self
  206.     {
  207.         $this->isVisible $isVisible;
  208.         return $this;
  209.     }
  210.     public function __toString(): string
  211.     {
  212.         return $this->getCodeName() . ': ' $this->getName();
  213.     }
  214. }