src/Entity/Stop.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\model\IGeoLocation;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Doctrine\ORM\Mapping\OneToMany;
  7. /**
  8.  * App\Entity\Stop
  9.  *
  10.  * @ORM\Table(indexes={
  11.  *     @ORM\Index(name="Stop_name_idx", columns={"name"})
  12.  * }))
  13.  * @ORM\Entity(repositoryClass="App\Repository\StopRepository")
  14.  * //ORM\Cache(usage="READ_ONLY")
  15.  */
  16. class Stop extends IGeoLocation
  17. {
  18.     //TODO add new fields gmaps
  19.     const EXTERNAL_API_CODE '$'//External api id (eg Gmaps,Here)
  20.     const EXTERNAL_API_ID = -2// External place details (lat, lng)
  21.     /**
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      * @ORM\Column(name="id", type="integer")
  25.      */
  26.     private $id//in db is always an integer, but sometime add special code
  27.     /**
  28.      * @ORM\Column(name="name", type="string", length=100)
  29.      */
  30.     private ?string $name;
  31.     /**
  32.      * @ORM\Column(name="country", type="string", length=3)
  33.      */
  34.     private ?string $country;
  35.     
  36.     /**
  37.      * @ORM\Column(name="lat", type="float", precision=10)
  38.      */
  39.     private ?float $lat;
  40.     /**
  41.      * @ORM\Column(name="lon", type="float")
  42.      */
  43.     private ?float $lon;
  44.     /**
  45.      * @ORM\Column(name="geoname_id", type="integer", nullable=true)
  46.      */
  47.     private ?int $geoname;
  48.     /**
  49.      * @ORM\Column(name="population", type="integer", nullable=true)
  50.      */
  51.     private ?int $population;
  52.     /**
  53.      * @OneToMany(targetEntity="App\Entity\PictureStop", mappedBy="stop")
  54.      * @var PictureStop[]
  55.      */
  56.     private $pictureStop;
  57.     /**
  58.      * stopLang
  59.      * @OneToMany(targetEntity="App\Entity\StopLang", mappedBy="stop")
  60.      * @var StopLang[]
  61.      */
  62.     private $stopLangs;
  63.     /**
  64.      * alias
  65.      * @OneToMany(targetEntity="App\Entity\StopAlias", mappedBy="stop")
  66.      * @var StopAlias[]
  67.      */
  68.     private $aliases;
  69.     /**
  70.      * stopInfo
  71.      * @ORM\OneToOne(targetEntity="App\Entity\StopInfo", mappedBy="stop")
  72.      */
  73.     private $stopInfo;
  74.     public function __construct() {
  75.         $this->pictureStop = new ArrayCollection();
  76.         $this->stopLangs = new ArrayCollection();
  77.     }
  78.     public function __toString() {
  79.         return ''.$this->getId();
  80.     }
  81.     public static function create(?int $id, ?string $name null, ?string $country null, ?float $lat null, ?float $lon null) :self{
  82.         $o = new self();
  83.         $o->id $id;
  84.         $o->name $name;
  85.         $o->country $country;
  86.         $o->lat $lat;
  87.         $o->lon $lon;
  88.         return $o;
  89.     }
  90.     public static function createGMaps(string $placeIdstring $namebool $prefix true): self {
  91.         $o = new self();
  92.         $o->id = ($prefix Stop::EXTERNAL_API_CODE '').$placeId;
  93.         $o->name $name;
  94.         return $o;
  95.     }
  96.     public static function createLatLon(?float $lat, ?float $lon): self {
  97.         $o = new self();
  98.         $o->lat $lat;
  99.         $o->lon $lon;
  100.         return $o;
  101.     }
  102.     public static function createLatLonComma(string $latlon): self {
  103.         [$lat$lon] = explode(','$latlon);
  104.         return self::createLatLon($lat$lon);
  105.     }
  106.     //check if the stops comes from GMaps (see createGMaps)
  107.     public static function isGmapsCode(string $stopId): bool {
  108.         return $stopId[0] == self::EXTERNAL_API_CODE;
  109.     }
  110.     public static function isGmapsId(Stop $stop): bool {
  111.         return $stop->getId() == self::EXTERNAL_API_ID;
  112.     }
  113.     public function getId() {
  114.         return $this->id;
  115.     }
  116.     public function setId($id): self {
  117.         $this->id $id;
  118.         return $this;
  119.     }
  120.     public function setName(?string $name): self {
  121.         $this->name $name;
  122.         return $this;
  123.     }
  124.     public function getName() : ?string {
  125.         return $this->name;
  126.     }
  127.     public function setCountry(?string $country) : self {
  128.         $this->country $country;
  129.         return $this;
  130.     }
  131.     public function getCountry() : ?string {
  132.         return $this->country;
  133.     }
  134.     public function getLat(): ?float {
  135.         return $this->lat;
  136.     }
  137.     public function setLat(?float $lat) {
  138.         $this->lat $lat;
  139.     }
  140.     public function getLon(): ?float {
  141.         return $this->lon;
  142.     }
  143.     public function setLon(?float $lon) {
  144.         $this->lon $lon;
  145.     }
  146.     public function setStopLangs($sl) {
  147.         $this->stopLangs $sl;
  148.     }
  149.     public function getPictureStop() {
  150.         return $this->pictureStop;
  151.     }
  152.     public function getStopLangs() {
  153.         return $this->stopLangs;
  154.     }
  155.     public function getAliases() {
  156.         return $this->aliases;
  157.     }
  158.     public function getStopInfo() {
  159.         return $this->stopInfo;
  160.     }
  161.     public function setStopInfo($stopInfo) {
  162.         $this->stopInfo $stopInfo;
  163.     }
  164.     public function getGeoname(): ?int {
  165.         return $this->geoname;
  166.     }
  167.     public function setGeoname(?int $geoname) {
  168.         $this->geoname $geoname;
  169.     }
  170.     public function getPopulation(): ?int {
  171.         return $this->population;
  172.     }
  173.     public function setPopulation(?int $population) {
  174.         $this->population $population;
  175.     }
  176. }