<?php
declare(strict_types=1);
namespace App\Entity;
use App\Entity\Course;
use DateInterval;
use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM;
use InvalidArgumentException;
use LogicException;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
*/
class BusStop
{
public const TYPE_FIRST_STOP = 'FirstStop';
public const TYPE_TRIP_START = 'TripStart';
public const TYPE_TRIP_END = 'TripEnd';
public const TYPE_OTHER = 'other';
public const TYPE_NOT_SELECTED = 'NotSelected';
public const TYPES = [
self::TYPE_FIRST_STOP => 'First stop',
self::TYPE_TRIP_START => 'Trip starting point',
self::TYPE_TRIP_END => 'Pick-up location',
self::TYPE_OTHER => 'Other',
self::TYPE_NOT_SELECTED => 'Not selected'
];
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
* @Assert\NotBlank
*/
private $name = '';
/**
* @ORM\Column(type="string", length=255)
* @Assert\Url()
*/
private $mapUrl;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $mapPlusCode;
/**
* @ORM\Column(type="string", length=20)
* @Assert\NotBlank
*/
private $type;
/**
* @ORM\Column(type="string", length=50, nullable=false)
* @Assert\NotBlank
*/
private $codeName;
/**
* @ORM\ManyToOne(targetEntity="Route", inversedBy="busStops")
* @ORM\JoinColumn(nullable=false)
* @Assert\NotNull
*/
private $route;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $destinationTimeFromStart;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $returnTimeFromStart;
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 getMapUrl(): ?string
{
return $this->mapUrl;
}
public function setMapUrl(string $mapUrl): self
{
$this->mapUrl = $mapUrl;
return $this;
}
public function getMapPlusCode(): ?string
{
return $this->mapPlusCode;
}
public function setMapPlusCode(?string $mapPlusCode): self
{
$this->mapPlusCode = $mapPlusCode;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(string $type): self
{
$this->type = $type;
return $this;
}
public function getRoute(): ?Route
{
return $this->route;
}
public function setRoute(?Route $route): self
{
$this->route = $route;
return $this;
}
public function getCodeName(): string
{
return $this->codeName;
}
public function setCodeName(string $codeName): self
{
$this->codeName = $codeName;
return $this;
}
public function getDestinationTimeFromStart(): ?int
{
return $this->destinationTimeFromStart;
}
public function setDestinationTimeFromStart(?int $destinationTimeFromStart): self
{
$this->destinationTimeFromStart = $destinationTimeFromStart;
return $this;
}
public function getReturnTimeFromStart(): ?int
{
return $this->returnTimeFromStart;
}
public function setReturnTimeFromStart(?int $returnTimeFromStart): self
{
$this->returnTimeFromStart = $returnTimeFromStart;
return $this;
}
/**
* time for this bus stop (only time - date is irrelevant)
*
*/
public function getTimeStart(?BusOffer $offer = null): ?DateTimeInterface
{
$diffMin = DateInterval::createFromDateString(
($this->destinationTimeFromStart ?? 60 * $this->id) .
' minutes'
);
if (null === $offer) {
/** @var Course $course */
$course = $this->getRoute()->getCourses()->first();
if (!$course) {
throw new InvalidArgumentException('pages.order.course.errors.notFound');
}
if ($course->getRoute()->getId() !== $this->getRoute()?->getId()) {
throw new LogicException('Error in course. This is bus stop not for this route');
}
return $course->getStartTime()->add($diffMin);
}
if ($offer->getCourse()->getRoute()->getId() !== $this->getRoute()->getId()) {
throw new LogicException('This is bus stop not for this route');
}
return $offer->getStartTime()->add($diffMin);
}
public function getTimeReturn(?BusOffer $offer = null): ?DateTimeInterface
{
if (null === $offer) {
/** @var Course $course */
$course = $this->getRoute()->getCourses()->first();
if (!$course) {
throw new InvalidArgumentException('pages.order.course.errors.notFound');
}
$offer = $course->getOffers()->first();
} else {
$course = $offer->getCourse();
}
if ($course->getRoute()->getId() !== $this->getRoute()->getId()) {
throw new LogicException('This is bus stop not for this route');
}
$diffMin = DateInterval::createFromDateString(
($this->returnTimeFromStart ?? 60 * $this->id) .
' minutes'
);
return $course->getStartTime()->add($diffMin);
}
public function __toString()
{
return $this->getRoute()?->getCodeName() . ' ' . $this->getName();
}
}