48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
import { deepMerge } from "std/collections/deep_merge.ts";
|
|
import { getLogger } from "std/log/mod.ts";
|
|
import { createEndpoint, createMethodFilter } from "t_rest/server";
|
|
import { configSchema, getConfig, setConfig } from "../app/config.ts";
|
|
import { bot } from "../bot/mod.ts";
|
|
import { sessions } from "./sessionsRoute.ts";
|
|
|
|
export const logger = () => getLogger();
|
|
|
|
export const paramsRoute = createMethodFilter({
|
|
GET: createEndpoint(
|
|
{ query: null, body: null },
|
|
async () => {
|
|
const config = await getConfig();
|
|
return { status: 200, body: { type: "application/json", data: config.defaultParams } };
|
|
},
|
|
),
|
|
|
|
PATCH: createEndpoint(
|
|
{
|
|
query: { sessionId: { type: "string" } },
|
|
body: {
|
|
type: "application/json",
|
|
schema: configSchema.properties.defaultParams,
|
|
},
|
|
},
|
|
async ({ query, body }) => {
|
|
const session = sessions.get(query.sessionId);
|
|
if (!session?.userId) {
|
|
return { status: 401, body: { type: "text/plain", data: "Must be logged in" } };
|
|
}
|
|
const chat = await bot.api.getChat(session.userId);
|
|
if (chat.type !== "private") throw new Error("Chat is not private");
|
|
if (!chat.username) {
|
|
return { status: 403, body: { type: "text/plain", data: "Must have a username" } };
|
|
}
|
|
const config = await getConfig();
|
|
if (!config?.adminUsernames?.includes(chat.username)) {
|
|
return { status: 403, body: { type: "text/plain", data: "Must be an admin" } };
|
|
}
|
|
logger().info(`User ${chat.username} updated default params: ${JSON.stringify(body.data)}`);
|
|
const defaultParams = deepMerge(config.defaultParams ?? {}, body.data);
|
|
await setConfig({ defaultParams });
|
|
return { status: 200, body: { type: "application/json", data: config.defaultParams } };
|
|
},
|
|
),
|
|
});
|