api-client: initial api request
This commit is contained in:
parent
c8ccb32421
commit
4755787b69
1 changed files with 45 additions and 0 deletions
45
packages/api-client/src/api.ts
Normal file
45
packages/api-client/src/api.ts
Normal file
|
@ -0,0 +1,45 @@
|
|||
import { CobaltResponseType, type CobaltAPIResponse } from "./types/response";
|
||||
import type { CobaltRequest } from "./types/request";
|
||||
import { CobaltReachabilityError } from "./types/errors";
|
||||
|
||||
export default class CobaltAPI {
|
||||
#baseURL: string;
|
||||
|
||||
constructor(baseURL: string) {
|
||||
const url = new URL(baseURL);
|
||||
|
||||
if (baseURL !== url.origin && baseURL !== `${url.origin}/`) {
|
||||
throw new Error('Invalid cobalt instance URL');
|
||||
}
|
||||
|
||||
this.#baseURL = url.origin;
|
||||
}
|
||||
|
||||
async request(data: CobaltRequest, headers: Record<string, string>) {
|
||||
const response: CobaltAPIResponse = await fetch(this.#baseURL, {
|
||||
method: 'POST',
|
||||
redirect: 'manual',
|
||||
signal: AbortSignal.timeout(10000),
|
||||
body: JSON.stringify(data),
|
||||
headers: {
|
||||
'Accept': 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
...headers
|
||||
}
|
||||
})
|
||||
.then(r => r.json())
|
||||
.catch((e) => {
|
||||
const timedOut = e?.message?.includes("timed out");
|
||||
return {
|
||||
status: CobaltResponseType.Error,
|
||||
error: {
|
||||
code: timedOut
|
||||
? CobaltReachabilityError.TimedOut
|
||||
: CobaltReachabilityError.Unreachable
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
return response;
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue