jiti-meet/react/features/base/util/httpUtils.ts

46 lines
1.3 KiB
TypeScript
Raw Normal View History

import { timeoutPromise } from './timeoutPromise';
/**
* The number of milliseconds before deciding that we need retry a fetch request.
*
* @type {number}
*/
const RETRY_TIMEOUT = 3000;
/**
* Wrapper around fetch GET requests to handle json-ifying the response
* and logging errors.
*
* @param {string} url - The URL to perform a GET against.
* @param {?boolean} retry - Whether the request will be retried after short timeout.
* @param {?Object} options - The request options.
* @returns {Promise<Object>} The response body, in JSON format, will be
* through the Promise.
*/
2022-07-29 13:18:14 +00:00
export function doGetJSON(url: string, retry?: boolean, options?: Object) {
const fetchPromise = fetch(url, options)
.then(response => {
const jsonify = response.json();
if (response.ok) {
return jsonify;
}
return jsonify
.then(result => Promise.reject(result));
});
if (retry) {
return timeoutPromise(fetchPromise, RETRY_TIMEOUT)
.catch(response => {
if (response.status >= 400 && response.status < 500) {
return Promise.reject(response);
}
return timeoutPromise(fetchPromise, RETRY_TIMEOUT);
});
}
return fetchPromise;
}