2019-02-11 22:39:42 +01:00
|
|
|
module.exports = (random, kys, default_text, bot_text, excluded_names) => (ctx) => {
|
2019-02-11 21:23:32 +01:00
|
|
|
|
|
|
|
if (ctx.message.reply_to_message) {
|
|
|
|
|
|
|
|
const { from } = ctx.message.reply_to_message;
|
|
|
|
const name = from.username ? "@" + from.username : from.firstName;
|
2019-02-11 22:39:42 +01:00
|
|
|
if (name == excluded_names[0])
|
|
|
|
return bot_text;
|
2019-02-11 21:23:32 +01:00
|
|
|
return random(kys)().replace(/##name##/g, name);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
const text_array = ctx.message.text.split(" ");
|
|
|
|
if (text_array.length > 1) {
|
|
|
|
|
|
|
|
const name = text_array[1];
|
2019-02-11 22:39:42 +01:00
|
|
|
if (excluded_names.includes(name)
|
|
|
|
|| excluded_names.includes("@" + name))
|
|
|
|
return bot_text;
|
|
|
|
|
2019-02-11 21:23:32 +01:00
|
|
|
return random(kys)().replace(/##name##/g, name);
|
|
|
|
|
|
|
|
} else
|
|
|
|
return default_text;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|