mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-25 17:08:35 +03:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { getHashCache } from "../utils/getHashCache";
|
|
import { db } from "../databases/databases";
|
|
import { Request, Response } from "express";
|
|
import { isUserVIP } from "../utils/isUserVIP";
|
|
import { UserID } from "../types/user.model";
|
|
import { Logger } from "../utils/logger";
|
|
|
|
interface SetConfigRequest extends Request {
|
|
body: {
|
|
userID: UserID;
|
|
key: string;
|
|
value: string;
|
|
}
|
|
}
|
|
|
|
const allowedConfigs = [
|
|
"old-submitter-block-date",
|
|
"max-users-per-minute",
|
|
"max-users-per-minute-dearrow"
|
|
];
|
|
|
|
export async function setConfig(req: SetConfigRequest, res: Response): Promise<Response> {
|
|
const { body: { userID, key, value } } = req;
|
|
|
|
if (!userID || !allowedConfigs.includes(key)) {
|
|
// invalid request
|
|
return res.sendStatus(400);
|
|
}
|
|
|
|
// hash the userID
|
|
const hashedUserID = await getHashCache(userID as UserID);
|
|
const isVIP = (await isUserVIP(hashedUserID));
|
|
|
|
if (!isVIP) {
|
|
// not authorized
|
|
return res.sendStatus(403);
|
|
}
|
|
|
|
try {
|
|
await db.prepare("run", `INSERT INTO "config" ("key", "value") VALUES(?, ?) ON CONFLICT ("key") DO UPDATE SET "value" = ?`, [key, value, value]);
|
|
|
|
return res.sendStatus(200);
|
|
} catch (e) {
|
|
Logger.error(e as string);
|
|
|
|
return res.sendStatus(500);
|
|
}
|
|
}
|