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

103 lines
2.6 KiB
JavaScript
Raw Normal View History

const TIMEOUT = process.browser ? 60000 : 120000
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)
})
}
function makeOpts (method, headers) {
return {
method,
headers: Object.assign(headers || {}, {
'Accept': 'application/json'
})
}
}
2018-02-25 03:20:33 +01:00
async function throwErrorIfInvalidResponse (response) {
2018-02-25 04:25:33 +01:00
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)
}
async function _fetch (url, options, timeout) {
2018-02-24 03:23:36 +01:00
let fetchFunc = timeout ? fetchWithTimeout : fetch
let response = await fetchFunc(url, options)
2018-02-25 04:25:33 +01:00
return throwErrorIfInvalidResponse(response)
2018-01-13 23:19:51 +01:00
}
async function _putOrPost (url, body, headers, timeout, method) {
let opts = makeOpts(method, headers)
if (body) {
if (body instanceof FormData) {
opts.body = body
} else {
opts.body = JSON.stringify(body)
opts.headers['Content-Type'] = 'application/json'
}
}
return _fetch(url, opts, timeout)
}
async function _post (url, body, headers, timeout) {
return _putOrPost(url, body, headers, timeout, 'POST')
}
async function _put (url, body, headers, timeout) {
return _putOrPost(url, body, headers, timeout, 'PUT')
}
2018-02-24 03:23:36 +01:00
async function _get (url, headers, timeout) {
return _fetch(url, makeOpts('GET', headers), timeout)
2018-02-09 07:29:29 +01:00
}
2018-02-24 03:23:36 +01:00
2018-03-11 01:21:10 +01:00
async function _delete (url, headers, timeout) {
return _fetch(url, makeOpts('DELETE', headers), timeout)
2018-03-11 01:21:10 +01:00
}
export async function put (url, body, headers) {
return _put(url, body, headers, false)
}
export async function putWithTimeout (url, body, headers) {
return _put(url, body, headers, true)
}
export async function post (url, body, headers) {
2018-02-24 03:23:36 +01:00
return _post(url, body, headers, false)
}
export async function postWithTimeout (url, body, headers) {
2018-02-24 03:23:36 +01:00
return _post(url, body, headers, true)
}
export async function getWithTimeout (url, headers) {
2018-02-24 03:23:36 +01:00
return _get(url, headers, true)
}
export async function get (url, headers) {
2018-02-24 03:23:36 +01:00
return _get(url, headers, false)
}
export async function deleteWithTimeout (url, headers) {
2018-03-11 01:21:10 +01:00
return _delete(url, headers, true)
}
2018-02-24 03:23:36 +01:00
export function paramsString (paramsObject) {
2018-03-09 09:08:23 +01:00
let res = ''
Object.keys(paramsObject).forEach((key, i) => {
if (i > 0) {
res += '&'
}
res += encodeURIComponent(key) + '=' + encodeURIComponent(paramsObject[key])
2018-02-24 03:23:36 +01:00
})
2018-03-09 09:08:23 +01:00
return res
2018-02-24 23:49:28 +01:00
}