18 lines
580 B
TypeScript
18 lines
580 B
TypeScript
import { ErrorCodes, errorShape } from "../protocol/index.js";
|
|
import type { GatewayRequestHandlers } from "./types.js";
|
|
|
|
export function createSecretsHandlers(params: {
|
|
reloadSecrets: () => Promise<{ warningCount: number }>;
|
|
}): GatewayRequestHandlers {
|
|
return {
|
|
"secrets.reload": async ({ respond }) => {
|
|
try {
|
|
const result = await params.reloadSecrets();
|
|
respond(true, { ok: true, warningCount: result.warningCount });
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, String(err)));
|
|
}
|
|
},
|
|
};
|
|
}
|