-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathstoredFunctions.js
63 lines (50 loc) · 1.2 KB
/
storedFunctions.js
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
62
63
const { fetch } = require('./fetch');
const { httpBody } = require('./response-transforms');
const qs = require('querystring');
const add = (conn, functions, params = {}) => {
const headers = conn.headers();
return fetch(conn.request('admin', 'functions', 'stored'), {
method: 'POST',
body: functions,
headers,
}).then(httpBody);
};
const get = (conn, name, params = {}) => {
const headers = conn.headers();
return fetch(
conn.request('admin', 'functions', `stored?${qs.stringify({ name })}`),
{
headers,
}
).then(httpBody);
};
const remove = (conn, name, params = {}) => {
const headers = conn.headers();
return fetch(
conn.request('admin', 'functions', `stored?${qs.stringify({ name })}`),
{
method: 'DELETE',
headers,
}
);
};
const clear = (conn, params = {}) => {
const headers = conn.headers();
return fetch(conn.request('admin', 'functions', 'stored'), {
method: 'DELETE',
headers,
});
};
const getAll = (conn, params = {}) => {
const headers = conn.headers();
return fetch(conn.request('admin', 'functions', 'stored'), {
headers,
}).then(httpBody);
};
module.exports = {
add,
get,
remove,
clear,
getAll,
};