'use strict';
// Utils
const { scheduleDeletion } = require('../../utils/tg');
// Bot
const { replyOptions } = require('../../bot/options');
// DB
const { isAdmin } = require('../../stores/user');
const warnHandler = async (ctx) => {
const { message, reply, me } = ctx;
const userToWarn = message.reply_to_message
? Object.assign({ username: '' }, message.reply_to_message.from)
: message.commandMention
? Object.assign({ username: '' }, message.commandMention)
: null;
if (ctx.from.status !== 'admin') return null;
if (message.chat.type === 'private') {
return reply(
'ℹ️ This command is only available in groups.',
replyOptions
);
}
if (!userToWarn) {
return reply(
'ℹ️ Reply to a message or mention a user.',
replyOptions
).then(scheduleDeletion);
}
if (userToWarn.username.toLowerCase() === me.toLowerCase()) return null;
const reason = message.text.split(' ').slice(1).join(' ').trim();
if (await isAdmin(userToWarn)) {
return reply('ℹ️ Can\'t warn other admins.', replyOptions);
}
if (reason.length === 0) {
return reply('ℹ️ Need a reason to warn.', replyOptions)
.then(scheduleDeletion);
}
if (message.reply_to_message) {
ctx.deleteMessage(message.reply_to_message.message_id);
}
return ctx.warn({ admin: ctx.from, reason, userToWarn });
};
module.exports = warnHandler;