2016-03-07 20:03:09 +08:00
|
|
|
CREATE TYPE cdb_dataservices_server.simple_route AS (
|
|
|
|
shape geometry(LineString,4326),
|
|
|
|
length real,
|
|
|
|
duration integer
|
|
|
|
);
|
|
|
|
|
2016-05-23 23:26:43 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._cdb_mapzen_route_with_waypoints(
|
2016-03-07 20:03:09 +08:00
|
|
|
username TEXT,
|
|
|
|
orgname TEXT,
|
2016-05-23 23:26:43 +08:00
|
|
|
waypoints geometry(Point, 4326)[],
|
2016-03-07 20:03:09 +08:00
|
|
|
mode TEXT,
|
|
|
|
options text[] DEFAULT ARRAY[]::text[],
|
|
|
|
units text DEFAULT 'kilometers')
|
|
|
|
RETURNS cdb_dataservices_server.simple_route AS $$
|
|
|
|
import json
|
|
|
|
from cartodb_services.mapzen import MapzenRouting, MapzenRoutingResponse
|
|
|
|
from cartodb_services.mapzen.types import polyline_to_linestring
|
|
|
|
from cartodb_services.metrics import QuotaService
|
|
|
|
from cartodb_services.tools import Coordinate
|
2016-08-02 23:28:48 +08:00
|
|
|
from cartodb_services.tools import Logger,LoggerConfig
|
2016-03-07 20:03:09 +08:00
|
|
|
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
|
|
|
user_routing_config = GD["user_routing_config_{0}".format(username)]
|
|
|
|
|
2016-08-03 23:37:40 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_logger_config()")
|
|
|
|
logger_config = GD["logger_config"]
|
2016-08-02 23:28:48 +08:00
|
|
|
logger = Logger(logger_config)
|
2016-08-02 01:04:56 +08:00
|
|
|
|
2016-03-07 20:03:09 +08:00
|
|
|
quota_service = QuotaService(user_routing_config, redis_conn)
|
2016-04-14 23:50:46 +08:00
|
|
|
if not quota_service.check_user_quota():
|
2016-08-02 01:04:56 +08:00
|
|
|
raise Exception('You have reached the limit of your quota')
|
2016-03-07 20:03:09 +08:00
|
|
|
|
|
|
|
try:
|
2017-03-06 22:25:11 +08:00
|
|
|
client = MapzenRouting(user_routing_config.mapzen_api_key, logger, user_routing_config.mapzen_service_params)
|
2016-03-07 20:03:09 +08:00
|
|
|
|
2016-05-23 23:26:43 +08:00
|
|
|
if not waypoints or len(waypoints) < 2:
|
2016-08-04 23:48:11 +08:00
|
|
|
logger.info("Empty origin or destination")
|
2016-03-22 22:19:03 +08:00
|
|
|
quota_service.increment_empty_service_use()
|
|
|
|
return [None, None, None]
|
|
|
|
|
2016-05-23 23:26:43 +08:00
|
|
|
waypoint_coords = []
|
|
|
|
for waypoint in waypoints:
|
|
|
|
lat = plpy.execute("SELECT ST_Y('%s') AS lat" % waypoint)[0]['lat']
|
|
|
|
lon = plpy.execute("SELECT ST_X('%s') AS lon" % waypoint)[0]['lon']
|
|
|
|
waypoint_coords.append(Coordinate(lon,lat))
|
2016-03-07 20:03:09 +08:00
|
|
|
|
2016-05-23 23:26:43 +08:00
|
|
|
resp = client.calculate_route_point_to_point(waypoint_coords, mode, options, units)
|
2016-03-18 05:54:19 +08:00
|
|
|
if resp and resp.shape:
|
2016-03-07 20:03:09 +08:00
|
|
|
shape_linestring = polyline_to_linestring(resp.shape)
|
2016-03-22 22:19:03 +08:00
|
|
|
if shape_linestring:
|
|
|
|
quota_service.increment_success_service_use()
|
|
|
|
return [shape_linestring, resp.length, resp.duration]
|
|
|
|
else:
|
|
|
|
quota_service.increment_empty_service_use()
|
|
|
|
return [None, None, None]
|
2016-03-07 20:03:09 +08:00
|
|
|
else:
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_empty_service_use()
|
2016-03-22 22:19:03 +08:00
|
|
|
return [None, None, None]
|
2016-03-07 20:03:09 +08:00
|
|
|
except BaseException as e:
|
2016-08-02 01:04:56 +08:00
|
|
|
import sys
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_failed_service_use()
|
2016-08-03 00:59:13 +08:00
|
|
|
logger.error('Error trying to calculate mapzen routing', sys.exc_info(), data={"username": username, "orgname": orgname})
|
|
|
|
raise Exception('Error trying to calculate mapzen routing')
|
2016-03-07 20:03:09 +08:00
|
|
|
finally:
|
2016-03-07 22:40:37 +08:00
|
|
|
quota_service.increment_total_service_use()
|
2017-11-08 00:23:05 +08:00
|
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER STABLE PARALLEL RESTRICTED;
|