'use strict';
// Utils
const { link } = require('../../utils/tg');
const { logError } = require('../../utils/log');
// Bot
const { replyOptions } = require('../../bot/options');
// DB
const { listGroups } = require('../../stores/groups');
const { isBanned, unban } = require('../../stores/ban');
const admins = require('../../stores/admin');
const unbanHandler = async ({ message, reply, telegram }) => {
if (!await admins.isAdmin(message.from)) {
return null;
}
if (!message.reply_to_message) {
return reply('ℹ️ Reply to a message.', replyOptions);
}
const userToUnban = message.reply_to_message.from;
if (!await isBanned(userToUnban)) {
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(process.env.DEBUG)(err);
}
try {
await unban(userToUnban);
} catch (err) {
logError(process.env.DEBUG)(err);
}
return reply(`♻️ ${link(userToUnban)} is unbanned.`,
replyOptions);
};
module.exports = unbanHandler;