Sharkey/src/api.ts

43 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-05-14 05:46:39 +03:00
import { Endpoints } from './endpoints';
2021-05-14 05:54:37 +03:00
export class APIClient {
2021-05-14 05:46:39 +03:00
public i: { token: string; } | null = null;
private apiUrl: string;
constructor(opts: {
2021-05-14 05:54:37 +03:00
apiUrl: APIClient['apiUrl'];
2021-05-14 05:46:39 +03:00
}) {
this.apiUrl = opts.apiUrl;
}
2021-05-14 05:54:37 +03:00
public request<E extends keyof Endpoints>(
2021-05-14 05:46:39 +03:00
endpoint: E, data: Endpoints[E]['req'] = {}, token?: string | null | undefined
): Promise<Endpoints[E]['res']> {
const promise = new Promise<Endpoints[E]['res']>((resolve, reject) => {
// Append a credential
if (this.i) (data as Record<string, any>).i = this.i.token;
if (token !== undefined) (data as Record<string, any>).i = token;
// Send request
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${this.apiUrl}/${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;
}
}