<?php
namespace App\Entity;
use App\Entity\model\IGeoLocation;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\ORM\Mapping\OneToMany;
/**
* App\Entity\Stop
*
* @ORM\Table(indexes={
* @ORM\Index(name="Stop_name_idx", columns={"name"})
* }))
* @ORM\Entity(repositoryClass="App\Repository\StopRepository")
* //ORM\Cache(usage="READ_ONLY")
*/
class Stop extends IGeoLocation
{
//TODO add new fields gmaps
const EXTERNAL_API_CODE = '$'; //External api id (eg Gmaps,Here)
const EXTERNAL_API_ID = -2; // External place details (lat, lng)
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(name="id", type="integer")
*/
private $id; //in db is always an integer, but sometime add special code
/**
* @ORM\Column(name="name", type="string", length=100)
*/
private ?string $name;
/**
* @ORM\Column(name="country", type="string", length=3)
*/
private ?string $country;
/**
* @ORM\Column(name="lat", type="float", precision=10)
*/
private ?float $lat;
/**
* @ORM\Column(name="lon", type="float")
*/
private ?float $lon;
/**
* @ORM\Column(name="geoname_id", type="integer", nullable=true)
*/
private ?int $geoname;
/**
* @ORM\Column(name="population", type="integer", nullable=true)
*/
private ?int $population;
/**
* @OneToMany(targetEntity="App\Entity\PictureStop", mappedBy="stop")
* @var PictureStop[]
*/
private $pictureStop;
/**
* stopLang
* @OneToMany(targetEntity="App\Entity\StopLang", mappedBy="stop")
* @var StopLang[]
*/
private $stopLangs;
/**
* alias
* @OneToMany(targetEntity="App\Entity\StopAlias", mappedBy="stop")
* @var StopAlias[]
*/
private $aliases;
/**
* stopInfo
* @ORM\OneToOne(targetEntity="App\Entity\StopInfo", mappedBy="stop")
*/
private $stopInfo;
public function __construct() {
$this->pictureStop = new ArrayCollection();
$this->stopLangs = new ArrayCollection();
}
public function __toString() {
return ''.$this->getId();
}
public static function create(?int $id, ?string $name = null, ?string $country = null, ?float $lat = null, ?float $lon = null) :self{
$o = new self();
$o->id = $id;
$o->name = $name;
$o->country = $country;
$o->lat = $lat;
$o->lon = $lon;
return $o;
}
public static function createGMaps(string $placeId, string $name, bool $prefix = true): self {
$o = new self();
$o->id = ($prefix ? Stop::EXTERNAL_API_CODE : '').$placeId;
$o->name = $name;
return $o;
}
public static function createLatLon(?float $lat, ?float $lon): self {
$o = new self();
$o->lat = $lat;
$o->lon = $lon;
return $o;
}
public static function createLatLonComma(string $latlon): self {
[$lat, $lon] = explode(',', $latlon);
return self::createLatLon($lat, $lon);
}
//check if the stops comes from GMaps (see createGMaps)
public static function isGmapsCode(string $stopId): bool {
return $stopId[0] == self::EXTERNAL_API_CODE;
}
public static function isGmapsId(Stop $stop): bool {
return $stop->getId() == self::EXTERNAL_API_ID;
}
public function getId() {
return $this->id;
}
public function setId($id): self {
$this->id = $id;
return $this;
}
public function setName(?string $name): self {
$this->name = $name;
return $this;
}
public function getName() : ?string {
return $this->name;
}
public function setCountry(?string $country) : self {
$this->country = $country;
return $this;
}
public function getCountry() : ?string {
return $this->country;
}
public function getLat(): ?float {
return $this->lat;
}
public function setLat(?float $lat) {
$this->lat = $lat;
}
public function getLon(): ?float {
return $this->lon;
}
public function setLon(?float $lon) {
$this->lon = $lon;
}
public function setStopLangs($sl) {
$this->stopLangs = $sl;
}
public function getPictureStop() {
return $this->pictureStop;
}
public function getStopLangs() {
return $this->stopLangs;
}
public function getAliases() {
return $this->aliases;
}
public function getStopInfo() {
return $this->stopInfo;
}
public function setStopInfo($stopInfo) {
$this->stopInfo = $stopInfo;
}
public function getGeoname(): ?int {
return $this->geoname;
}
public function setGeoname(?int $geoname) {
$this->geoname = $geoname;
}
public function getPopulation(): ?int {
return $this->population;
}
public function setPopulation(?int $population) {
$this->population = $population;
}
}