Refactors custom components to enable shared state accessors (like `authState`) and helpers (like `api.fetch`.) Schemas are now defined with [zod](https://zod.dev/?id=basic-usage) which enables runtime schema validation. See subtasks for full description of change: - https://github.com/webrecorder/browsertrix/pull/1979 - https://github.com/webrecorder/browsertrix/pull/1981 - https://github.com/webrecorder/browsertrix/pull/1985 - https://github.com/webrecorder/browsertrix/pull/1986 --------- Co-authored-by: Emma Segal-Grossman <hi@emma.cafe>
154 lines
4.2 KiB
TypeScript
154 lines
4.2 KiB
TypeScript
import { msg } from "@lit/localize";
|
|
import type { ReactiveController, ReactiveControllerHost } from "lit";
|
|
|
|
import { APIError, type Detail } from "@/utils/api";
|
|
import AuthService from "@/utils/AuthService";
|
|
import appState from "@/utils/state";
|
|
|
|
export type QuotaUpdateDetail = { reached: boolean };
|
|
|
|
export interface APIEventMap {
|
|
"btrix-execution-minutes-quota-update": CustomEvent<QuotaUpdateDetail>;
|
|
"btrix-storage-quota-update": CustomEvent<QuotaUpdateDetail>;
|
|
}
|
|
|
|
/**
|
|
* Utilities for interacting with the Browsertrix backend API
|
|
*
|
|
* @example Usage:
|
|
* ```ts
|
|
* class MyComponent extends LitElement {
|
|
* private api = new APIController(this);
|
|
*
|
|
* async getSomething() {
|
|
* await this.api.fetch("/path")
|
|
* }
|
|
* }
|
|
* ```
|
|
*/
|
|
export class APIController implements ReactiveController {
|
|
host: ReactiveControllerHost & EventTarget;
|
|
|
|
constructor(host: APIController["host"]) {
|
|
this.host = host;
|
|
host.addController(this);
|
|
}
|
|
|
|
hostConnected() {}
|
|
hostDisconnected() {}
|
|
|
|
async fetch<T = unknown>(path: string, options?: RequestInit): Promise<T> {
|
|
const auth = appState.auth;
|
|
|
|
if (!auth) throw new Error("auth not in state");
|
|
|
|
const { headers, ...opts } = options || {};
|
|
const resp = await fetch("/api" + path, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
...headers,
|
|
...auth.headers,
|
|
},
|
|
...opts,
|
|
});
|
|
|
|
if (resp.ok) {
|
|
const body = await resp.json();
|
|
const storageQuotaReached = body.storageQuotaReached;
|
|
const executionMinutesQuotaReached = body.execMinutesQuotaReached;
|
|
if (typeof storageQuotaReached === "boolean") {
|
|
this.host.dispatchEvent(
|
|
new CustomEvent<QuotaUpdateDetail>("btrix-storage-quota-update", {
|
|
detail: { reached: storageQuotaReached },
|
|
bubbles: true,
|
|
composed: true,
|
|
}),
|
|
);
|
|
}
|
|
if (typeof executionMinutesQuotaReached === "boolean") {
|
|
this.host.dispatchEvent(
|
|
new CustomEvent<QuotaUpdateDetail>(
|
|
"btrix-execution-minutes-quota-update",
|
|
{
|
|
detail: { reached: executionMinutesQuotaReached },
|
|
bubbles: true,
|
|
composed: true,
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
return body as T;
|
|
}
|
|
|
|
let errorDetail;
|
|
try {
|
|
errorDetail = (await resp.json()).detail;
|
|
} catch {
|
|
/* empty */
|
|
}
|
|
|
|
let errorMessage: string = msg("Unknown API error");
|
|
|
|
switch (resp.status) {
|
|
case 401: {
|
|
this.host.dispatchEvent(AuthService.createNeedLoginEvent());
|
|
errorMessage = msg("Need login");
|
|
break;
|
|
}
|
|
case 403: {
|
|
if (errorDetail === "storage_quota_reached") {
|
|
this.host.dispatchEvent(
|
|
new CustomEvent<QuotaUpdateDetail>("btrix-storage-quota-update", {
|
|
detail: { reached: true },
|
|
bubbles: true,
|
|
composed: true,
|
|
}),
|
|
);
|
|
errorMessage = msg("Storage quota reached");
|
|
break;
|
|
}
|
|
if (errorDetail === "exec_minutes_quota_reached") {
|
|
this.host.dispatchEvent(
|
|
new CustomEvent<QuotaUpdateDetail>(
|
|
"btrix-execution-minutes-quota-update",
|
|
{
|
|
detail: { reached: true },
|
|
bubbles: true,
|
|
composed: true,
|
|
},
|
|
),
|
|
);
|
|
errorMessage = msg("Monthly execution minutes quota reached");
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
case 404: {
|
|
errorMessage = msg("Not found");
|
|
break;
|
|
}
|
|
default: {
|
|
if (typeof errorDetail === "string") {
|
|
errorMessage = errorDetail;
|
|
} else if (Array.isArray(errorDetail) && errorDetail.length) {
|
|
const fieldDetail = errorDetail[0] || {};
|
|
const { loc, msg } = fieldDetail;
|
|
|
|
const fieldName = loc
|
|
.filter((v: unknown) => v !== "body" && typeof v === "string")
|
|
.join(" ");
|
|
errorMessage = `${fieldName} ${msg}`;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
throw new APIError({
|
|
message: errorMessage,
|
|
status: resp.status,
|
|
details: errorDetail as Detail[],
|
|
});
|
|
}
|
|
}
|