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.
 
 
 
 
 

89 lines
2.2 KiB

'use strict';
const { Bans } = require(__dirname+'/../../db/')
module.exports = async (req, res, next) => {
const banDate = new Date();
const banExpiry = new Date(req.body.ban_duration ? banDate.getTime() + req.body.ban_duration : 8640000000000000); //perm if none or malformed input
const banReason = req.body.ban_reason || 'No reason specified';
const allowAppeal = req.body.no_appeal ? false : true;
const bans = [];
if (req.body.ban || req.body.global_ban) {
const banBoard = req.body.global_ban ? null : req.params.board;
const ipPosts = res.locals.posts.reduce((acc, post) => {
if (!acc[post.ip]) {
acc[post.ip] = [];
}
acc[post.ip].push(post);
return acc;
}, {});
for (let ip in ipPosts) {
const thisIpPosts = ipPosts[ip];
bans.push({
ip,
'reason': banReason,
'board': banBoard,
'posts': req.body.preserve_post ? thisIpPosts : null,
'issuer': req.session.user.username,
'date': banDate,
'expireAt': banExpiry,
allowAppeal,
'appeal': null
});
}
}
if (req.body.report_ban || req.body.global_report_ban){
const banBoard = req.body.global_report_ban ? null : req.params.board;
res.locals.posts.forEach(post => {
let ips = [];
if (req.body.report_ban) {
const matches = post.reports.map(r => {
if (req.body.checkedreports.includes(r.id.toString())) {
return r.ip;
}
});
ips = ips.concat(matches);
}
if (req.body.global_report_ban) {
const matches = post.globalreports.map(r => {
if (req.body.checkedreports.includes(r.id)) {
return r.ip;
}
});
ips = ips.concat(matches);
}
[...new Set(ips)].forEach(ip => {
bans.push({
'ip': ip,
'reason': banReason,
'board': banBoard,
'posts': null,
'issuer': req.session.user.username,
'date': banDate,
'expireAt': banExpiry,
allowAppeal,
'appeal': null
});
});
});
}
const numBans = await Bans.insertMany(bans).then(result => result.insertedCount);
const query = {
message: `Added ${numBans} bans`,
};
if ((req.body.ban || req.body.global_ban ) && req.body.ban_reason) {
query['action'] = '$set';
query['query'] = {
'banmessage': req.body.ban_reason
};
}
return query;
}