2024-01-20 04:57:03 +00:00
|
|
|
|
import './autogen/apiClientJSDoc.js';
|
2023-12-08 06:15:17 +00:00
|
|
|
|
|
2024-07-07 05:08:18 +00:00
|
|
|
|
import { endpointReqTypes } from './autogen/endpoint.js';
|
|
|
|
|
import type { SwitchCaseResponseType, Endpoints } from './api.types.js';
|
2023-12-02 12:00:05 +00:00
|
|
|
|
|
2024-03-30 06:28:19 +00:00
|
|
|
|
export type {
|
2023-12-02 12:00:05 +00:00
|
|
|
|
SwitchCaseResponseType,
|
2024-01-20 04:57:03 +00:00
|
|
|
|
} from './api.types.js';
|
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';
|
2024-07-25 07:40:14 +00:00
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2023-03-30 00:33:19 +00:00
|
|
|
|
info: Record<string, any>;
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-12 02:38:16 +00:00
|
|
|
|
export function isAPIError(reason: Record<PropertyKey, unknown>): reason is APIError {
|
2023-03-30 00:33:19 +00:00
|
|
|
|
return reason[MK_API_ERROR] === true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type FetchLike = (input: string, init?: {
|
2023-12-02 12:00:05 +00:00
|
|
|
|
method?: string;
|
2024-07-07 05:08:18 +00:00
|
|
|
|
body?: Blob | FormData | string;
|
2023-12-02 12:00:05 +00:00
|
|
|
|
credentials?: RequestCredentials;
|
|
|
|
|
cache?: RequestCache;
|
|
|
|
|
headers: { [key in string]: string }
|
|
|
|
|
}) => Promise<{
|
|
|
|
|
status: number;
|
2024-07-25 07:40:14 +00:00
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2023-12-02 12:00:05 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 07:40:14 +00:00
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2024-07-07 05:08:18 +00:00
|
|
|
|
private assertIsRecord<T>(obj: T): obj is T & Record<string, any> {
|
|
|
|
|
return obj !== null && typeof obj === 'object' && !Array.isArray(obj);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 08:22:45 +00:00
|
|
|
|
private assertSpecialEpReqType(ep: keyof Endpoints): ep is keyof typeof endpointReqTypes {
|
|
|
|
|
return ep in endpointReqTypes;
|
|
|
|
|
}
|
|
|
|
|
|
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) => {
|
2024-07-07 05:08:18 +00:00
|
|
|
|
let mediaType = 'application/json';
|
2024-09-06 17:38:01 +00:00
|
|
|
|
// (autogenがバグったときのため、念の為nullチェックも行う)
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
2024-09-06 08:22:45 +00:00
|
|
|
|
if (this.assertSpecialEpReqType(endpoint) && endpointReqTypes[endpoint] != null) {
|
2024-07-07 05:08:18 +00:00
|
|
|
|
mediaType = endpointReqTypes[endpoint];
|
|
|
|
|
}
|
2024-09-06 17:38:01 +00:00
|
|
|
|
|
2024-07-07 05:08:18 +00:00
|
|
|
|
let payload: FormData | string = '{}';
|
|
|
|
|
|
|
|
|
|
if (mediaType === 'application/json') {
|
|
|
|
|
payload = JSON.stringify({
|
2023-03-30 00:33:19 +00:00
|
|
|
|
...params,
|
|
|
|
|
i: credential !== undefined ? credential : this.credential,
|
2024-07-07 05:08:18 +00:00
|
|
|
|
});
|
|
|
|
|
} else if (mediaType === 'multipart/form-data') {
|
|
|
|
|
payload = new FormData();
|
|
|
|
|
const i = credential !== undefined ? credential : this.credential;
|
|
|
|
|
if (i != null) {
|
|
|
|
|
payload.append('i', i);
|
|
|
|
|
}
|
|
|
|
|
if (this.assertIsRecord(params)) {
|
|
|
|
|
for (const key in params) {
|
|
|
|
|
const value = params[key];
|
|
|
|
|
|
|
|
|
|
if (value == null) continue;
|
|
|
|
|
|
|
|
|
|
if (value instanceof File || value instanceof Blob) {
|
|
|
|
|
payload.append(key, value);
|
|
|
|
|
} else if (typeof value === 'object') {
|
|
|
|
|
payload.append(key, JSON.stringify(value));
|
|
|
|
|
} else {
|
|
|
|
|
payload.append(key, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.fetch(`${this.origin}/api/${endpoint}`, {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
body: payload,
|
2023-03-30 00:33:19 +00:00
|
|
|
|
headers: {
|
2024-09-06 08:22:45 +00:00
|
|
|
|
'Content-Type': mediaType,
|
2023-03-30 00:33:19 +00:00
|
|
|
|
},
|
|
|
|
|
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);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|