kutt
Version:
Node.js & browser (TypeScript) client for Kutt url shortener
52 lines • 1.65 kB
JavaScript
import { reviver } from "#src/utils";
import Base, { METHOD } from "./API.js";
/**
*
*/
export default class API extends Base {
/**
*
* @param request
* @protected
*/
async request(request) {
const { config: { key, timeout } } = this;
const { method = METHOD.GET, body, params } = request;
let { url = "" } = request;
const abortController = (new AbortController);
const init = {
method,
signal: abortController.signal,
headers: {
"X-API-Key": key,
"Content-Type": "application/json",
},
};
if (body != null)
init.body = JSON.stringify(body);
if (params != null)
url += `?${new URLSearchParams(params).toString()}`;
const timeoutId = setTimeout(() => abortController.abort(), timeout);
return fetch(this.url(url), init)
.then(async (r) => {
clearTimeout(timeoutId);
let response = await r.text();
if (r.headers.get("Content-Type")?.startsWith("application/json"))
response = JSON.parse(response, reviver);
if (!r.ok) {
throw new Error(response?.error ?? "Something went wrong", {
cause: {
data: response,
status: r.status,
},
});
}
return response;
})
.catch((error) => {
clearTimeout(timeoutId);
throw error;
});
}
}
//# sourceMappingURL=API.browser.js.map