2026-06-13 11:24:42 +07:00
|
|
|
import type { Request, Response, Router } from "express";
|
|
|
|
|
import express from "express";
|
2026-08-01 22:09:02 +07:00
|
|
|
import { createChildLogger } from "@/shared/logger/index";
|
2026-06-13 11:24:42 +07:00
|
|
|
import { asyncHandler } from "../../shared/middlewares/index.js";
|
|
|
|
|
import { dashboardService } from "./dashboard.service.js";
|
|
|
|
|
|
|
|
|
|
const logger = createChildLogger("dashboard.routes");
|
|
|
|
|
|
|
|
|
|
export function createDashboardRouter(): Router {
|
|
|
|
|
const router = express.Router();
|
|
|
|
|
|
|
|
|
|
// GET /api/dashboard/stats — aggregated server statistics
|
|
|
|
|
router.get(
|
|
|
|
|
"/dashboard/stats",
|
|
|
|
|
asyncHandler(async (_req: Request, res: Response) => {
|
|
|
|
|
logger.debug("Fetching dashboard stats");
|
|
|
|
|
const stats = await dashboardService.getStats();
|
|
|
|
|
res.json(stats);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// GET /api/dashboard/users — paginated user list with profiles
|
|
|
|
|
router.get(
|
|
|
|
|
"/dashboard/users",
|
|
|
|
|
asyncHandler(async (req: Request, res: Response) => {
|
2026-07-02 03:54:44 +07:00
|
|
|
const limit = Number(req.query.limit) || 20;
|
2026-06-13 11:24:42 +07:00
|
|
|
const cursor =
|
|
|
|
|
typeof req.query.cursor === "string" ? req.query.cursor : undefined;
|
|
|
|
|
const search =
|
|
|
|
|
typeof req.query.search === "string" ? req.query.search : undefined;
|
|
|
|
|
|
|
|
|
|
const result = await dashboardService.listUsers({
|
|
|
|
|
limit,
|
|
|
|
|
cursor,
|
|
|
|
|
search,
|
|
|
|
|
});
|
|
|
|
|
res.json(result);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// GET /api/dashboard/users/:userId — single user detail
|
|
|
|
|
router.get(
|
|
|
|
|
"/dashboard/users/:userId",
|
|
|
|
|
asyncHandler(async (req: Request, res: Response) => {
|
|
|
|
|
const userId = String(req.params.userId);
|
|
|
|
|
const detail = await dashboardService.getUserDetail(userId);
|
|
|
|
|
res.json(detail);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
|
2026-06-13 12:24:32 +07:00
|
|
|
// GET /api/dashboard/channels — paginated channel list with culture summaries
|
|
|
|
|
router.get(
|
|
|
|
|
"/dashboard/channels",
|
|
|
|
|
asyncHandler(async (req: Request, res: Response) => {
|
2026-07-02 03:54:44 +07:00
|
|
|
const limit = Number(req.query.limit) || 20;
|
2026-06-13 12:24:32 +07:00
|
|
|
const search =
|
|
|
|
|
typeof req.query.search === "string" ? req.query.search : undefined;
|
|
|
|
|
const guildId =
|
2026-06-13 13:51:21 +07:00
|
|
|
typeof req.query.guild_id === "string" ? req.query.guild_id : undefined;
|
2026-06-13 12:24:32 +07:00
|
|
|
|
|
|
|
|
const result = await dashboardService.listChannels({
|
|
|
|
|
limit,
|
|
|
|
|
search,
|
|
|
|
|
guildId,
|
|
|
|
|
});
|
|
|
|
|
res.json(result);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// GET /api/dashboard/channels/:channelId — single channel detail
|
|
|
|
|
router.get(
|
|
|
|
|
"/dashboard/channels/:channelId",
|
|
|
|
|
asyncHandler(async (req: Request, res: Response) => {
|
|
|
|
|
const channelId = String(req.params.channelId);
|
|
|
|
|
const detail = await dashboardService.getChannelDetail(channelId);
|
|
|
|
|
res.json(detail);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
|
2026-06-13 11:24:42 +07:00
|
|
|
return router;
|
|
|
|
|
}
|