src/Entity/BusStop.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\Course;
  5. use DateInterval;
  6. use DateTimeInterface;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use InvalidArgumentException;
  9. use LogicException;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. /**
  12.  * @ORM\Entity
  13.  */
  14. class BusStop
  15. {
  16.     public const TYPE_FIRST_STOP 'FirstStop';
  17.     public const TYPE_TRIP_START 'TripStart';
  18.     public const TYPE_TRIP_END 'TripEnd';
  19.     public const TYPE_OTHER 'other';
  20.     public const TYPE_NOT_SELECTED 'NotSelected';
  21.     public const TYPES = [
  22.         self::TYPE_FIRST_STOP => 'First stop',
  23.         self::TYPE_TRIP_START => 'Trip starting point',
  24.         self::TYPE_TRIP_END => 'Pick-up location',
  25.         self::TYPE_OTHER => 'Other',
  26.         self::TYPE_NOT_SELECTED => 'Not selected'
  27.     ];
  28.     /**
  29.      * @ORM\Id
  30.      * @ORM\GeneratedValue
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     private $id;
  34.     /**
  35.      * @ORM\Column(type="string", length=255)
  36.      * @Assert\NotBlank
  37.      */
  38.     private $name '';
  39.     /**
  40.      * @ORM\Column(type="string", length=255)
  41.      * @Assert\Url()
  42.      */
  43.     private $mapUrl;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $mapPlusCode;
  48.     /**
  49.      * @ORM\Column(type="string", length=20)
  50.      * @Assert\NotBlank
  51.      */
  52.     private $type;
  53.     /**
  54.     * @ORM\Column(type="string", length=50, nullable=false)
  55.     * @Assert\NotBlank
  56.     */
  57.     private $codeName;
  58.     /**
  59.      * @ORM\ManyToOne(targetEntity="Route", inversedBy="busStops")
  60.      * @ORM\JoinColumn(nullable=false)
  61.      * @Assert\NotNull
  62.      */
  63.     private $route;
  64.     /**
  65.     * @ORM\Column(type="integer", nullable=true)
  66.     */
  67.     private $destinationTimeFromStart;
  68.     /**
  69.      * @ORM\Column(type="integer", nullable=true)
  70.      */
  71.     private $returnTimeFromStart;
  72.     public function getId(): ?int
  73.     {
  74.         return $this->id;
  75.     }
  76.     public function getName(): ?string
  77.     {
  78.         return $this->name;
  79.     }
  80.     public function setName(string $name): self
  81.     {
  82.         $this->name $name;
  83.         return $this;
  84.     }
  85.     public function getMapUrl(): ?string
  86.     {
  87.         return $this->mapUrl;
  88.     }
  89.     public function setMapUrl(string $mapUrl): self
  90.     {
  91.         $this->mapUrl $mapUrl;
  92.         return $this;
  93.     }
  94.     public function getMapPlusCode(): ?string
  95.     {
  96.         return $this->mapPlusCode;
  97.     }
  98.     public function setMapPlusCode(?string $mapPlusCode): self
  99.     {
  100.         $this->mapPlusCode $mapPlusCode;
  101.         return $this;
  102.     }
  103.     public function getType(): ?string
  104.     {
  105.         return $this->type;
  106.     }
  107.     public function setType(string $type): self
  108.     {
  109.         $this->type $type;
  110.         return $this;
  111.     }
  112.     public function getRoute(): ?Route
  113.     {
  114.         return $this->route;
  115.     }
  116.     public function setRoute(?Route $route): self
  117.     {
  118.         $this->route $route;
  119.         return $this;
  120.     }
  121.     public function getCodeName(): string
  122.     {
  123.         return $this->codeName;
  124.     }
  125.     public function setCodeName(string $codeName): self
  126.     {
  127.         $this->codeName $codeName;
  128.         return $this;
  129.     }
  130.     public function getDestinationTimeFromStart(): ?int
  131.     {
  132.         return $this->destinationTimeFromStart;
  133.     }
  134.     public function setDestinationTimeFromStart(?int $destinationTimeFromStart): self
  135.     {
  136.         $this->destinationTimeFromStart $destinationTimeFromStart;
  137.         return $this;
  138.     }
  139.     public function getReturnTimeFromStart(): ?int
  140.     {
  141.         return $this->returnTimeFromStart;
  142.     }
  143.     public function setReturnTimeFromStart(?int $returnTimeFromStart): self
  144.     {
  145.         $this->returnTimeFromStart $returnTimeFromStart;
  146.         return $this;
  147.     }
  148.     /**
  149.      * time for this bus stop (only time - date is irrelevant)
  150.      *
  151.      */
  152.     public function getTimeStart(?BusOffer $offer null): ?DateTimeInterface
  153.     {
  154.         $diffMin DateInterval::createFromDateString(
  155.             ($this->destinationTimeFromStart ?? 60 $this->id) .
  156.             ' minutes'
  157.         );
  158.         if (null === $offer) {
  159.             /** @var Course $course */
  160.             $course $this->getRoute()->getCourses()->first();
  161.             if (!$course) {
  162.                 throw new InvalidArgumentException('pages.order.course.errors.notFound');
  163.             }
  164.             if ($course->getRoute()->getId() !== $this->getRoute()?->getId()) {
  165.                 throw new LogicException('Error in course. This is bus stop not for this route');
  166.             }
  167.             return $course->getStartTime()->add($diffMin);
  168.         }
  169.         if ($offer->getCourse()->getRoute()->getId() !== $this->getRoute()->getId()) {
  170.             throw new LogicException('This is bus stop not for this route');
  171.         }
  172.         return $offer->getStartTime()->add($diffMin);
  173.     }
  174.     public function getTimeReturn(?BusOffer $offer null): ?DateTimeInterface
  175.     {
  176.         if (null === $offer) {
  177.             /** @var Course $course */
  178.             $course $this->getRoute()->getCourses()->first();
  179.             if (!$course) {
  180.                 throw new InvalidArgumentException('pages.order.course.errors.notFound');
  181.             }
  182.             $offer $course->getOffers()->first();
  183.         } else {
  184.             $course $offer->getCourse();
  185.         }
  186.         if ($course->getRoute()->getId() !== $this->getRoute()->getId()) {
  187.             throw new LogicException('This is bus stop not for this route');
  188.         }
  189.         $diffMin DateInterval::createFromDateString(
  190.             ($this->returnTimeFromStart ?? 60 $this->id) .
  191.             ' minutes'
  192.         );
  193.         return $course->getStartTime()->add($diffMin);
  194.     }
  195.     public function __toString()
  196.     {
  197.         return $this->getRoute()?->getCodeName() . ' ' $this->getName();
  198.     }
  199. }