jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
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.
 
 
 
 
 

29 lines
717 B

'use strict';
const Bans = require(__dirname+'/../../db/bans.js')
module.exports = async (req, res, next, board, posts) => {
const bans = posts.map(post => {
return {
'ip': post.ip,
'reason': req.body.ban_reason || 'No reason specified',
'board': board,
'post': req.body.preserve_post ? post : null,
'issuer': req.session.user.username,
'date': new Date(),
'expireAt': new Date((new Date).getTime() + (72*1000*60*60)) // 72h ban
}
});
const bannedIps = await Bans.insertMany(bans).then(result => result.insertedCount);
return {
message:`Banned ${bannedIps} ips`,
action:'$set',
query: {
'banmessage': req.body.ban_reason || ''
}
};
}