123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- defined('GNUSOCIAL') || die();
- class Notice_location extends Managed_DataObject
- {
- public $__table = 'notice_location';
- public $notice_id;
- public $lat;
- public $lon;
- public $location_id;
- public $location_ns;
- public $modified;
- public static function schemaDef()
- {
- return array(
- 'fields' => array(
- 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the reply'),
- 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'),
- 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'),
- 'location_id' => array('type' => 'int', 'description' => 'location id if possible'),
- 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
- ),
- 'primary key' => array('notice_id'),
- 'foreign keys' => array(
- 'notice_location_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
- ),
- 'indexes' => array(
- 'notice_location_location_id_idx' => array('location_id'),
- ),
- );
- }
- public static function locFromStored(Notice $stored)
- {
- $loc = new Notice_location();
- $loc->notice_id = $stored->getID();
- if (!$loc->find(true)) {
- throw new NoResultException($loc);
- }
- return $loc->asLocation();
- }
- public static function fromLocation(Location $location)
- {
- $notloc = new Notice_location();
- $notloc->lat = $location->lat;
- $notloc->lon = $location->lon;
- $notloc->location_ns = $location->location_ns;
- $notloc->location_id = $location->location_id;
- return $notloc;
- }
- public function asLocation()
- {
- $location = null;
- if (!empty($this->location_id) && !empty($this->location_ns)) {
- $location = Location::fromId($this->location_id, $this->location_ns);
- }
- if (is_null($location)) {
- $location = Location::fromLatLon($this->lat, $this->lon);
- }
- if (is_null($location)) {
- throw new ServerException('Location could not be looked up from existing data.');
- }
- return $location;
- }
- }
|