2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-24 19:07:17 +00:00
the-guard-bot/handlers/regex/runCustomCmd.js

69 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-10-04 20:55:50 +03:30
'use strict';
const { hears } = require('telegraf');
const R = require('ramda');
2017-10-04 20:55:50 +03:30
// DB
const { getCommand } = require('../../stores/command');
const { scheduleDeletion } = require('../../utils/tg');
const { isMaster } = require('../../utils/config');
const config = require('../../config');
const deleteCustom = config.deleteCustom || { longerThan: Infinity };
const capitalize = R.replace(/^./, R.toUpper);
const getRepliedToId = R.path([ 'reply_to_message', 'message_id' ]);
const typeToMethod = type =>
type === 'text'
? 'replyWithHTML'
: `replyWith${capitalize(type)}`;
const autoDelete = ({ content, type }) => {
switch (type) {
case 'text':
return content.length > deleteCustom.longerThan;
case 'copy':
return (content.text || '').length > deleteCustom.longerThan;
default:
return false;
}
};
const hasRole = (role, from) => {
switch (role.toLowerCase()) {
case 'master':
return isMaster(from);
case 'admins':
return from && from.status === 'admin';
default:
return true;
}
};
2017-10-04 20:55:50 +03:30
const runCustomCmdHandler = async (ctx, next) => {
const commandName = ctx.match[1].toLowerCase();
2017-10-04 20:55:50 +03:30
const command = await getCommand({ isActive: true, name: commandName });
if (!command || !hasRole(command.role, ctx.from)) {
2017-10-04 20:55:50 +03:30
return next();
}
const { caption, content, type } = command;
2017-10-04 20:55:50 +03:30
const options = {
...caption && { caption },
disable_web_page_preview: true,
reply_to_message_id: getRepliedToId(ctx.message),
};
return ctx[typeToMethod(type)](content, options)
.then(scheduleDeletion(autoDelete(command) && deleteCustom.after));
2017-10-04 20:55:50 +03:30
};
2019-04-20 11:40:03 +02:00
module.exports = hears(/^! ?(\w+)/, runCustomCmdHandler);