2016-02-11 05:26:32 +08:00
|
|
|
-- Get the Redis configuration from the _conf table --
|
2016-02-16 20:22:45 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._get_isolines_routing_config(username text, orgname text)
|
2016-02-11 00:17:53 +08:00
|
|
|
RETURNS boolean AS $$
|
2016-02-16 20:22:45 +08:00
|
|
|
cache_key = "user_isolines_routing_config_{0}".format(username)
|
2016-02-11 00:17:53 +08:00
|
|
|
if cache_key in GD:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
import json
|
2016-02-16 20:22:45 +08:00
|
|
|
from cartodb_services.metrics import IsolinesRoutingConfig
|
2016-02-11 00:17:53 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metadata_connection']
|
|
|
|
heremaps_conf_json = plpy.execute("SELECT cartodb.CDB_Conf_GetConf('heremaps_conf') as heremaps_conf", 1)[0]['heremaps_conf']
|
|
|
|
if not heremaps_conf_json:
|
|
|
|
heremaps_app_id = None
|
|
|
|
heremaps_app_code = None
|
|
|
|
else:
|
|
|
|
heremaps_conf = json.loads(heremaps_conf_json)
|
|
|
|
heremaps_app_id = heremaps_conf['app_id']
|
|
|
|
heremaps_app_code = heremaps_conf['app_code']
|
2016-02-16 20:22:45 +08:00
|
|
|
routing_config = IsolinesRoutingConfig(redis_conn, username, orgname, heremaps_app_id, heremaps_app_code)
|
2016-02-11 00:17:53 +08:00
|
|
|
# --Think about the security concerns with this kind of global cache, it should be only available
|
|
|
|
# --for this user session but...
|
|
|
|
GD[cache_key] = routing_config
|
|
|
|
return True
|
2020-03-17 16:49:54 +08:00
|
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
CREATE TYPE cdb_dataservices_server.isoline AS (center geometry(Geometry,4326), data_range integer, the_geom geometry(Multipolygon,4326));
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server._cdb_here_routing_isolines(username TEXT, orgname TEXT, type TEXT, source geometry(Geometry, 4326), mode TEXT, data_range integer[], options text[])
|
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
2016-02-11 00:17:53 +08:00
|
|
|
import json
|
|
|
|
from cartodb_services.here import HereMapsRoutingIsoline
|
|
|
|
from cartodb_services.metrics import QuotaService
|
2016-02-11 05:26:32 +08:00
|
|
|
from cartodb_services.here.types import geo_polyline_to_multipolygon
|
2016-02-11 00:17:53 +08:00
|
|
|
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-02-16 20:22:45 +08:00
|
|
|
user_isolines_routing_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2016-02-16 20:22:45 +08:00
|
|
|
# -- Check the quota
|
|
|
|
quota_service = QuotaService(user_isolines_routing_config, redis_conn)
|
|
|
|
if not quota_service.check_user_quota():
|
|
|
|
plpy.error('You have reach the limit of your quota')
|
2016-02-11 00:17:53 +08:00
|
|
|
|
|
|
|
try:
|
2016-02-16 20:22:45 +08:00
|
|
|
client = HereMapsRoutingIsoline(user_isolines_routing_config.heremaps_app_id, user_isolines_routing_config.heremaps_app_code, base_url = HereMapsRoutingIsoline.PRODUCTION_ROUTING_BASE_URL)
|
2016-02-11 00:17:53 +08:00
|
|
|
|
|
|
|
if source:
|
2016-02-11 05:26:32 +08:00
|
|
|
lat = plpy.execute("SELECT ST_Y('%s') AS lat" % source)[0]['lat']
|
|
|
|
lon = plpy.execute("SELECT ST_X('%s') AS lon" % source)[0]['lon']
|
|
|
|
source_str = 'geo!%f,%f' % (lat, lon)
|
2016-02-11 00:17:53 +08:00
|
|
|
else:
|
2016-02-11 05:26:32 +08:00
|
|
|
source_str = None
|
2016-02-11 00:17:53 +08:00
|
|
|
|
|
|
|
if type == 'isodistance':
|
2016-02-11 05:26:32 +08:00
|
|
|
resp = client.calculate_isodistance(source_str, mode, data_range, options)
|
|
|
|
elif type == 'isochrone':
|
|
|
|
resp = client.calculate_isochrone(source_str, mode, data_range, options)
|
2016-02-11 00:17:53 +08:00
|
|
|
|
|
|
|
if resp:
|
|
|
|
result = []
|
|
|
|
for isoline in resp:
|
2016-02-11 05:26:32 +08:00
|
|
|
data_range_n = isoline['range']
|
2016-02-11 00:17:53 +08:00
|
|
|
polyline = isoline['geom']
|
2016-02-11 05:26:32 +08:00
|
|
|
multipolygon = geo_polyline_to_multipolygon(polyline)
|
|
|
|
result.append([source, data_range_n, multipolygon])
|
|
|
|
quota_service.increment_success_geocoder_use()
|
2016-02-11 00:17:53 +08:00
|
|
|
quota_service.increment_isolines_service_use(len(resp))
|
|
|
|
return result
|
|
|
|
else:
|
|
|
|
quota_service.increment_empty_geocoder_use()
|
|
|
|
except BaseException as e:
|
|
|
|
import sys, traceback
|
|
|
|
type_, value_, traceback_ = sys.exc_info()
|
|
|
|
quota_service.increment_failed_geocoder_use()
|
2016-02-12 17:01:42 +08:00
|
|
|
error_msg = 'There was an error trying to obtain isodistances: {0}'.format(e)
|
2016-02-11 00:17:53 +08:00
|
|
|
plpy.notice(traceback.format_tb(traceback_))
|
|
|
|
plpy.error(error_msg)
|
|
|
|
finally:
|
2016-02-11 05:26:32 +08:00
|
|
|
quota_service.increment_total_geocoder_use()
|
2020-03-17 16:49:54 +08:00
|
|
|
$$ LANGUAGE plpythonu SECURITY DEFINER;
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_isodistance(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
2016-02-11 00:17:53 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-02-16 20:22:45 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-02-11 00:17:53 +08:00
|
|
|
type = 'isodistance'
|
|
|
|
|
2016-02-26 17:42:05 +08:00
|
|
|
if user_isolines_config.google_services_user:
|
|
|
|
plpy.error('This service is not available for google service users.')
|
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
here_plan = plpy.prepare("SELECT cdb_dataservices_server._cdb_here_routing_isolines($1, $2, $3, $4, $5, $6, $7) as isoline; ", ["text", "text", "text", "geometry(Geometry, 4326)", "text", "integer[]", "text[]"])
|
|
|
|
result = plpy.execute(here_plan, [username, orgname, type, source, mode, range, options])
|
|
|
|
isolines = []
|
|
|
|
for element in result:
|
|
|
|
isoline = element['isoline']
|
|
|
|
isoline = isoline.translate(None, "()").split(',')
|
|
|
|
isolines.append(isoline)
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
return isolines
|
2016-02-11 00:17:53 +08:00
|
|
|
$$ LANGUAGE plpythonu;
|
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_isochrone(username TEXT, orgname TEXT, source geometry(Geometry, 4326), mode TEXT, range integer[], options text[] DEFAULT array[]::text[])
|
|
|
|
RETURNS SETOF cdb_dataservices_server.isoline AS $$
|
2016-02-11 00:17:53 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
|
|
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
2016-02-16 20:22:45 +08:00
|
|
|
plpy.execute("SELECT cdb_dataservices_server._get_isolines_routing_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
|
|
|
user_isolines_config = GD["user_isolines_routing_config_{0}".format(username)]
|
2016-02-11 00:17:53 +08:00
|
|
|
type = 'isochrone'
|
|
|
|
|
2016-02-26 17:42:05 +08:00
|
|
|
if user_isolines_config.google_services_user:
|
|
|
|
plpy.error('This service is not available for google service users.')
|
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
here_plan = plpy.prepare("SELECT cdb_dataservices_server._cdb_here_routing_isolines($1, $2, $3, $4, $5, $6, $7) as isoline; ", ["text", "text", "text", "geometry(Geometry, 4326)", "text", "integer[]", "text[]"])
|
|
|
|
result = plpy.execute(here_plan, [username, orgname, type, source, mode, range, options])
|
|
|
|
isolines = []
|
|
|
|
for element in result:
|
|
|
|
isoline = element['isoline']
|
|
|
|
isoline = isoline.translate(None, "()").split(',')
|
|
|
|
isolines.append(isoline)
|
2016-02-11 00:17:53 +08:00
|
|
|
|
2016-02-11 05:26:32 +08:00
|
|
|
return isolines
|
2016-02-11 00:17:53 +08:00
|
|
|
$$ LANGUAGE plpythonu;
|