@@ -20,8 +20,7 @@ CREATE TABLE IF NOT EXISTS supabase_functions.migrations (
20
20
-- Initial supabase_functions migration
21
21
INSERT INTO supabase_functions .migrations (version) VALUES
22
22
(' initial' ),
23
- (' 20210809183423_update_grants' ),
24
- (' 20240125163000_add_retry_to_http_request' )
23
+ (' 20210809183423_update_grants' )
25
24
ON CONFLICT DO NOTHING;
26
25
27
26
-- supabase_functions.hooks definition
@@ -39,101 +38,75 @@ COMMENT ON TABLE supabase_functions.hooks IS 'Supabase Functions Hooks: Audit tr
39
38
CREATE OR REPLACE FUNCTION supabase_functions .http_request()
40
39
RETURNS trigger
41
40
LANGUAGE plpgsql
42
- SECURITY DEFINER
43
- SET search_path TO ' supabase_functions'
44
41
AS $function$
45
42
DECLARE
46
- local_request_id bigint ;
43
+ request_id bigint ;
47
44
payload jsonb;
48
45
url text := TG_ARGV[0 ]::text ;
49
46
method text := TG_ARGV[1 ]::text ;
50
47
headers jsonb DEFAULT ' {}' ::jsonb;
51
48
params jsonb DEFAULT ' {}' ::jsonb;
52
- timeout_ms integer ;
53
- retry_count integer DEFAULT 0 ;
54
- max_retries integer := COALESCE(TG_ARGV[5 ]::integer , 0 );
55
- succeeded boolean := FALSE;
56
- retry_delays double precision [] := ARRAY[0 , 0 .250 , 0 .500 , 1 .000 , 2 .500 , 5 .000 ];
57
- status_code integer := 0 ;
49
+ timeout_ms integer DEFAULT 1000 ;
58
50
BEGIN
59
51
IF url IS NULL OR url = ' null' THEN
60
52
RAISE EXCEPTION ' url argument is missing' ;
61
53
END IF;
54
+
62
55
IF method IS NULL OR method = ' null' THEN
63
56
RAISE EXCEPTION ' method argument is missing' ;
64
57
END IF;
58
+
65
59
IF TG_ARGV[2 ] IS NULL OR TG_ARGV[2 ] = ' null' THEN
66
60
headers = ' {"Content-Type": "application/json"}' ::jsonb;
67
61
ELSE
68
62
headers = TG_ARGV[2 ]::jsonb;
69
63
END IF;
64
+
70
65
IF TG_ARGV[3 ] IS NULL OR TG_ARGV[3 ] = ' null' THEN
71
66
params = ' {}' ::jsonb;
72
67
ELSE
73
68
params = TG_ARGV[3 ]::jsonb;
74
69
END IF;
75
- IF TG_ARGV[4 ] IS NOT NULL OR TG_ARGV[4 ] <> ' null' THEN
70
+
71
+ IF TG_ARGV[4 ] IS NULL OR TG_ARGV[4 ] = ' null' THEN
72
+ timeout_ms = 1000 ;
73
+ ELSE
76
74
timeout_ms = TG_ARGV[4 ]::integer ;
77
75
END IF;
78
- -- Retry loop
79
- WHILE NOT succeeded AND retry_count <= max_retries LOOP
80
- PERFORM pg_sleep(retry_delays[retry_count + 1 ]);
81
- IF retry_delays[retry_count + 1 ] > 0 THEN
82
- RAISE WARNING ' Retrying HTTP request: {retry_attempt: %, url: "%", timeout_ms: %, retry_delay_ms: %}' ,
83
- retry_count, url, timeout_ms, retry_delays[retry_count + 1 ] * 1000 ;
84
- END IF;
85
- retry_count := retry_count + 1 ;
86
- BEGIN
87
- CASE
88
- WHEN method = ' GET' THEN
89
- SELECT http_get INTO local_request_id FROM net .http_get (
90
- url,
91
- params,
92
- headers,
93
- timeout_ms
94
- );
95
- WHEN method = ' POST' THEN
96
- payload = jsonb_build_object(
97
- ' old_record' , OLD,
98
- ' record' , NEW,
99
- ' type' , TG_OP,
100
- ' table' , TG_TABLE_NAME,
101
- ' schema' , TG_TABLE_SCHEMA
102
- );
103
- SELECT http_post INTO local_request_id FROM net .http_post (
104
- url,
105
- payload,
106
- params,
107
- headers,
108
- timeout_ms
109
- );
110
- ELSE
111
- RAISE EXCEPTION ' method argument % is invalid' , method;
112
- END CASE;
113
- IF local_request_id IS NOT NULL THEN
114
- SELECT (response).status_code::integer
115
- INTO status_code
116
- FROM net ._http_collect_response (local_request_id);
117
- IF status_code < 500 THEN
118
- succeeded := TRUE;
119
- END IF;
120
- END IF;
121
- -- Exit loop on successful request
122
- EXIT WHEN succeeded;
123
- EXCEPTION
124
- WHEN OTHERS THEN
125
- IF retry_count > max_retries THEN
126
- -- If retries exhausted, re-raise exception
127
- RAISE EXCEPTION ' HTTP request failed after % retries. SQL Error: { %, % }' ,
128
- max_retries, SQLERRM, SQLSTATE;
129
- END IF;
130
- END;
131
- END LOOP;
132
- -- Failed retries are not logged
76
+
77
+ CASE
78
+ WHEN method = ' GET' THEN
79
+ SELECT http_get INTO request_id FROM net .http_get (
80
+ url,
81
+ params,
82
+ headers,
83
+ timeout_ms
84
+ );
85
+ WHEN method = ' POST' THEN
86
+ payload = jsonb_build_object(
87
+ ' old_record' , OLD,
88
+ ' record' , NEW,
89
+ ' type' , TG_OP,
90
+ ' table' , TG_TABLE_NAME,
91
+ ' schema' , TG_TABLE_SCHEMA
92
+ );
93
+
94
+ SELECT http_post INTO request_id FROM net .http_post (
95
+ url,
96
+ payload,
97
+ params,
98
+ headers,
99
+ timeout_ms
100
+ );
101
+ ELSE
102
+ RAISE EXCEPTION ' method argument % is invalid' , method;
103
+ END CASE;
104
+
133
105
INSERT INTO supabase_functions .hooks
134
106
(hook_table_id, hook_name, request_id)
135
107
VALUES
136
- (TG_RELID, TG_NAME, local_request_id);
108
+ (TG_RELID, TG_NAME, request_id);
109
+
137
110
RETURN NEW;
138
111
END
139
112
$function$;
0 commit comments