43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/voice-call";
|
|
|
|
type GuardedJsonApiRequestParams = {
|
|
url: string;
|
|
method: "GET" | "POST" | "DELETE" | "PUT" | "PATCH";
|
|
headers: Record<string, string>;
|
|
body?: Record<string, unknown>;
|
|
allowNotFound?: boolean;
|
|
allowedHostnames: string[];
|
|
auditContext: string;
|
|
errorPrefix: string;
|
|
};
|
|
|
|
export async function guardedJsonApiRequest<T = unknown>(
|
|
params: GuardedJsonApiRequestParams,
|
|
): Promise<T> {
|
|
const { response, release } = await fetchWithSsrFGuard({
|
|
url: params.url,
|
|
init: {
|
|
method: params.method,
|
|
headers: params.headers,
|
|
body: params.body ? JSON.stringify(params.body) : undefined,
|
|
},
|
|
policy: { allowedHostnames: params.allowedHostnames },
|
|
auditContext: params.auditContext,
|
|
});
|
|
|
|
try {
|
|
if (!response.ok) {
|
|
if (params.allowNotFound && response.status === 404) {
|
|
return undefined as T;
|
|
}
|
|
const errorText = await response.text();
|
|
throw new Error(`${params.errorPrefix}: ${response.status} ${errorText}`);
|
|
}
|
|
|
|
const text = await response.text();
|
|
return text ? (JSON.parse(text) as T) : (undefined as T);
|
|
} finally {
|
|
await release();
|
|
}
|
|
}
|