import { Router } from 'express' import wrapper from '../libs/database/wrapper.js' import tx from '../libs/routex.js' import { getStats } from '../libs/serverStats.js' const routes = Router() routes.get( '/', (req, res) => { tx(req, res)('pages/landing.njk', null, { currentSection: null }) } ) routes.get( '/search', (req, res) => { const map = req.query.map ?? "" const categories = req.query.categories ? req.query.categories : "Novice,Moderate,Brutal,Insane,Dummy,DDmaX,Oldschool,Solo,Race,Fun" const stars = req.query.stars ? req.query.stars : "1,2,3,4,5" const sort = req.query.sortBy ? req.query.sortBy : "map" const order = req.query.order === "desc" ? "desc" : "asc" const maps = wrapper.searchMap(map, categories.split(","), stars.split(","), sort, order) tx(req, res)('pages/maps.njk', { maps }, true, { currentSection: "maps" }) } ) routes.get( '/maps', (req, res) => { const maps = wrapper.allMaps() tx(req, res)('pages/maps.njk', { maps }, true, { currentSection: "maps" }) } ) routes.get( '/maps/:map', (req, res) => { const map = wrapper.map(req.params.map) const graphMap = wrapper.graphMap(req.params.map) const raceLeaderboard = wrapper.leaderboardRace(req.params.map, 1, 10) const teamLeaderboard = wrapper.leaderboardTeamrace(req.params.map, 1, 10) const [success, error] = map ? [true, "No error!"] : [false, "Map not found!"] tx(req, res)('pages/mapSingle.njk', { map, graphMap, raceLeaderboard, teamLeaderboard, error }, success, { currentSection: "maps" }) } ) routes.get( '/leaderboards', (req, res) => { const leaderboards = { points: wrapper.leaderboardPoints("points", "Global", 1, 10), pointsRank: wrapper.leaderboardPoints("pointsRank", "Global", 1, 10), pointsTeam: wrapper.leaderboardPoints("pointsTeam", "Global", 1, 10), pointsThisWeek: wrapper.leaderboardPoints("pointsThisWeek", "Global", 1, 10), pointsThisMonth: wrapper.leaderboardPoints("pointsThisMonth", "Global", 1, 10) } tx(req, res)('pages/leaderboards.njk', { leaderboards }, true, { currentSection: "leaderboards" }) } ) routes.get( '/status', (req, res) => { const stats = getStats() tx(req, res)('pages/stats.njk', { stats }, true, { currentSection: null }) } ) export default routes