dataservices-api/server/extension/sql/0.0.1/70_ips.sql

55 lines
1.7 KiB
MySQL
Raw Normal View History

2015-11-11 22:38:18 +08:00
-- Interface of the server extension
2015-11-11 22:43:11 +08:00
CREATE OR REPLACE FUNCTION geocode_ip_point(user_id NAME, tx_id BIGINT, ip TEXT)
2015-11-11 22:38:18 +08:00
RETURNS Geometry AS $$
plpy.debug('Entering _geocode_ip_point')
plpy.debug('user_id = %s' % user_id)
#-- Access control
#-- TODO: this should be part of cdb python library
if user_id == 'publicuser':
plpy.error('The api_key must be provided')
#--TODO: rate limiting check
#--TODO: quota check
#-- Copied from the doc, see http://www.postgresql.org/docs/9.4/static/plpython-database.html
2015-11-11 22:43:11 +08:00
plan = plpy.prepare("SELECT cdb_geocoder_server._geocode_ip_point($1) AS point", ["TEXT"])
2015-11-11 22:38:18 +08:00
rv = plpy.execute(plan, [ip], 1)
plpy.debug('Returning from _geocode_ip_point')
return rv[0]["point"]
$$ LANGUAGE plpythonu;
--------------------------------------------------------------------------------
-- Implementation of the server extension
-- Note: these functions depend on the cdb_geocoder extension
2015-11-11 22:43:11 +08:00
CREATE OR REPLACE FUNCTION _geocode_ip_point(ip TEXT)
2015-11-11 22:38:18 +08:00
RETURNS Geometry AS $$
DECLARE
2015-11-12 18:57:28 +08:00
ret Geometry;
2015-11-12 19:07:15 +08:00
new_ip INET;
BEGIN
BEGIN
IF family(ip::inet) = 6 THEN
2015-11-12 19:07:15 +08:00
new_ip := ip::inet;
ELSE
2015-11-12 19:07:15 +08:00
new_ip := ('::ffff:' || ip)::inet;
END IF;
EXCEPTION WHEN OTHERS THEN
SELECT ip AS q, NULL as geom, FALSE as success INTO ret;
RETURN ret;
END;
2015-11-12 18:57:28 +08:00
WITH
2015-11-12 19:07:15 +08:00
ips AS (SELECT ip s, new_ip net),
matches AS (SELECT s, (SELECT the_geom FROM ip_address_locations WHERE network_start_ip <= ips.net ORDER BY network_start_ip DESC LIMIT 1) geom FROM ips)
2015-11-12 18:58:32 +08:00
SELECT geom INTO ret
2015-11-12 18:57:28 +08:00
FROM matches;
RETURN ret;
END
2015-11-11 22:38:18 +08:00
$$ LANGUAGE plpgsql;