'use strict';
// Utils
const { displayUser, link, scheduleDeletion } = require('../../utils/tg');
const { logError } = require('../../utils/log');
const { parse, strip } = require('../../utils/parse');
// Bot
const { replyOptions } = require('../../bot/options');
// DB
const { listGroups } = require('../../stores/group');
const { getUser, unban } = require('../../stores/user');
const noop = Function.prototype;
/** @param { import('../../typings/context').ExtendedContext } ctx */
const unbanHandler = async ({ from, message, reply, telegram }) => {
if (!from || from.status !== 'admin') return null;
const { targets } = parse(message);
if (targets.length !== 1) {
return reply(
'ℹ️ Specify one user to unban.',
replyOptions
).then(scheduleDeletion());
}
const userToUnban = await getUser(strip(targets[0]));
if (!userToUnban) {
return reply(
'❓ User unknown.',
replyOptions
).then(scheduleDeletion());
}
if (userToUnban.status !== 'banned') {
return reply('ℹ️ User is not banned.', replyOptions);
}
const groups = await listGroups();
const unbans = groups.map(group =>
telegram.unbanChatMember(group.id, userToUnban.id));
try {
await Promise.all(unbans);
} catch (err) {
logError(err);
}
try {
await unban(userToUnban);
} catch (err) {
logError(err);
}
telegram.sendMessage(
userToUnban.id,
'♻️ You were unbanned from all of the /groups!'
).catch(noop);
// it's likely that the banned person haven't PMed the bot,
// which will cause the sendMessage to fail,
// hance .catch(noop)
// (it's an expected, non-critical failure)
return reply(`♻️ ${link(from)} unbanned ` +
`${displayUser(userToUnban)}.`, replyOptions);
};
module.exports = unbanHandler;