2021-05-13 21:46:39 -05:00
|
|
|
import { Endpoints } from './endpoints';
|
|
|
|
|
2021-05-13 22:56:43 -05:00
|
|
|
export function request<E extends keyof Endpoints>(
|
|
|
|
origin: string,
|
|
|
|
endpoint: E,
|
|
|
|
data: Endpoints[E]['req'] = {},
|
|
|
|
credential: string | null | undefined,
|
|
|
|
): Promise<Endpoints[E]['res']> {
|
|
|
|
const promise = new Promise<Endpoints[E]['res']>((resolve, reject) => {
|
|
|
|
// Append a credential
|
|
|
|
if (credential !== undefined) (data as Record<string, any>).i = credential;
|
|
|
|
|
|
|
|
// Send request
|
|
|
|
fetch(`${origin}/api/${endpoint}`, {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify(data),
|
|
|
|
credentials: 'omit',
|
|
|
|
cache: 'no-cache'
|
|
|
|
}).then(async (res) => {
|
|
|
|
const body = res.status === 204 ? null : await res.json();
|
|
|
|
|
|
|
|
if (res.status === 200) {
|
|
|
|
resolve(body);
|
|
|
|
} else if (res.status === 204) {
|
|
|
|
resolve(null);
|
|
|
|
} else {
|
|
|
|
reject(body.error);
|
|
|
|
}
|
|
|
|
}).catch(reject);
|
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
}
|
|
|
|
|
2021-05-13 21:54:37 -05:00
|
|
|
export class APIClient {
|
2021-05-13 21:46:39 -05:00
|
|
|
public i: { token: string; } | null = null;
|
2021-05-13 22:56:43 -05:00
|
|
|
private origin: string;
|
2021-05-13 21:46:39 -05:00
|
|
|
|
|
|
|
constructor(opts: {
|
2021-05-13 22:56:43 -05:00
|
|
|
origin: APIClient['origin'];
|
2021-05-13 21:46:39 -05:00
|
|
|
}) {
|
2021-05-13 22:56:43 -05:00
|
|
|
this.origin = opts.origin;
|
2021-05-13 21:46:39 -05:00
|
|
|
}
|
|
|
|
|
2021-05-13 21:54:37 -05:00
|
|
|
public request<E extends keyof Endpoints>(
|
2021-05-13 22:56:43 -05:00
|
|
|
endpoint: E, data: Endpoints[E]['req'] = {}, credential?: string | null | undefined,
|
2021-05-13 21:46:39 -05:00
|
|
|
): Promise<Endpoints[E]['res']> {
|
2021-05-13 22:56:43 -05:00
|
|
|
return request(this.origin, endpoint, data, credential === undefined ? this.i?.token : credential);
|
2021-05-13 21:46:39 -05:00
|
|
|
}
|
|
|
|
}
|