Sharkey/src/api.ts

90 lines
2.8 KiB
TypeScript
Raw Normal View History

2021-06-19 17:07:08 +03:00
import { Endpoints } from './api.types';
2021-05-14 05:46:39 +03:00
2021-05-16 06:59:52 +03:00
const MK_API_ERROR = Symbol();
2021-05-16 05:25:03 +03:00
export type APIError = {
id: string;
code: string;
message: string;
kind: 'client' | 'server';
info: Record<string, any>;
};
2021-05-16 06:59:52 +03:00
export function isAPIError(reason: any): reason is APIError {
return reason[MK_API_ERROR] === true;
}
2021-05-23 10:42:27 +03:00
export type FetchLike = (input: string, init?: {
method?: string;
body?: string;
credentials?: RequestCredentials;
cache?: RequestCache;
}) => Promise<{
status: number;
json(): Promise<any>;
}>;
2021-05-31 17:00:48 +03:00
type IsNeverType<T> = [T] extends [never] ? true : false;
type StrictExtract<Union, Cond> = Cond extends Union ? Union : never;
2021-05-14 05:54:37 +03:00
export class APIClient {
2021-05-23 06:15:28 +03:00
public origin: string;
public credential: string | null | undefined;
2021-05-23 10:42:27 +03:00
public fetch: FetchLike;
2021-05-14 05:46:39 +03:00
constructor(opts: {
2021-05-14 06:56:43 +03:00
origin: APIClient['origin'];
2021-05-23 06:15:28 +03:00
credential?: APIClient['credential'];
fetch?: APIClient['fetch'] | null | undefined;
2021-05-14 05:46:39 +03:00
}) {
2021-05-14 06:56:43 +03:00
this.origin = opts.origin;
2021-05-23 06:15:28 +03:00
this.credential = opts.credential;
this.fetch = opts.fetch || fetch;
2021-05-14 05:46:39 +03:00
}
2021-05-31 17:00:48 +03:00
public request<E extends keyof Endpoints, P extends Endpoints[E]['req']>(
2021-06-01 08:17:05 +03:00
endpoint: E, params: P = {} as P, credential?: string | null | undefined,
2021-05-31 17:00:48 +03:00
): Promise<Endpoints[E]['res'] extends { $switch: { $cases: [any, any][]; $default: any; }; }
2021-06-25 03:12:54 +03:00
? IsNeverType<StrictExtract<Endpoints[E]['res']['$switch']['$cases'][0], [P, any]>> extends false
? StrictExtract<Endpoints[E]['res']['$switch']['$cases'][0], [P, any]>[1]
: IsNeverType<StrictExtract<Endpoints[E]['res']['$switch']['$cases'][1], [P, any]>> extends false
? StrictExtract<Endpoints[E]['res']['$switch']['$cases'][1], [P, any]>[1]
: IsNeverType<StrictExtract<Endpoints[E]['res']['$switch']['$cases'][2], [P, any]>> extends false
? StrictExtract<Endpoints[E]['res']['$switch']['$cases'][2], [P, any]>[1]
: IsNeverType<StrictExtract<Endpoints[E]['res']['$switch']['$cases'][3], [P, any]>> extends false
? StrictExtract<Endpoints[E]['res']['$switch']['$cases'][3], [P, any]>[1]
: IsNeverType<StrictExtract<Endpoints[E]['res']['$switch']['$cases'][4], [P, any]>> extends false
? StrictExtract<Endpoints[E]['res']['$switch']['$cases'][4], [P, any]>[1]
: Endpoints[E]['res']['$switch']['$default']
2021-05-31 17:00:48 +03:00
: Endpoints[E]['res']>
{
2021-06-01 08:17:05 +03:00
const promise = new Promise((resolve, reject) => {
2021-05-23 06:15:28 +03:00
this.fetch(`${this.origin}/api/${endpoint}`, {
method: 'POST',
2021-05-23 06:32:58 +03:00
body: JSON.stringify({
2021-05-31 17:00:48 +03:00
...params,
2021-05-23 06:32:58 +03:00
i: credential !== undefined ? credential : this.credential
}),
2021-05-23 06:15:28 +03:00
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({
[MK_API_ERROR]: true,
...body.error
});
}
}).catch(reject);
});
2021-06-01 08:17:05 +03:00
return promise as any;
2021-05-14 05:46:39 +03:00
}
}