You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
844 B
JavaScript
36 lines
844 B
JavaScript
import polka from 'polka'
|
|
import send from '@polka/send-type'
|
|
|
|
import chalk from 'chalk'
|
|
import { toLocalISO } from '../utils/util.js'
|
|
|
|
export const StatusRouter = polka()
|
|
|
|
StatusRouter.get('/status', (req, res) => {
|
|
send(res, 200, { status: 'ok' })
|
|
})
|
|
|
|
export const PingRouter = polka()
|
|
|
|
PingRouter.post('/ping', (req, res) => {
|
|
if (req.body?.message === 'ping') {
|
|
send(res, 200, 'pong')
|
|
} else {
|
|
send(res, 400, 'Invalid request')
|
|
}
|
|
})
|
|
|
|
export const LoggingMiddleware = (req, res, next) => {
|
|
next()
|
|
|
|
const coloredStatusCode = [
|
|
chalk.gray,
|
|
chalk.green,
|
|
chalk.blueBright,
|
|
chalk.red,
|
|
chalk.redBright,
|
|
][Math.floor(res.statusCode / 100) - 1](res.statusCode)
|
|
|
|
console.log(`${toLocalISO(new Date())} | ${req.method} ${req.originalUrl} ${coloredStatusCode}`)
|
|
}
|