mirror of
https://github.com/xbgmsharp/postgsail.git
synced 2025-09-17 11:17:46 +00:00
239 lines
8.1 KiB
PL/PgSQL
239 lines
8.1 KiB
PL/PgSQL
---------------------------------------------------------------------------
|
|
-- signalk db auth schema
|
|
-- View and Function that have dependency with auth schema
|
|
|
|
-- List current database
|
|
select current_database();
|
|
|
|
-- connect to the DB
|
|
\c signalk
|
|
|
|
DROP TABLE IF EXISTS auth.otp;
|
|
CREATE TABLE IF NOT EXISTS auth.otp (
|
|
user_email TEXT NOT NULL PRIMARY KEY REFERENCES auth.accounts(email) ON DELETE RESTRICT,
|
|
otp_pass VARCHAR(10) NOT NULL,
|
|
otp_timestamp TIMESTAMP WITHOUT TIME ZONE DEFAULT NOW(),
|
|
otp_tries SMALLINT NOT NULL DEFAULT '0'
|
|
);
|
|
-- Description
|
|
COMMENT ON TABLE
|
|
auth.otp
|
|
IS 'Stores temporal otp code for up to 15 minutes';
|
|
-- Indexes
|
|
CREATE INDEX otp_pass_idx ON auth.otp (otp_pass);
|
|
CREATE INDEX otp_user_email_idx ON auth.otp (user_email);
|
|
|
|
-- gerenate a OTP code by email
|
|
-- Expose as an API endpoint
|
|
DROP FUNCTION IF EXISTS api.generate_otp_fn;
|
|
CREATE OR REPLACE FUNCTION api.generate_otp_fn(IN email TEXT) RETURNS TEXT
|
|
AS $generate_otp$
|
|
DECLARE
|
|
_email TEXT := email;
|
|
_email_check TEXT := NULL;
|
|
otp_pass VARCHAR(10) := NULL;
|
|
BEGIN
|
|
IF email IS NULL OR _email IS NULL OR _email = '' THEN
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
END IF;
|
|
SELECT lower(a.email) INTO _email_check FROM auth.accounts a WHERE lower(a.email) = lower(_email);
|
|
IF _email_check IS NULL THEN
|
|
RETURN NULL;
|
|
END IF;
|
|
SELECT substr(gen_random_uuid()::text, 1, 8) INTO otp_pass;
|
|
INSERT INTO auth.otp (user_email, otp_pass) VALUES (_email_check, otp_pass);
|
|
RETURN otp_pass;
|
|
END;
|
|
$generate_otp$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
api.generate_otp_fn
|
|
IS 'Generate OTP';
|
|
|
|
DROP FUNCTION IF EXISTS auth.verify_otp_fn;
|
|
CREATE OR REPLACE FUNCTION auth.verify_otp_fn(IN token TEXT) RETURNS TEXT
|
|
AS $verify_otp$
|
|
DECLARE
|
|
email TEXT := NULL;
|
|
BEGIN
|
|
IF token IS NULL THEN
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
END IF;
|
|
-- Token is valid 15 minutes
|
|
SELECT user_email INTO email
|
|
FROM auth.otp
|
|
WHERE otp_timestamp > NOW() AT TIME ZONE 'UTC' - INTERVAL '15 MINUTES'
|
|
AND otp_tries < 3
|
|
AND otp_pass = token;
|
|
RETURN email;
|
|
END;
|
|
$verify_otp$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
auth.verify_otp_fn
|
|
IS 'Verify OTP';
|
|
|
|
-- CRON to purge OTP older than 15 minutes
|
|
DROP FUNCTION IF EXISTS public.cron_process_prune_otp_fn;
|
|
CREATE OR REPLACE FUNCTION public.cron_process_prune_otp_fn() RETURNS void
|
|
AS $$
|
|
DECLARE
|
|
otp_rec record;
|
|
BEGIN
|
|
-- Purge OTP older than 15 minutes
|
|
RAISE NOTICE 'cron_process_prune_otp_fn';
|
|
FOR otp_rec in
|
|
SELECT *
|
|
FROM auth.otp
|
|
WHERE otp_timestamp < NOW() AT TIME ZONE 'UTC' - INTERVAL '15 MINUTES'
|
|
ORDER BY otp_timestamp desc
|
|
LOOP
|
|
RAISE NOTICE '-> cron_process_prune_otp_fn deleting expired otp for user [%]', otp_rec.user_email;
|
|
-- remove entry
|
|
DELETE FROM auth.otp
|
|
WHERE user_email = otp_rec.user_email;
|
|
RAISE NOTICE '-> cron_process_prune_otp_fn deleted expire otp for user [%]', otp_rec.user_email;
|
|
END LOOP;
|
|
END;
|
|
$$ language plpgsql;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
public.cron_process_prune_otp_fn
|
|
IS 'init by pg_cron to purge older than 15 minutes OTP token';
|
|
|
|
-- Pushover Subscription API
|
|
-- Web-Based Subscription Process
|
|
-- https://pushover.net/api/subscriptions#web
|
|
-- Expose as an API endpoint
|
|
DROP FUNCTION IF EXISTS api.pushover_fn;
|
|
CREATE OR REPLACE FUNCTION api.pushover_fn(IN token TEXT, IN pushover_user_key TEXT) RETURNS BOOLEAN
|
|
AS $pushover$
|
|
DECLARE
|
|
_email TEXT := NULL;
|
|
BEGIN
|
|
-- Check parameters
|
|
IF token IS NULL OR pushover_user_key IS NULL THEN
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
END IF;
|
|
-- Verify token
|
|
SELECT auth.verify_otp_fn(token) INTO _email;
|
|
IF _email IS NOT NULL THEN
|
|
-- Add pushover_user_key
|
|
PERFORM api.update_user_preferences_fn('{pushover_user_key}'::TEXT, pushover_user_key::TEXT);
|
|
-- Enable phone_notifications
|
|
PERFORM api.update_user_preferences_fn('{phone_notifications}', True);
|
|
-- Send Notification
|
|
--SELECT public.send_notification_fn();
|
|
RETURN True;
|
|
END IF;
|
|
RETURN False;
|
|
END;
|
|
$pushover$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
api.pushover_fn
|
|
IS 'Store pushover_user_key into user preferences if valid token/otp';
|
|
|
|
-- Telegram OTP Validation
|
|
-- Expose as an API endpoint
|
|
DROP FUNCTION IF EXISTS api.telegram_fn;
|
|
CREATE OR REPLACE FUNCTION api.telegram_fn(IN token TEXT, IN telegram_obj TEXT) RETURNS BOOLEAN
|
|
AS $telegram$
|
|
DECLARE
|
|
_email TEXT := NULL;
|
|
_updated BOOLEAN := False;
|
|
BEGIN
|
|
-- Check parameters
|
|
IF token IS NULL OR telegram_obj IS NULL THEN
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
END IF;
|
|
-- Verify token
|
|
SELECT auth.verify_otp_fn(token) INTO _email;
|
|
IF _email IS NOT NULL THEN
|
|
PERFORM set_config('telegram.email', _email, false);
|
|
-- Add telegram
|
|
SELECT api.update_user_preferences_fn('{telegram}'::TEXT, telegram_obj::TEXT) INTO _updated;
|
|
-- Send Notification
|
|
--SELECT public.send_notification_fn();
|
|
RETURN _updated;
|
|
END IF;
|
|
RETURN False;
|
|
END;
|
|
$telegram$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
api.telegram_fn
|
|
IS 'Store telegram chat details into user preferences if valid token/otp';
|
|
|
|
-- Telegram user validation
|
|
DROP FUNCTION IF EXISTS auth.telegram_user_exists_fn;
|
|
CREATE OR REPLACE FUNCTION auth.telegram_user_exists_fn(IN email TEXT, IN chat_id BIGINT) RETURNS BOOLEAN
|
|
AS $telegram_user_exists$
|
|
declare
|
|
_email TEXT := email;
|
|
_chat_id BIGINT := chat_id;
|
|
BEGIN
|
|
IF _email IS NULL OR _chat_id IS NULL THEN
|
|
RAISE EXCEPTION 'invalid input3' USING HINT = 'check your parameter3';
|
|
END IF;
|
|
-- Does user and telegram obj
|
|
SELECT preferences->'telegram'->'id' INTO _chat_id
|
|
FROM auth.accounts a
|
|
WHERE lower(a.email) = lower(_email)
|
|
AND cast(preferences->'telegram'->'id' as BIGINT) = _chat_id::BIGINT;
|
|
IF FOUND THEN
|
|
RETURN TRUE;
|
|
END IF;
|
|
RETURN FALSE;
|
|
END;
|
|
$telegram_user_exists$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
auth.telegram_user_exists_fn
|
|
IS 'Check if user exist base on email and telegram obj preferences';
|
|
|
|
-- Telegram bot JWT auth
|
|
-- Expose as an API endpoint
|
|
-- Avoid sending a password so use email and chat_id as key pair
|
|
DROP FUNCTION IF EXISTS api.bot(text,BIGINT);
|
|
CREATE OR REPLACE FUNCTION api.bot(IN email TEXT, IN chat_id BIGINT) RETURNS auth.jwt_token
|
|
AS $telegram_bot$
|
|
declare
|
|
_email TEXT := email;
|
|
_chat_id BIGINT := chat_id;
|
|
_exist BOOLEAN := False;
|
|
result auth.jwt_token;
|
|
app_jwt_secret text;
|
|
BEGIN
|
|
IF _email IS NULL OR _chat_id IS NULL THEN
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
END IF;
|
|
-- check email and _chat_id
|
|
select auth.telegram_user_exists_fn(_email, _chat_id) into _exist;
|
|
if _exist is null or _exist <> True then
|
|
RAISE EXCEPTION 'invalid input' USING HINT = 'check your parameter';
|
|
end if;
|
|
|
|
-- Get app_jwt_secret
|
|
SELECT value INTO app_jwt_secret
|
|
FROM app_settings
|
|
WHERE name = 'app.jwt_secret';
|
|
|
|
-- Generate JWT token, force user_role
|
|
select jwt.sign(
|
|
row_to_json(r)::json, app_jwt_secret
|
|
) as token
|
|
from (
|
|
select 'user_role' as role,
|
|
(select lower(_email)) as email,
|
|
extract(epoch from now())::integer + 60*60 as exp
|
|
) r
|
|
into result;
|
|
return result;
|
|
END;
|
|
$telegram_bot$ language plpgsql security definer;
|
|
-- Description
|
|
COMMENT ON FUNCTION
|
|
api.bot
|
|
IS 'Generate a JWT user_role token from email for telegram bot';
|