mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-10-31 01:12:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			288 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			288 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * Copyright (c) 2010 Google Inc.
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 | |
|  * use this file except in compliance with the License. You may obtain a copy of
 | |
|  * the License at
 | |
|  *
 | |
|  * http://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 | |
|  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 | |
|  * License for the specific language governing permissions and limitations under
 | |
|  * the License.
 | |
|  */
 | |
| 
 | |
| require_once 'service/apiModel.php';
 | |
| require_once 'service/apiService.php';
 | |
| require_once 'service/apiServiceRequest.php';
 | |
| 
 | |
| 
 | |
|   /**
 | |
|    * The "currentLocation" collection of methods.
 | |
|    * Typical usage is:
 | |
|    *  <code>
 | |
|    *   $latitudeService = new apiLatitudeService(...);
 | |
|    *   $currentLocation = $latitudeService->currentLocation;
 | |
|    *  </code>
 | |
|    */
 | |
|   class CurrentLocationServiceResource extends apiServiceResource {
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * Updates or creates the user's current location. (currentLocation.insert)
 | |
|      *
 | |
|      * @param Location $postBody
 | |
|      * @return Location
 | |
|      */
 | |
|     public function insert(Location $postBody, $optParams = array()) {
 | |
|       $params = array('postBody' => $postBody);
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('insert', array($params));
 | |
|       if ($this->useObjects()) {
 | |
|         return new Location($data);
 | |
|       } else {
 | |
|         return $data;
 | |
|       }
 | |
|     }
 | |
|     /**
 | |
|      * Returns the authenticated user's current location. (currentLocation.get)
 | |
|      *
 | |
|      * @param array $optParams Optional parameters. Valid optional parameters are listed below.
 | |
|      *
 | |
|      * @opt_param string granularity Granularity of the requested location.
 | |
|      * @return Location
 | |
|      */
 | |
|     public function get($optParams = array()) {
 | |
|       $params = array();
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('get', array($params));
 | |
|       if ($this->useObjects()) {
 | |
|         return new Location($data);
 | |
|       } else {
 | |
|         return $data;
 | |
|       }
 | |
|     }
 | |
|     /**
 | |
|      * Deletes the authenticated user's current location. (currentLocation.delete)
 | |
|      *
 | |
|      */
 | |
|     public function delete($optParams = array()) {
 | |
|       $params = array();
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('delete', array($params));
 | |
|       return $data;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   /**
 | |
|    * The "location" collection of methods.
 | |
|    * Typical usage is:
 | |
|    *  <code>
 | |
|    *   $latitudeService = new apiLatitudeService(...);
 | |
|    *   $location = $latitudeService->location;
 | |
|    *  </code>
 | |
|    */
 | |
|   class LocationServiceResource extends apiServiceResource {
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * Inserts or updates a location in the user's location history. (location.insert)
 | |
|      *
 | |
|      * @param Location $postBody
 | |
|      * @return Location
 | |
|      */
 | |
|     public function insert(Location $postBody, $optParams = array()) {
 | |
|       $params = array('postBody' => $postBody);
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('insert', array($params));
 | |
|       if ($this->useObjects()) {
 | |
|         return new Location($data);
 | |
|       } else {
 | |
|         return $data;
 | |
|       }
 | |
|     }
 | |
|     /**
 | |
|      * Reads a location from the user's location history. (location.get)
 | |
|      *
 | |
|      * @param string $locationId Timestamp of the location to read (ms since epoch).
 | |
|      * @param array $optParams Optional parameters. Valid optional parameters are listed below.
 | |
|      *
 | |
|      * @opt_param string granularity Granularity of the location to return.
 | |
|      * @return Location
 | |
|      */
 | |
|     public function get($locationId, $optParams = array()) {
 | |
|       $params = array('locationId' => $locationId);
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('get', array($params));
 | |
|       if ($this->useObjects()) {
 | |
|         return new Location($data);
 | |
|       } else {
 | |
|         return $data;
 | |
|       }
 | |
|     }
 | |
|     /**
 | |
|      * Lists the user's location history. (location.list)
 | |
|      *
 | |
|      * @param array $optParams Optional parameters. Valid optional parameters are listed below.
 | |
|      *
 | |
|      * @opt_param string max-results Maximum number of locations to return.
 | |
|      * @opt_param string max-time Maximum timestamp of locations to return (ms since epoch).
 | |
|      * @opt_param string min-time Minimum timestamp of locations to return (ms since epoch).
 | |
|      * @opt_param string granularity Granularity of the requested locations.
 | |
|      * @return LocationFeed
 | |
|      */
 | |
|     public function listLocation($optParams = array()) {
 | |
|       $params = array();
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('list', array($params));
 | |
|       if ($this->useObjects()) {
 | |
|         return new LocationFeed($data);
 | |
|       } else {
 | |
|         return $data;
 | |
|       }
 | |
|     }
 | |
|     /**
 | |
|      * Deletes a location from the user's location history. (location.delete)
 | |
|      *
 | |
|      * @param string $locationId Timestamp of the location to delete (ms since epoch).
 | |
|      */
 | |
|     public function delete($locationId, $optParams = array()) {
 | |
|       $params = array('locationId' => $locationId);
 | |
|       $params = array_merge($params, $optParams);
 | |
|       $data = $this->__call('delete', array($params));
 | |
|       return $data;
 | |
|     }
 | |
|   }
 | |
| 
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * Service definition for Latitude (v1).
 | |
|  *
 | |
|  * <p>
 | |
|  * Lets you read and update your current location and work with your location history
 | |
|  * </p>
 | |
|  *
 | |
|  * <p>
 | |
|  * For more information about this service, see the
 | |
|  * <a href="http://code.google.com/apis/latitude/v1/using_rest.html" target="_blank">API Documentation</a>
 | |
|  * </p>
 | |
|  *
 | |
|  * @author Google, Inc.
 | |
|  */
 | |
| class apiLatitudeService extends apiService {
 | |
|   public $currentLocation;
 | |
|   public $location;
 | |
|   /**
 | |
|    * Constructs the internal representation of the Latitude service.
 | |
|    *
 | |
|    * @param apiClient apiClient
 | |
|    */
 | |
|   public function __construct(apiClient $apiClient) {
 | |
|     $this->rpcPath = '/rpc';
 | |
|     $this->restBasePath = '/latitude/v1/';
 | |
|     $this->version = 'v1';
 | |
|     $this->serviceName = 'latitude';
 | |
| 
 | |
|     $apiClient->addService($this->serviceName, $this->version);
 | |
|     $this->currentLocation = new CurrentLocationServiceResource($this, $this->serviceName, 'currentLocation', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city", "https://www.googleapis.com/auth/latitude.current.best", "https://www.googleapis.com/auth/latitude.current.city"], "request": {"$ref": "LatitudeCurrentlocationResourceJson"}, "response": {"$ref": "LatitudeCurrentlocationResourceJson"}, "httpMethod": "POST", "path": "currentLocation", "id": "latitude.currentLocation.insert"}, "delete": {"id": "latitude.currentLocation.delete", "path": "currentLocation", "httpMethod": "DELETE", "scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city", "https://www.googleapis.com/auth/latitude.current.best", "https://www.googleapis.com/auth/latitude.current.city"]}, "get": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city", "https://www.googleapis.com/auth/latitude.current.best", "https://www.googleapis.com/auth/latitude.current.city"], "parameters": {"granularity": {"type": "string", "location": "query"}}, "response": {"$ref": "LatitudeCurrentlocationResourceJson"}, "httpMethod": "GET", "path": "currentLocation", "id": "latitude.currentLocation.get"}}}', true));
 | |
|     $this->location = new LocationServiceResource($this, $this->serviceName, 'location', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city"], "request": {"$ref": "Location"}, "response": {"$ref": "Location"}, "httpMethod": "POST", "path": "location", "id": "latitude.location.insert"}, "delete": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city"], "parameters": {"locationId": {"required": true, "type": "string", "location": "path"}}, "httpMethod": "DELETE", "path": "location/{locationId}", "id": "latitude.location.delete"}, "list": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city"], "parameters": {"max-results": {"type": "string", "location": "query"}, "max-time": {"type": "string", "location": "query"}, "min-time": {"type": "string", "location": "query"}, "granularity": {"type": "string", "location": "query"}}, "response": {"$ref": "LocationFeed"}, "httpMethod": "GET", "path": "location", "id": "latitude.location.list"}, "get": {"scopes": ["https://www.googleapis.com/auth/latitude.all.best", "https://www.googleapis.com/auth/latitude.all.city"], "parameters": {"locationId": {"required": true, "type": "string", "location": "path"}, "granularity": {"type": "string", "location": "query"}}, "id": "latitude.location.get", "httpMethod": "GET", "path": "location/{locationId}", "response": {"$ref": "Location"}}}}', true));
 | |
|   }
 | |
| }
 | |
| 
 | |
| class Location extends apiModel {
 | |
|   public $kind;
 | |
|   public $altitude;
 | |
|   public $longitude;
 | |
|   public $activityId;
 | |
|   public $latitude;
 | |
|   public $altitudeAccuracy;
 | |
|   public $timestampMs;
 | |
|   public $speed;
 | |
|   public $heading;
 | |
|   public $accuracy;
 | |
|   public function setKind($kind) {
 | |
|     $this->kind = $kind;
 | |
|   }
 | |
|   public function getKind() {
 | |
|     return $this->kind;
 | |
|   }
 | |
|   public function setAltitude($altitude) {
 | |
|     $this->altitude = $altitude;
 | |
|   }
 | |
|   public function getAltitude() {
 | |
|     return $this->altitude;
 | |
|   }
 | |
|   public function setLongitude($longitude) {
 | |
|     $this->longitude = $longitude;
 | |
|   }
 | |
|   public function getLongitude() {
 | |
|     return $this->longitude;
 | |
|   }
 | |
|   public function setActivityId($activityId) {
 | |
|     $this->activityId = $activityId;
 | |
|   }
 | |
|   public function getActivityId() {
 | |
|     return $this->activityId;
 | |
|   }
 | |
|   public function setLatitude($latitude) {
 | |
|     $this->latitude = $latitude;
 | |
|   }
 | |
|   public function getLatitude() {
 | |
|     return $this->latitude;
 | |
|   }
 | |
|   public function setAltitudeAccuracy($altitudeAccuracy) {
 | |
|     $this->altitudeAccuracy = $altitudeAccuracy;
 | |
|   }
 | |
|   public function getAltitudeAccuracy() {
 | |
|     return $this->altitudeAccuracy;
 | |
|   }
 | |
|   public function setTimestampMs($timestampMs) {
 | |
|     $this->timestampMs = $timestampMs;
 | |
|   }
 | |
|   public function getTimestampMs() {
 | |
|     return $this->timestampMs;
 | |
|   }
 | |
|   public function setSpeed($speed) {
 | |
|     $this->speed = $speed;
 | |
|   }
 | |
|   public function getSpeed() {
 | |
|     return $this->speed;
 | |
|   }
 | |
|   public function setHeading($heading) {
 | |
|     $this->heading = $heading;
 | |
|   }
 | |
|   public function getHeading() {
 | |
|     return $this->heading;
 | |
|   }
 | |
|   public function setAccuracy($accuracy) {
 | |
|     $this->accuracy = $accuracy;
 | |
|   }
 | |
|   public function getAccuracy() {
 | |
|     return $this->accuracy;
 | |
|   }
 | |
| }
 | |
| 
 | |
| class LocationFeed extends apiModel {
 | |
|   protected $__itemsType = 'Location';
 | |
|   protected $__itemsDataType = 'array';
 | |
|   public $items;
 | |
|   public $kind;
 | |
|   public function setItems(/* array(Location) */ $items) {
 | |
|     $this->assertIsArray($items, 'Location', __METHOD__);
 | |
|     $this->items = $items;
 | |
|   }
 | |
|   public function getItems() {
 | |
|     return $this->items;
 | |
|   }
 | |
|   public function setKind($kind) {
 | |
|     $this->kind = $kind;
 | |
|   }
 | |
|   public function getKind() {
 | |
|     return $this->kind;
 | |
|   }
 | |
| }
 |