First Commit
This commit is contained in:
29
src/web/helper/log.ts
Normal file
29
src/web/helper/log.ts
Normal file
@ -0,0 +1,29 @@
|
||||
import { LoggingBase } from "@hibas123/nodelogging";
|
||||
import { Context } from "koa";
|
||||
import config from "../../config";
|
||||
|
||||
const route_logging = new LoggingBase({ name: "access", files: { errorfile: null }, console: config.general.dev })
|
||||
const RequestLog = async (ctx: Context, next) => {
|
||||
if (!config.general.access_log) return next();
|
||||
let start = process.hrtime()
|
||||
let to = false
|
||||
let print = () => {
|
||||
let td = process.hrtime(start)
|
||||
let time = !to ? (td[0] * 1e3 + td[1] / 1e6).toFixed(2) : "--.--"
|
||||
let resColor = ""
|
||||
let status = ctx.status;
|
||||
if (status >= 200 && status < 300) resColor = "\x1b[32m" //Green
|
||||
else if (status === 304 || status === 302) resColor = "\x1b[33m"
|
||||
else if (status >= 400 && status < 500) resColor = "\x1b[36m" //Cyan
|
||||
else if (status >= 500 && status < 600) resColor = "\x1b[31m" //Red
|
||||
let m = ctx.method
|
||||
while (m.length < 4) m += " "
|
||||
let message = `${m} ${ctx.originalUrl.split("?", 1)[0]} ${resColor}${status}\x1b[0m - ${time}ms`;
|
||||
route_logging.log(message);
|
||||
}
|
||||
let timeout = new Promise((yes) => setTimeout(() => (to = true) && yes(), 10000));
|
||||
await Promise.race([timeout, next()]);
|
||||
print();
|
||||
};
|
||||
|
||||
export default RequestLog;
|
Reference in New Issue
Block a user