Enum for report menu types

This commit is contained in:
Rory&
2026-01-14 23:11:06 +01:00
parent a0417adff2
commit 35111173c3
3 changed files with 66 additions and 13 deletions
Binary file not shown.
@@ -18,25 +18,35 @@
import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
import { ReportMenuTypeNames } from "../../../schemas/api/reports/ReportMenu";
const router = Router({ mergeParams: true });
for (const type of [
"guild",
"guild_discovery",
"guild_directory_entry",
"guild_scheduled_event",
"message",
"stage_channel",
"first_dm",
"user",
"application",
"widget",
] as const) {
console.log("[Server] Registering reporting menu routes...");
router.get(
"/",
route({
description: "[EXT] Get available reporting menu types.",
responses: {
200: {
body: "Array<ReportMenuTypeNames>",
},
},
}),
(req: Request, res: Response) => {
res.json(Object.values(ReportMenuTypeNames));
},
);
for (const type of Object.values(ReportMenuTypeNames)) {
console.log(`[Server] Route /reporting/menu/${type} registered (reports).`);
router.get(
`/${type}`,
route({
description: `Get reporting menu options for ${type} reports.`,
query: {
variant: { type: "string", required: false, description: "Version variant of the menu to retrieve (max 256 characters, default active)" },
},
responses: {
200: {
body: "ReportingMenuResponse",
@@ -46,7 +56,7 @@ for (const type of [
}),
(req: Request, res: Response) => {
// TODO: implement
//res.send([] as ReportingMenuResponseSchema);
// res.send([] as ReportingMenuResponseSchema);
},
);
}
+43
View File
@@ -0,0 +1,43 @@
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2025 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export enum ReportMenuType {
GUILD,
GUILD_DISCOVERY,
GUILD_DIRECTORY_ENTRY,
GUILD_SCHEDULED_EVENT,
MESSAGE,
STAGE_CHANNEL,
FIRST_DM,
USER,
APPLICATION,
WIDGET,
}
export const ReportMenuTypeNames: Record<ReportMenuType, string> = {
[ReportMenuType.GUILD]: "guild",
[ReportMenuType.GUILD_DISCOVERY]: "guild_discovery",
[ReportMenuType.GUILD_DIRECTORY_ENTRY]: "guild_directory_entry",
[ReportMenuType.GUILD_SCHEDULED_EVENT]: "guild_scheduled_event",
[ReportMenuType.MESSAGE]: "message",
[ReportMenuType.STAGE_CHANNEL]: "stage_channel",
[ReportMenuType.FIRST_DM]: "first_dm",
[ReportMenuType.USER]: "user",
[ReportMenuType.APPLICATION]: "application",
[ReportMenuType.WIDGET]: "widget",
};