You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
766 B

const logger = require('../utils/logger');
module.exports = async (ctx) => {
const body = ctx.request.body;
const dan = new ctx.mongodb({
player: body.id,
author: body.author,
time: body.time,
text: body.text,
color: body.color,
type: body.type,
ip: ctx.ips[0] || ctx.ip,
referer: ctx.headers.referer,
date: +new Date(),
});
try {
const data = await dan.save();
ctx.body = JSON.stringify({
code: 0,
data,
});
ctx.redis.del(`danmaku${data.player}`);
}
catch (err) {
logger.error(err);
ctx.body = JSON.stringify({
code: 1,
msg: `Database error: ${err}`,
});
}
};