philomena/assets/js/utils/requests.js

38 lines
766 B
JavaScript
Raw Normal View History

// Request Utils
2019-10-05 02:09:52 +02:00
export function fetchJson(verb, endpoint, body) {
2019-10-05 02:09:52 +02:00
const data = {
method: verb,
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json',
2020-09-28 05:53:14 +02:00
'x-csrf-token': window.booru.csrfToken,
'x-requested-with': 'xmlhttprequest'
2019-10-05 02:09:52 +02:00
},
};
if (body) {
body._method = verb;
data.body = JSON.stringify(body);
}
return fetch(endpoint, data);
}
export function fetchHtml(endpoint) {
2019-10-05 02:09:52 +02:00
return fetch(endpoint, {
credentials: 'same-origin',
headers: {
2020-09-28 05:53:14 +02:00
'x-csrf-token': window.booru.csrfToken,
'x-requested-with': 'xmlhttprequest'
2019-10-05 02:09:52 +02:00
},
});
}
export function handleError(response) {
2019-10-05 02:09:52 +02:00
if (!response.ok) {
throw new Error('Received error from server');
}
return response;
}