Last active
November 15, 2024 20:50
-
-
Save eSlider/629cf2a9c94c1893ac5492a3cd6d3f6c to your computer and use it in GitHub Desktop.
Postgresql python API webhook trigger example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Creates a function that is able to request any URL and return the response | |
create or replace function get_http(url text, data json) returns text | |
language plpython3u as | |
$$ | |
import requests | |
response = requests.get(url, verify=False, json=data) | |
return response.text | |
$$; | |
-- Test-example call a webhook with data and get the response | |
WITH todos AS (SELECT get_http('https://jsonplaceholder.typicode.com/todos/1', | |
json_build_object( | |
'id', 1, | |
'title', 'delectus aut autem', | |
'completed', false | |
) | |
)::json as response) | |
SELECT | |
todos.response ->> 'userId' as userId, | |
todos.response ->> 'id' as id | |
FROM todos; | |
-- Creates a trigger that calls a webhook with the old and new data of the order | |
CREATE OR REPLACE FUNCTION notify_order_change() RETURNS TRIGGER AS | |
$$ | |
BEGIN | |
WITH tokens as (SELECT secret_key FROM tokens WHERE name = 'webhook') | |
SELECT get_http('https://backend/webhook/entries',json_build_object( | |
'id', NEW.id, | |
'old_data', OLD, | |
'new_data', NEW, | |
'secret-key', tokens.secret_key | |
) | |
); | |
RETURN NEW; | |
END; | |
$$ LANGUAGE plpgsql; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment