aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/backend.js
blob: c7abd80cddf7b3ee3006d966570c7998e9b53868 (plain) (blame)
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
async function json(method, url, data, json, headers) {
    const options = {
        method: method,
        body: json != null ? JSON.stringify(json) : data,
        mode: "cors",
        cache: "no-cache",
        credentials: "same-origin",
        headers: headers || {
            "Content-Type": "application/json"
        },
        redirect: "follow",
        referrerPolicy: "no-referrer",
    };
    const response = await fetch(url, options);
    const result = {
        statusCode: response.status,
        status: `${response.status} ${response.statusText}`,
        json: await response.json()
    };

    if (response.status >= 200 && response.status < 300) {
        return result;
    } else {
        return Promise.reject(result);
    }
}

const backend = {
    get: (url = "", headers = null) =>
        json("GET", url, null, null, headers),
    post: (url = "", data = null, headers = null) =>
        json("POST", url, null, data, headers),
    put: (url = "", data = null, headers = null) =>
        json("PUT", url, null, data, headers),
    delete: (url = "", data = null, headers = null) =>
        json("DELETE", url, null, data, headers),
    postFile: (url = "", data = null, headers = {}) =>
        json("POST", url, data, null, headers)
};

export default backend;