-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathutil.c
62 lines (47 loc) · 1.56 KB
/
util.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "pg_prelude.h"
#include "curl_prelude.h"
#include "util.h"
PG_FUNCTION_INFO_V1(_urlencode_string);
PG_FUNCTION_INFO_V1(_encode_url_with_params_array);
Datum _urlencode_string(PG_FUNCTION_ARGS) {
char *str = text_to_cstring(PG_GETARG_TEXT_P(0));
char *urlencoded_str = NULL;
urlencoded_str = curl_escape(str, strlen(str));
pfree(str);
PG_RETURN_TEXT_P(cstring_to_text(urlencoded_str));
}
Datum _encode_url_with_params_array(PG_FUNCTION_ARGS) {
CURLU *h = curl_url();
CURLUcode rc;
char *url = text_to_cstring(PG_GETARG_TEXT_P(0));
ArrayType *params = PG_GETARG_ARRAYTYPE_P(1);
char *full_url = NULL;
ArrayIterator iterator;
Datum value;
bool isnull;
char *param;
rc = curl_url_set(h, CURLUPART_URL, url, 0);
if (rc != CURLUE_OK) {
// TODO: Use curl_url_strerror once released.
elog(ERROR, "%s", curl_easy_strerror((CURLcode)rc));
}
iterator = array_create_iterator(params, 0, NULL);
while (array_iterate(iterator, &value, &isnull)) {
if (isnull)
continue;
param = TextDatumGetCString(value);
rc = curl_url_set(h, CURLUPART_QUERY, param, CURLU_APPENDQUERY);
if (rc != CURLUE_OK) {
elog(ERROR, "curl_url returned: %d", rc);
}
pfree(param);
}
array_free_iterator(iterator);
rc = curl_url_get(h, CURLUPART_URL, &full_url, 0);
if (rc != CURLUE_OK) {
elog(ERROR, "curl_url returned: %d", rc);
}
pfree(url);
curl_url_cleanup(h);
PG_RETURN_TEXT_P(cstring_to_text(full_url));
}