2023-12-02 12:00:05 +00:00
|
|
|
import { SwitchCaseResponseType } from './api.types';
|
|
|
|
import type { Endpoints } from './api.types';
|
|
|
|
|
|
|
|
export {
|
|
|
|
SwitchCaseResponseType,
|
|
|
|
} from './api.types';
|
2023-03-30 00:33:19 +00:00
|
|
|
|
|
|
|
const MK_API_ERROR = Symbol();
|
|
|
|
|
|
|
|
export type APIError = {
|
|
|
|
id: string;
|
|
|
|
code: string;
|
|
|
|
message: string;
|
|
|
|
kind: 'client' | 'server';
|
|
|
|
info: Record<string, any>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export function isAPIError(reason: any): reason is APIError {
|
|
|
|
return reason[MK_API_ERROR] === true;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type FetchLike = (input: string, init?: {
|
2023-12-02 12:00:05 +00:00
|
|
|
method?: string;
|
|
|
|
body?: string;
|
|
|
|
credentials?: RequestCredentials;
|
|
|
|
cache?: RequestCache;
|
|
|
|
headers: { [key in string]: string }
|
|
|
|
}) => Promise<{
|
|
|
|
status: number;
|
|
|
|
json(): Promise<any>;
|
|
|
|
}>;
|
2023-03-30 00:33:19 +00:00
|
|
|
|
|
|
|
export class APIClient {
|
|
|
|
public origin: string;
|
|
|
|
public credential: string | null | undefined;
|
|
|
|
public fetch: FetchLike;
|
|
|
|
|
|
|
|
constructor(opts: {
|
|
|
|
origin: APIClient['origin'];
|
|
|
|
credential?: APIClient['credential'];
|
|
|
|
fetch?: APIClient['fetch'] | null | undefined;
|
|
|
|
}) {
|
|
|
|
this.origin = opts.origin;
|
|
|
|
this.credential = opts.credential;
|
|
|
|
// ネイティブ関数をそのまま変数に代入して使おうとするとChromiumではIllegal invocationエラーが発生するため、
|
|
|
|
// 環境で実装されているfetchを使う場合は無名関数でラップして使用する
|
2023-03-31 00:20:52 +00:00
|
|
|
this.fetch = opts.fetch ?? ((...args) => fetch(...args));
|
2023-03-30 00:33:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public request<E extends keyof Endpoints, P extends Endpoints[E]['req']>(
|
2023-12-02 12:00:05 +00:00
|
|
|
endpoint: E,
|
|
|
|
params: P = {} as P,
|
|
|
|
credential?: string | null,
|
|
|
|
): Promise<SwitchCaseResponseType<E, P>> {
|
|
|
|
return new Promise((resolve, reject) => {
|
2023-03-30 00:33:19 +00:00
|
|
|
this.fetch(`${this.origin}/api/${endpoint}`, {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify({
|
|
|
|
...params,
|
|
|
|
i: credential !== undefined ? credential : this.credential,
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
credentials: 'omit',
|
|
|
|
cache: 'no-cache',
|
|
|
|
}).then(async (res) => {
|
|
|
|
const body = res.status === 204 ? null : await res.json();
|
|
|
|
|
2023-12-02 12:00:05 +00:00
|
|
|
if (res.status === 200 || res.status === 204) {
|
2023-03-30 00:33:19 +00:00
|
|
|
resolve(body);
|
|
|
|
} else {
|
|
|
|
reject({
|
|
|
|
[MK_API_ERROR]: true,
|
|
|
|
...body.error,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).catch(reject);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|