2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-23 18:38:05 +00:00

55 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-09-21 13:57:49 +04:30
'use strict';
// Utils
2020-05-13 15:11:43 +02:00
const { html } = require('../../utils/html');
const { isMaster } = require('../../utils/config');
const { link, scheduleDeletion } = require('../../utils/tg');
2020-05-13 15:11:43 +02:00
const { parse, strip } = require('../../utils/cmd');
2017-09-21 13:57:49 +04:30
// DB
2023-03-08 14:08:57 +01:00
const { admin, getUser } = require('../../stores/user');
2017-09-21 13:57:49 +04:30
2020-03-10 22:10:48 +01:00
/** @param { import('../../typings/context').ExtendedContext } ctx */
2021-05-07 22:46:11 +02:00
const adminHandler = async (ctx) => {
if (!isMaster(ctx.from)) return null;
2017-09-25 12:40:04 +03:30
2021-05-07 22:46:11 +02:00
const { targets } = parse(ctx.message);
2017-09-21 13:57:49 +04:30
if (targets.length > 1) {
2023-03-08 14:08:57 +01:00
return ctx
.replyWithHTML(' <b>Specify one user to promote.</b>')
.then(scheduleDeletion());
}
const userToAdmin = targets.length
? await getUser(strip(targets[0]))
2021-05-07 22:46:11 +02:00
: ctx.from;
if (!userToAdmin) {
2023-03-08 14:08:57 +01:00
return ctx
.replyWithHTML(
'❓ <b>User unknown.</b>\n' +
'Please forward their message, then try again.'
)
.then(scheduleDeletion());
}
if (userToAdmin.status === 'banned') {
2023-03-08 14:08:57 +01:00
return ctx.replyWithHTML(" <b>Can't admin banned user.</b>");
}
if (userToAdmin.status === 'admin') {
2021-05-07 22:46:11 +02:00
return ctx.replyWithHTML(
2023-03-08 14:08:57 +01:00
html`⭐️ ${link(userToAdmin)} <b>is already admin.</b>`
);
2017-09-21 13:57:49 +04:30
}
2020-05-13 22:05:22 +02:00
await admin(userToAdmin);
2023-03-08 14:08:57 +01:00
return ctx.replyWithHTML(
html`⭐️ ${link(userToAdmin)} <b>is now admin.</b>`
);
2017-09-21 13:57:49 +04:30
};
module.exports = adminHandler;