Spaces:
Running
Running
File size: 1,365 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import type { ErrorObject } from "ajv";
import type { RespondFn } from "./types.js";
import { ErrorCodes, errorShape, formatValidationErrors } from "../protocol/index.js";
import { formatForLog } from "../ws-log.js";
type ValidatorFn = ((value: unknown) => boolean) & {
errors?: ErrorObject[] | null;
};
export function respondInvalidParams(params: {
respond: RespondFn;
method: string;
validator: ValidatorFn;
}) {
params.respond(
false,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid ${params.method} params: ${formatValidationErrors(params.validator.errors)}`,
),
);
}
export async function respondUnavailableOnThrow(respond: RespondFn, fn: () => Promise<void>) {
try {
await fn();
} catch (err) {
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
}
}
export function uniqueSortedStrings(values: unknown[]) {
return [...new Set(values.filter((v) => typeof v === "string"))]
.map((v) => v.trim())
.filter(Boolean)
.toSorted();
}
export function safeParseJson(value: string | null | undefined): unknown {
if (typeof value !== "string") {
return undefined;
}
const trimmed = value.trim();
if (!trimmed) {
return undefined;
}
try {
return JSON.parse(trimmed) as unknown;
} catch {
return { payloadJSON: value };
}
}
|