Tests and interfaces versioned
This commit is contained in:
parent
7cce491a13
commit
c0cef3dc80
6
client/.gitignore
vendored
6
client/.gitignore
vendored
@ -1,4 +1,8 @@
|
|||||||
results/
|
results/
|
||||||
regression.diffs
|
regression.diffs
|
||||||
regression.out
|
regression.out
|
||||||
cdb_geocoder_client--*
|
20_public_functions.sql
|
||||||
|
30_plproxy_functions.sql
|
||||||
|
90_grant_execute.sql
|
||||||
|
cdb_geocoder_client--0.0.1.sql
|
||||||
|
cdb_geocoder_client--0.1.0.sql
|
||||||
|
@ -2,22 +2,12 @@
|
|||||||
# Once a version is released, it is not meant to be changed. E.g: once version 0.0.1 is out, it SHALL NOT be changed.
|
# Once a version is released, it is not meant to be changed. E.g: once version 0.0.1 is out, it SHALL NOT be changed.
|
||||||
EXTENSION = cdb_geocoder_client
|
EXTENSION = cdb_geocoder_client
|
||||||
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
|
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
|
||||||
SED = sed
|
|
||||||
|
|
||||||
UPGRADABLE = \
|
DATA = $(EXTENSION)--$(EXTVERSION).sql
|
||||||
0.0.1 \
|
|
||||||
$(END)
|
|
||||||
|
|
||||||
UPGRADES = \
|
REGRESS = $(notdir $(basename $(wildcard test/$(EXTVERSION)/sql/*test.sql)))
|
||||||
$(shell echo $(UPGRADABLE) | \
|
TEST_DIR = test/$(EXTVERSION)
|
||||||
$(SED) 's/^/$(EXTENSION)--/' | \
|
REGRESS_OPTS = --inputdir='$(TEST_DIR)' --outputdir='$(TEST_DIR)'
|
||||||
$(SED) 's/$$/--$(EXTVERSION).sql/' | \
|
|
||||||
$(SED) 's/ /--$(EXTVERSION).sql $(EXTENSION)--/g')
|
|
||||||
|
|
||||||
DATA = $(EXTENSION)--$(EXTVERSION).sql \
|
|
||||||
$(UPGRADES)
|
|
||||||
|
|
||||||
REGRESS = $(notdir $(basename $(wildcard sql/*test.sql)))
|
|
||||||
|
|
||||||
# postgres build stuff
|
# postgres build stuff
|
||||||
PG_CONFIG = pg_config
|
PG_CONFIG = pg_config
|
||||||
@ -28,7 +18,7 @@ SOURCES_DATA_DIR = sql/$(EXTVERSION)
|
|||||||
|
|
||||||
# The interface definition is used along with some templates to automatically generate code
|
# The interface definition is used along with some templates to automatically generate code
|
||||||
RENDERER = ../sql-template-renderer
|
RENDERER = ../sql-template-renderer
|
||||||
INTERFACE_FILE = ../interface.yaml
|
INTERFACE_FILE = ../interface_$(EXTVERSION).yaml
|
||||||
TEMPLATE_DIR = templates
|
TEMPLATE_DIR = templates
|
||||||
TEMPLATE_FILES = $(wildcard $(TEMPLATE_DIR)/*.erb)
|
TEMPLATE_FILES = $(wildcard $(TEMPLATE_DIR)/*.erb)
|
||||||
GENERATED_SQL_FILES = $(patsubst $(TEMPLATE_DIR)/%.erb, $(SOURCES_DATA_DIR)/%.sql, $(TEMPLATE_FILES))
|
GENERATED_SQL_FILES = $(patsubst $(TEMPLATE_DIR)/%.erb, $(SOURCES_DATA_DIR)/%.sql, $(TEMPLATE_FILES))
|
||||||
|
27
client/cdb_geocoder_client--0.0.1--0.1.0.sql
Normal file
27
client/cdb_geocoder_client--0.0.1--0.1.0.sql
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_street_point_v2 (searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
DECLARE
|
||||||
|
ret Geometry;
|
||||||
|
username text;
|
||||||
|
orgname text;
|
||||||
|
BEGIN
|
||||||
|
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
||||||
|
RAISE EXCEPTION 'The api_key must be provided';
|
||||||
|
END IF;
|
||||||
|
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
||||||
|
-- JSON value stored "" is taken as literal
|
||||||
|
IF username IS NULL OR username = '' OR username = '""' THEN
|
||||||
|
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
||||||
|
END IF;
|
||||||
|
SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country) INTO ret;
|
||||||
|
RETURN ret;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_street_point_v2 (username text, organization_name text, searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
CONNECT cdb_geocoder_client._server_conn_str();
|
||||||
|
SELECT cdb_geocoder_server.cdb_geocode_street_point_v2 (username, organization_name, searchtext, city, state_province, country);
|
||||||
|
$$ LANGUAGE plproxy;
|
||||||
|
|
||||||
|
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_street_point_v2(searchtext text, city text, state_province text, country text) TO publicuser;
|
2
client/cdb_geocoder_client--0.1.0--0.0.1.sql
Normal file
2
client/cdb_geocoder_client--0.1.0--0.0.1.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
DROP FUNCTION IF EXISTS cdb_geocoder_client.cdb_geocode_street_point_v2 (text, text, text, text)
|
||||||
|
DROP FUNCTION IF EXISTS cdb_geocoder_client._cdb_geocode_street_point_v2 (text, text, text, text)
|
3
client/sql/0.0.1/.gitignore
vendored
3
client/sql/0.0.1/.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
20_public_functions.sql
|
|
||||||
30_plproxy_functions.sql
|
|
||||||
90_grant_execute.sql
|
|
2
client/sql/0.1.0/00_header.sql
Normal file
2
client/sql/0.1.0/00_header.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||||||
|
\echo Use "CREATE EXTENSION cdb_geocoder_client" to load this file. \quit
|
16
client/sql/0.1.0/10_geocoder_server_conn.sql
Normal file
16
client/sql/0.1.0/10_geocoder_server_conn.sql
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
--
|
||||||
|
-- Geocoder server connection config
|
||||||
|
--
|
||||||
|
-- The purpose of this function is provide to the PL/Proxy functions
|
||||||
|
-- the connection string needed to connect with the server
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_client._server_conn_str()
|
||||||
|
RETURNS text AS $$
|
||||||
|
DECLARE
|
||||||
|
db_connection_str text;
|
||||||
|
BEGIN
|
||||||
|
SELECT cartodb.cdb_conf_getconf('geocoder_server_config')->'connection_str' INTO db_connection_str;
|
||||||
|
SELECT trim(both '"' FROM db_connection_str) INTO db_connection_str;
|
||||||
|
RETURN db_connection_str;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
37
client/sql/0.1.0/15_config_management.sql
Normal file
37
client/sql/0.1.0/15_config_management.sql
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
CREATE TYPE cdb_geocoder_client._entity_config AS (
|
||||||
|
username text,
|
||||||
|
organization_name text
|
||||||
|
);
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Get entity config function
|
||||||
|
--
|
||||||
|
-- The purpose of this function is to retrieve the username and organization name from
|
||||||
|
-- a) schema where he/her is the owner in case is an organization user
|
||||||
|
-- b) entity_name from the cdb_conf database in case is a non organization user
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_entity_config()
|
||||||
|
RETURNS record AS $$
|
||||||
|
DECLARE
|
||||||
|
result cdb_geocoder_client._entity_config;
|
||||||
|
is_organization boolean;
|
||||||
|
username text;
|
||||||
|
organization_name text;
|
||||||
|
BEGIN
|
||||||
|
SELECT cartodb.cdb_conf_getconf('user_config')->'is_organization' INTO is_organization;
|
||||||
|
IF is_organization IS NULL THEN
|
||||||
|
RAISE EXCEPTION 'User must have user configuration in the config table';
|
||||||
|
ELSIF is_organization = TRUE THEN
|
||||||
|
SELECT nspname
|
||||||
|
FROM pg_namespace s
|
||||||
|
LEFT JOIN pg_roles r ON s.nspowner = r.oid
|
||||||
|
WHERE r.rolname = session_user INTO username;
|
||||||
|
SELECT cartodb.cdb_conf_getconf('user_config')->'entity_name' INTO organization_name;
|
||||||
|
ELSE
|
||||||
|
SELECT cartodb.cdb_conf_getconf('user_config')->'entity_name' INTO username;
|
||||||
|
organization_name = NULL;
|
||||||
|
END IF;
|
||||||
|
result.username = username;
|
||||||
|
result.organization_name = organization_name;
|
||||||
|
RETURN result;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
@ -1,260 +0,0 @@
|
|||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_admin0_polygon (country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_admin0_polygon(username, orgname, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_admin1_polygon (admin1_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_admin1_polygon (admin1_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point (city_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point (city_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point (city_name text, admin1_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, admin1_name, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_postalcode_polygon (postal_code text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_postalcode_polygon(username, orgname, postal_code, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_postalcode_point (postal_code text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_postalcode_point(username, orgname, postal_code, country_name) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_ipaddress_point (ip_address text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_ipaddress_point(username, orgname, ip_address) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Public geocoder API function
|
|
||||||
--
|
|
||||||
-- These are the only ones with permissions to publicuser role
|
|
||||||
-- and should also be the only ones with SECURITY DEFINER
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client.cdb_geocode_street_point (searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
DECLARE
|
|
||||||
ret Geometry;
|
|
||||||
username text;
|
|
||||||
orgname text;
|
|
||||||
BEGIN
|
|
||||||
IF session_user = 'publicuser' OR session_user ~ 'cartodb_publicuser_*' THEN
|
|
||||||
RAISE EXCEPTION 'The api_key must be provided';
|
|
||||||
END IF;
|
|
||||||
SELECT u, o INTO username, orgname FROM _cdb_entity_config() AS (u text, o text);
|
|
||||||
-- JSON value stored "" is taken as literal
|
|
||||||
IF username IS NULL OR username = '' OR username = '""' THEN
|
|
||||||
RAISE EXCEPTION 'Username is a mandatory argument, check it out';
|
|
||||||
END IF;
|
|
||||||
SELECT cdb_geocoder_client._cdb_geocode_street_point(username, orgname, searchtext, city, state_province, country) INTO ret;
|
|
||||||
RETURN ret;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
|||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_admin0_polygon (username text, organization_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_admin0_polygon (username, organization_name, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_admin1_polygon (username text, organization_name text, admin1_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_admin1_polygon (username, organization_name, admin1_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_admin1_polygon (username text, organization_name text, admin1_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_admin1_polygon (username, organization_name, admin1_name, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_namedplace_point (username text, organization_name text, city_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_namedplace_point (username, organization_name, city_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_namedplace_point (username text, organization_name text, city_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_namedplace_point (username, organization_name, city_name, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_namedplace_point (username text, organization_name text, city_name text, admin1_name text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_namedplace_point (username, organization_name, city_name, admin1_name, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_postalcode_polygon (username text, organization_name text, postal_code text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_postalcode_polygon (username, organization_name, postal_code, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_postalcode_point (username text, organization_name text, postal_code text, country_name text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_postalcode_point (username, organization_name, postal_code, country_name);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_ipaddress_point (username text, organization_name text, ip_address text)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_ipaddress_point (username, organization_name, ip_address);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
||||||
CREATE OR REPLACE FUNCTION cdb_geocoder_client._cdb_geocode_street_point (username text, organization_name text, searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
|
||||||
RETURNS Geometry AS $$
|
|
||||||
CONNECT cdb_geocoder_client._server_conn_str();
|
|
||||||
SELECT cdb_geocoder_server.cdb_geocode_street_point (username, organization_name, searchtext, city, state_province, country);
|
|
||||||
$$ LANGUAGE plproxy;
|
|
||||||
|
|
9
client/sql/0.1.0/80_permissions.sql
Normal file
9
client/sql/0.1.0/80_permissions.sql
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
-- Make sure by default there are no permissions for publicuser
|
||||||
|
-- NOTE: this happens at extension creation time, as part of an implicit transaction.
|
||||||
|
REVOKE ALL PRIVILEGES ON SCHEMA cdb_geocoder_client FROM PUBLIC, publicuser CASCADE;
|
||||||
|
|
||||||
|
-- Grant permissions on the schema to publicuser (but just the schema)
|
||||||
|
GRANT USAGE ON SCHEMA cdb_geocoder_client TO publicuser;
|
||||||
|
|
||||||
|
-- Revoke execute permissions on all functions in the schema by default
|
||||||
|
REVOKE EXECUTE ON ALL FUNCTIONS IN SCHEMA cdb_geocoder_client FROM PUBLIC, publicuser;
|
@ -1,10 +0,0 @@
|
|||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_admin0_polygon(country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_admin1_polygon(admin1_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_admin1_polygon(admin1_name text, country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point(city_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point(city_name text, country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_namedplace_point(city_name text, admin1_name text, country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_postalcode_polygon(postal_code text, country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_postalcode_point(postal_code text, country_name text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_ipaddress_point(ip_address text) TO publicuser;
|
|
||||||
GRANT EXECUTE ON FUNCTION cdb_geocoder_client.cdb_geocode_street_point(searchtext text, city text, state_province text, country text) TO publicuser;
|
|
29
client/test/0.1.0/expected/00_installation_test.out
Normal file
29
client/test/0.1.0/expected/00_installation_test.out
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
-- Install dependencies
|
||||||
|
CREATE EXTENSION postgis;
|
||||||
|
CREATE EXTENSION schema_triggers;
|
||||||
|
CREATE EXTENSION plpythonu;
|
||||||
|
CREATE EXTENSION cartodb;
|
||||||
|
CREATE EXTENSION plproxy;
|
||||||
|
-- Install the extension
|
||||||
|
CREATE EXTENSION cdb_geocoder_client;
|
||||||
|
-- Mock the server connection to point to this very test db
|
||||||
|
SELECT cartodb.cdb_conf_setconf('geocoder_server_config', '{"connection_str": "dbname=contrib_regression host=127.0.0.1 user=postgres"}');
|
||||||
|
cdb_conf_setconf
|
||||||
|
------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
-- Mock the user configuration
|
||||||
|
SELECT cartodb.cdb_conf_setconf('user_config', '{"is_organization": false, "entity_name": "test_user"}');
|
||||||
|
cdb_conf_setconf
|
||||||
|
------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
-- Mock the server schema
|
||||||
|
CREATE SCHEMA cdb_geocoder_server;
|
||||||
|
-- Create a test user to check permissions
|
||||||
|
DROP ROLE IF EXISTS test_regular_user;
|
||||||
|
CREATE ROLE test_regular_user;
|
||||||
|
GRANT publicuser TO test_regular_user;
|
||||||
|
ALTER ROLE test_regular_user SET search_path TO public,cartodb,cdb_geocoder_client;
|
20
client/test/0.1.0/expected/10_admin0_test.out
Normal file
20
client/test/0.1.0/expected/10_admin0_test.out
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server function
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin0_polygon(username text, orgname text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params (%, %, %)', username, orgname, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_admin0_polygon('Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin0_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params ("test_user", <NULL>, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin0_polygon(username, orgname, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin0_polygon(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin0_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
36
client/test/0.1.0/expected/20_admin1_test.out
Normal file
36
client/test/0.1.0/expected/20_admin1_test.out
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params (%, %, %)', username, orgname, admin1_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params (%, %, %, %)', username, orgname, admin1_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin1_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params ("test_user", <NULL>, California)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin1_polygon(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin1_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California', 'United States');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin1_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params ("test_user", <NULL>, California, United States)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin1_polygon(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin1_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
52
client/test/0.1.0/expected/30_namedplaces_test.out
Normal file
52
client/test/0.1.0/expected/30_namedplaces_test.out
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %)', username, orgname, city_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %, %)', username, orgname, city_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text, admin1_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %, %, %)', username, orgname, city_name, admin1_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(5): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx, Valencia, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, admin1_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
36
client/test/0.1.0/expected/40_postalcodes_test.out
Normal file
36
client/test/0.1.0/expected/40_postalcodes_test.out
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_polygon(username text, orgname text, postal_code text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params (%, %, %, %)', username, orgname, postal_code, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_point(username text, orgname text, postal_code text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params (%, %, %, %)', username, orgname, postal_code, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_postalcode_polygon('03204', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params ("test_user", <NULL>, 03204, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_polygon(username, orgname, postal_code, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_postalcode_polygon(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_postalcode_polygon
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_postalcode_point('03204', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_point(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params ("test_user", <NULL>, 03204, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_point(username, orgname, postal_code, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_postalcode_point(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_postalcode_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
20
client/test/0.1.0/expected/50_ipaddresses_test.out
Normal file
20
client/test/0.1.0/expected/50_ipaddresses_test.out
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_ipaddress_point(username text, orgname text, ip_address text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_ipaddress_point invoked with params (%, %, %)', username, orgname, ip_address;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_ipaddress_point('8.8.8.8');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_ipaddress_point(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_ipaddress_point invoked with params ("test_user", <NULL>, 8.8.8.8)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_ipaddress_point(username, orgname, ip_address)"
|
||||||
|
PL/pgSQL function cdb_geocode_ipaddress_point(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_ipaddress_point
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
101
client/test/0.1.0/expected/60_street_v2_test.out
Normal file
101
client/test/0.1.0/expected/60_street_v2_test.out
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_street_point_v2 (username text, orgname text, searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params (%, %, %, %, %, %)', username, orgname, searchtext, city, state_province, country;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street, 1');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, 1, <NULL>, <NULL>, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, <NULL>, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, state, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state', 'country');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, state, country)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', NULL, 'country');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, <NULL>, country)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street, 1');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, 1, <NULL>, <NULL>, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, <NULL>, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, state, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state', 'country');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, state, country)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', NULL, 'country');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, One street, city, <NULL>, country)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
117
client/test/0.1.0/expected/90_permissions_test.out
Normal file
117
client/test/0.1.0/expected/90_permissions_test.out
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
-- Use regular user role
|
||||||
|
SET ROLE test_regular_user;
|
||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
-- Exercise the public function
|
||||||
|
-- it is public, it shall work
|
||||||
|
SELECT cdb_geocode_admin0_polygon('Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin0_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params ("test_user", <NULL>, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin0_polygon(username, orgname, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin0_polygon(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin0_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin1_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params ("test_user", <NULL>, California)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin1_polygon(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin1_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California', 'United States');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin1_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params ("test_user", <NULL>, California, United States)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin1_polygon(username, orgname, admin1_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_admin1_polygon(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_admin1_polygon
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx, Valencia)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_namedplace_point(5): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params ("test_user", <NULL>, Elx, Valencia, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_namedplace_point(username, orgname, city_name, admin1_name, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_namedplace_point(text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_namedplace_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_postalcode_polygon('03204', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params ("test_user", <NULL>, 03204, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_polygon(username, orgname, postal_code, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_postalcode_polygon(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_postalcode_polygon
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_postalcode_point('03204', 'Spain');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_point(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params ("test_user", <NULL>, 03204, Spain)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_point(username, orgname, postal_code, country_name)"
|
||||||
|
PL/pgSQL function cdb_geocode_postalcode_point(text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_postalcode_point
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_ipaddress_point('8.8.8.8');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_ipaddress_point(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_ipaddress_point invoked with params ("test_user", <NULL>, 8.8.8.8)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_ipaddress_point(username, orgname, ip_address)"
|
||||||
|
PL/pgSQL function cdb_geocode_ipaddress_point(text) line 15 at SQL statement
|
||||||
|
cdb_geocode_ipaddress_point
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
SELECT cdb_geocode_street_point_v2('one street, 1');
|
||||||
|
NOTICE: cdb_geocoder_client._cdb_geocode_street_point_v2(6): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params ("test_user", <NULL>, one street, 1, <NULL>, <NULL>, <NULL>)
|
||||||
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_street_point_v2(username, orgname, searchtext, city, state_province, country)"
|
||||||
|
PL/pgSQL function cdb_geocode_street_point_v2(text,text,text,text) line 15 at SQL statement
|
||||||
|
cdb_geocode_street_point_v2
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
-- Check the regular user has no permissions on private functions
|
||||||
|
SELECT _cdb_geocode_admin0_polygon('evil_user', 'evil_orgname', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_admin0_polygon
|
||||||
|
SELECT _cdb_geocode_admin1_polygon('evil_user', 'evil_orgname', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_admin1_polygon
|
||||||
|
SELECT _cdb_geocode_admin1_polygon('evil_user', 'evil_orgname', 'Sheol', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_admin1_polygon
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_namedplace_point
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_namedplace_point
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol', 'Hell', 'Ugly world');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_namedplace_point
|
||||||
|
SELECT _cdb_geocode_postalcode_polygon('evil_user', 'evil_orgname', '66666', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_postalcode_polygon
|
||||||
|
SELECT _cdb_geocode_postalcode_point('evil_user', 'evil_orgname', '66666', 'Hell');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_postalcode_point
|
||||||
|
SELECT _cdb_geocode_ipaddress_point('evil_user', 'evil_orgname', '8.8.8.8');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_ipaddress_point
|
||||||
|
SELECT _cdb_geocode_street_point_v2('evil_user', 'evil_orgname', 'one street, 1');
|
||||||
|
ERROR: permission denied for function _cdb_geocode_street_point_v2
|
23
client/test/0.1.0/sql/00_installation_test.sql
Normal file
23
client/test/0.1.0/sql/00_installation_test.sql
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
-- Install dependencies
|
||||||
|
CREATE EXTENSION postgis;
|
||||||
|
CREATE EXTENSION schema_triggers;
|
||||||
|
CREATE EXTENSION plpythonu;
|
||||||
|
CREATE EXTENSION cartodb;
|
||||||
|
CREATE EXTENSION plproxy;
|
||||||
|
|
||||||
|
-- Install the extension
|
||||||
|
CREATE EXTENSION cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server connection to point to this very test db
|
||||||
|
SELECT cartodb.cdb_conf_setconf('geocoder_server_config', '{"connection_str": "dbname=contrib_regression host=127.0.0.1 user=postgres"}');
|
||||||
|
-- Mock the user configuration
|
||||||
|
SELECT cartodb.cdb_conf_setconf('user_config', '{"is_organization": false, "entity_name": "test_user"}');
|
||||||
|
|
||||||
|
-- Mock the server schema
|
||||||
|
CREATE SCHEMA cdb_geocoder_server;
|
||||||
|
|
||||||
|
-- Create a test user to check permissions
|
||||||
|
DROP ROLE IF EXISTS test_regular_user;
|
||||||
|
CREATE ROLE test_regular_user;
|
||||||
|
GRANT publicuser TO test_regular_user;
|
||||||
|
ALTER ROLE test_regular_user SET search_path TO public,cartodb,cdb_geocoder_client;
|
15
client/test/0.1.0/sql/10_admin0_test.sql
Normal file
15
client/test/0.1.0/sql/10_admin0_test.sql
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server function
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin0_polygon(username text, orgname text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params (%, %, %)', username, orgname, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_admin0_polygon('Spain');
|
24
client/test/0.1.0/sql/20_admin1_test.sql
Normal file
24
client/test/0.1.0/sql/20_admin1_test.sql
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params (%, %, %)', username, orgname, admin1_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin1_polygon invoked with params (%, %, %, %)', username, orgname, admin1_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California');
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California', 'United States');
|
33
client/test/0.1.0/sql/30_namedplaces_test.sql
Normal file
33
client/test/0.1.0/sql/30_namedplaces_test.sql
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %)', username, orgname, city_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %, %)', username, orgname, city_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_namedplace_point(username text, orgname text, city_name text, admin1_name text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_namedplace_point invoked with params (%, %, %, %, %)', username, orgname, city_name, admin1_name, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx');
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Spain');
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia', 'Spain');
|
||||||
|
|
23
client/test/0.1.0/sql/40_postalcodes_test.sql
Normal file
23
client/test/0.1.0/sql/40_postalcodes_test.sql
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_polygon(username text, orgname text, postal_code text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params (%, %, %, %)', username, orgname, postal_code, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_point(username text, orgname text, postal_code text, country_name text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params (%, %, %, %)', username, orgname, postal_code, country_name;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_postalcode_polygon('03204', 'Spain');
|
||||||
|
SELECT cdb_geocode_postalcode_point('03204', 'Spain');
|
15
client/test/0.1.0/sql/50_ipaddresses_test.sql
Normal file
15
client/test/0.1.0/sql/50_ipaddresses_test.sql
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_ipaddress_point(username text, orgname text, ip_address text)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_ipaddress_point invoked with params (%, %, %)', username, orgname, ip_address;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_ipaddress_point('8.8.8.8');
|
24
client/test/0.1.0/sql/60_street_v2_test.sql
Normal file
24
client/test/0.1.0/sql/60_street_v2_test.sql
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Mock the server functions
|
||||||
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_street_point_v2 (username text, orgname text, searchtext text, city text DEFAULT NULL, state_province text DEFAULT NULL, country text DEFAULT NULL)
|
||||||
|
RETURNS Geometry AS $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_geocoder_street_point_v2 invoked with params (%, %, %, %, %, %)', username, orgname, searchtext, city, state_province, country;
|
||||||
|
RETURN NULL;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE 'plpgsql';
|
||||||
|
|
||||||
|
|
||||||
|
-- Exercise the public and the proxied function
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street, 1');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state', 'country');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', NULL, 'country');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street, 1');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', 'state', 'country');
|
||||||
|
SELECT cdb_geocode_street_point_v2('One street', 'city', NULL, 'country');
|
30
client/test/0.1.0/sql/90_permissions_test.sql
Normal file
30
client/test/0.1.0/sql/90_permissions_test.sql
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
-- Use regular user role
|
||||||
|
SET ROLE test_regular_user;
|
||||||
|
|
||||||
|
-- Add to the search path the schema
|
||||||
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
||||||
|
|
||||||
|
-- Exercise the public function
|
||||||
|
-- it is public, it shall work
|
||||||
|
SELECT cdb_geocode_admin0_polygon('Spain');
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California');
|
||||||
|
SELECT cdb_geocode_admin1_polygon('California', 'United States');
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx');
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia');
|
||||||
|
SELECT cdb_geocode_namedplace_point('Elx', 'Valencia', 'Spain');
|
||||||
|
SELECT cdb_geocode_postalcode_polygon('03204', 'Spain');
|
||||||
|
SELECT cdb_geocode_postalcode_point('03204', 'Spain');
|
||||||
|
SELECT cdb_geocode_ipaddress_point('8.8.8.8');
|
||||||
|
SELECT cdb_geocode_street_point_v2('one street, 1');
|
||||||
|
|
||||||
|
-- Check the regular user has no permissions on private functions
|
||||||
|
SELECT _cdb_geocode_admin0_polygon('evil_user', 'evil_orgname', 'Hell');
|
||||||
|
SELECT _cdb_geocode_admin1_polygon('evil_user', 'evil_orgname', 'Hell');
|
||||||
|
SELECT _cdb_geocode_admin1_polygon('evil_user', 'evil_orgname', 'Sheol', 'Hell');
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol');
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol', 'Hell');
|
||||||
|
SELECT _cdb_geocode_namedplace_point('evil_user', 'evil_orgname', 'Sheol', 'Hell', 'Ugly world');
|
||||||
|
SELECT _cdb_geocode_postalcode_polygon('evil_user', 'evil_orgname', '66666', 'Hell');
|
||||||
|
SELECT _cdb_geocode_postalcode_point('evil_user', 'evil_orgname', '66666', 'Hell');
|
||||||
|
SELECT _cdb_geocode_ipaddress_point('evil_user', 'evil_orgname', '8.8.8.8');
|
||||||
|
SELECT _cdb_geocode_street_point_v2('evil_user', 'evil_orgname', 'one street, 1');
|
52
interface_0.0.1.yaml
Normal file
52
interface_0.0.1.yaml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
- name: cdb_geocode_admin0_polygon
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: country_name, type: text }
|
||||||
|
|
||||||
|
- name: cdb_geocode_admin1_polygon
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: admin1_name, type: text }
|
||||||
|
|
||||||
|
- name: cdb_geocode_admin1_polygon
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: admin1_name, type: text }
|
||||||
|
- { name: country_name, type: text }
|
||||||
|
|
||||||
|
- name: cdb_geocode_namedplace_point
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: city_name, type: text}
|
||||||
|
|
||||||
|
- name: cdb_geocode_namedplace_point
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: city_name, type: text}
|
||||||
|
- { name: country_name, type: text}
|
||||||
|
|
||||||
|
- name: cdb_geocode_namedplace_point
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: city_name, type: text}
|
||||||
|
- { name: admin1_name, type: text}
|
||||||
|
- { name: country_name, type: text}
|
||||||
|
|
||||||
|
|
||||||
|
- name: cdb_geocode_postalcode_polygon
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: postal_code, type: text}
|
||||||
|
- { name: country_name, type: text}
|
||||||
|
|
||||||
|
- name: cdb_geocode_postalcode_point
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: postal_code, type: text}
|
||||||
|
- { name: country_name, type: text}
|
||||||
|
|
||||||
|
- name: cdb_geocode_ipaddress_point
|
||||||
|
return_type: Geometry
|
||||||
|
params:
|
||||||
|
- { name: ip_address, type: text}
|
@ -51,7 +51,7 @@
|
|||||||
params:
|
params:
|
||||||
- { name: ip_address, type: text}
|
- { name: ip_address, type: text}
|
||||||
|
|
||||||
- name: cdb_geocode_street_point
|
- name: cdb_geocode_street_point_v2
|
||||||
return_type: Geometry
|
return_type: Geometry
|
||||||
params:
|
params:
|
||||||
- { name: searchtext, type: text}
|
- { name: searchtext, type: text}
|
Loading…
Reference in New Issue
Block a user