101 lines
4.3 KiB
MySQL
101 lines
4.3 KiB
MySQL
|
--DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES
|
||
|
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||
|
\echo Use "ALTER EXTENSION cdb_dataservices_server UPDATE TO '0.24.0'" to load this file. \quit
|
||
|
|
||
|
|
||
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.OBS_GetData(
|
||
|
username TEXT,
|
||
|
orgname TEXT,
|
||
|
geomvals geomval[],
|
||
|
params JSON,
|
||
|
merge BOOLEAN DEFAULT True)
|
||
|
RETURNS TABLE (
|
||
|
id INT,
|
||
|
data JSON
|
||
|
) AS $$
|
||
|
from cartodb_services.metrics import metrics
|
||
|
from cartodb_services.metrics import QuotaService
|
||
|
from cartodb_services.tools import Logger,LoggerConfig
|
||
|
|
||
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
||
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
||
|
plpy.execute("SELECT cdb_dataservices_server._get_obs_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
||
|
user_obs_config = GD["user_obs_config_{0}".format(username)]
|
||
|
|
||
|
plpy.execute("SELECT cdb_dataservices_server._get_logger_config()")
|
||
|
logger_config = GD["logger_config"]
|
||
|
logger = Logger(logger_config)
|
||
|
quota_service = QuotaService(user_obs_config, redis_conn)
|
||
|
if not quota_service.check_user_quota():
|
||
|
raise Exception('You have reached the limit of your quota')
|
||
|
|
||
|
with metrics('obs_getdata', user_obs_config, logger):
|
||
|
try:
|
||
|
obs_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._OBS_GetData($1, $2, $3, $4, $5);", ["text", "text", "geomval[]", "json", "boolean"])
|
||
|
result = plpy.execute(obs_plan, [username, orgname, geomvals, params, merge])
|
||
|
empty_results = len(geomvals) - len(result)
|
||
|
if empty_results > 0:
|
||
|
quota_service.increment_empty_service_use(empty_results)
|
||
|
if result:
|
||
|
quota_service.increment_success_service_use(len(result))
|
||
|
return result
|
||
|
else:
|
||
|
return None
|
||
|
except BaseException as e:
|
||
|
import sys
|
||
|
quota_service.increment_failed_service_use(len(geomvals))
|
||
|
logger.error('Error trying to OBS_GetData', sys.exc_info(), data={"username": username, "orgname": orgname})
|
||
|
raise Exception('Error trying to OBS_GetData')
|
||
|
finally:
|
||
|
quota_service.increment_total_service_use(len(geomvals))
|
||
|
$$ LANGUAGE plpythonu;
|
||
|
|
||
|
|
||
|
CREATE OR REPLACE FUNCTION cdb_dataservices_server.OBS_GetData(
|
||
|
username TEXT,
|
||
|
orgname TEXT,
|
||
|
geomrefs TEXT[],
|
||
|
params JSON)
|
||
|
RETURNS TABLE (
|
||
|
id TEXT,
|
||
|
data JSON
|
||
|
) AS $$
|
||
|
from cartodb_services.metrics import metrics
|
||
|
from cartodb_services.metrics import QuotaService
|
||
|
from cartodb_services.tools import Logger,LoggerConfig
|
||
|
|
||
|
plpy.execute("SELECT cdb_dataservices_server._connect_to_redis('{0}')".format(username))
|
||
|
redis_conn = GD["redis_connection_{0}".format(username)]['redis_metrics_connection']
|
||
|
plpy.execute("SELECT cdb_dataservices_server._get_obs_config({0}, {1})".format(plpy.quote_nullable(username), plpy.quote_nullable(orgname)))
|
||
|
user_obs_config = GD["user_obs_config_{0}".format(username)]
|
||
|
|
||
|
plpy.execute("SELECT cdb_dataservices_server._get_logger_config()")
|
||
|
logger_config = GD["logger_config"]
|
||
|
logger = Logger(logger_config)
|
||
|
quota_service = QuotaService(user_obs_config, redis_conn)
|
||
|
if not quota_service.check_user_quota():
|
||
|
raise Exception('You have reached the limit of your quota')
|
||
|
|
||
|
with metrics('obs_getdata', user_obs_config, logger):
|
||
|
try:
|
||
|
obs_plan = plpy.prepare("SELECT * FROM cdb_dataservices_server._OBS_GetData($1, $2, $3, $4);", ["text", "text", "text[]", "json"])
|
||
|
result = plpy.execute(obs_plan, [username, orgname, geomrefs, params])
|
||
|
empty_results = len(geomrefs) - len(result)
|
||
|
if empty_results > 0:
|
||
|
quota_service.increment_empty_service_use(empty_results)
|
||
|
if result:
|
||
|
quota_service.increment_success_service_use(len(result))
|
||
|
return result
|
||
|
else:
|
||
|
return None
|
||
|
except BaseException as e:
|
||
|
import sys
|
||
|
quota_service.increment_failed_service_use(len(geomrefs))
|
||
|
exc_info = sys.exc_info()
|
||
|
logger.error('%s, %s, %s' % (exc_info[0], exc_info[1], exc_info[2]))
|
||
|
logger.error('Error trying to OBS_GetData', exc_info, data={"username": username, "orgname": orgname})
|
||
|
raise Exception('Error trying to OBS_GetData')
|
||
|
finally:
|
||
|
quota_service.increment_total_service_use(len(geomrefs))
|
||
|
$$ LANGUAGE plpythonu;
|