Function to get the username based user type (org or non-org)

This commit is contained in:
Mario de Frutos
2015-12-02 18:54:27 +01:00
parent ef7c915420
commit ba7b8cfa7d

View File

@@ -0,0 +1,27 @@
--
-- Get username function
--
-- The purpose of this function is to retrieve the username 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_username()
RETURNS text AS $$
DECLARE
is_organization boolean;
username 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;
ELSE
SELECT cartodb.cdb_conf_getconf('user_config')::json->'entity_name' INTO username;
END IF;
RETURN username;
END;
$$ LANGUAGE 'plpgsql' SECURITY DEFINER;