-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathapi.js
50 lines (48 loc) · 1.43 KB
/
api.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
const helper = require('./helper');
async function api(baseUrl, config, method, params) {
const url = new URL(baseUrl);
const auth = Buffer.from(`${config.username}:${config.apiKey}`).toString(
'base64'
);
const authHeader = `Basic ${auth}`;
const options = { method, headers: { Authorization: authHeader } };
if (method === 'POST') {
options.body = new helper.FormData();
if (params) {
Object.keys(params).forEach((key) => {
let data = params[key];
if (Array.isArray(data)) {
data = JSON.stringify(data);
}
options.body.append(key, data);
});
}
} else if (params) {
Object.entries(params).forEach(([key, value]) => {
url.searchParams.append(key, value);
});
}
const response = await helper.fetch(url.href, options);
try {
return response.json();
} catch (e) {
if (e instanceof SyntaxError) {
// We probably got a non-JSON response from the server.
// We should inform the user of the same.
let message = 'Server Returned a non-JSON response.';
if (response.status === 404) {
message += ` Maybe endpoint: ${method} ${response.url.replace(
config.apiURL,
''
)} doesn't exist.`;
} else {
message += ' Please check the API documentation.';
}
const error = new Error(message);
error.res = response;
throw error;
}
throw e;
}
}
module.exports = api;