Pinafore-Web-Client-Frontend/routes/_utils/ajax.js

75 lines
1.9 KiB
JavaScript
Raw Normal View History

const TIMEOUT = 15000
2018-02-11 23:11:03 +01:00
function fetchWithTimeout (url, options) {
2018-02-24 03:23:36 +01:00
return new Promise((resolve, reject) => {
fetch(url, options).then(resolve, reject)
setTimeout(() => reject(new Error(`Timed out after ${TIMEOUT / 1000} seconds`)), TIMEOUT)
})
}
2018-02-25 04:25:33 +01:00
async function throwErrorIfInvalidResponse(response) {
let json = await response.json()
if (response.status >= 200 && response.status < 300) {
return json
}
if (json && json.error) {
throw new Error(response.status + ': ' + json.error)
}
throw new Error('Request failed: ' + response.status)
}
2018-02-24 03:23:36 +01:00
async function _post (url, body, headers, timeout) {
let fetchFunc = timeout ? fetchWithTimeout : fetch
2018-02-24 23:49:28 +01:00
let opts = {
method: 'POST'
}
if (body) {
opts.headers = Object.assign(headers, {
2018-01-13 23:19:51 +01:00
'Accept': 'application/json',
'Content-Type': 'application/json'
2018-02-24 23:49:28 +01:00
})
opts.body = JSON.stringify(body)
} else {
opts.headers = Object.assign(headers, {
'Accept': 'application/json'
})
}
2018-02-25 04:25:33 +01:00
let response = await fetchFunc(url, opts)
return throwErrorIfInvalidResponse(response)
2018-01-13 23:19:51 +01:00
}
2018-02-24 03:23:36 +01:00
async function _get (url, headers, timeout) {
let fetchFunc = timeout ? fetchWithTimeout : fetch
2018-02-25 04:25:33 +01:00
let response = await fetchFunc(url, {
2018-01-13 23:19:51 +01:00
method: 'GET',
headers: Object.assign(headers, {
2018-02-09 07:29:29 +01:00
'Accept': 'application/json'
2018-01-13 23:19:51 +01:00
})
2018-02-25 04:25:33 +01:00
})
return throwErrorIfInvalidResponse(response)
2018-02-09 07:29:29 +01:00
}
2018-02-24 03:23:36 +01:00
export async function post (url, body, headers = {}) {
return _post(url, body, headers, false)
}
export async function postWithTimeout (url, body, headers = {}) {
return _post(url, body, headers, true)
}
export async function getWithTimeout (url, headers = {}) {
return _get(url, headers, true)
}
export async function get (url, headers = {}) {
return _get(url, headers, false)
}
export function paramsString (paramsObject) {
let params = new URLSearchParams()
Object.keys(paramsObject).forEach(key => {
params.set(key, paramsObject[key])
})
return params.toString()
2018-02-24 23:49:28 +01:00
}