teloxide/examples/admin.rs

154 lines
4.3 KiB
Rust
Raw Normal View History

2021-07-05 21:16:29 +02:00
use std::{error::Error, str::FromStr};
2020-02-13 19:26:06 +01:00
2022-01-12 12:03:10 +01:00
use chrono::Duration;
use teloxide::{prelude2::*, types::ChatPermissions, utils::command::BotCommands};
2020-02-11 20:35:22 +01:00
// Derive BotCommands to parse text with a command into this enumeration.
2020-02-13 19:11:56 +01:00
//
// 1. rename = "lowercase" turns all the commands into lowercase letters.
// 2. `description = "..."` specifies a text before all the commands.
//
// That is, you can just call Command::descriptions() to get a description of
// your commands in this format:
// %GENERAL-DESCRIPTION%
// %PREFIX%%COMMAND% - %DESCRIPTION%
#[derive(BotCommands, Clone)]
2020-02-13 18:23:22 +01:00
#[command(
rename = "lowercase",
2020-06-24 19:43:21 +02:00
description = "Use commands in format /%command% %num% %unit%",
parse_with = "split"
2020-02-13 18:23:22 +01:00
)]
2020-02-11 20:35:22 +01:00
enum Command {
#[command(description = "kick user from chat.")]
Kick,
#[command(description = "ban user in chat.")]
2020-06-24 19:43:21 +02:00
Ban {
2021-07-05 21:16:29 +02:00
time: u64,
2020-06-24 19:43:21 +02:00
unit: UnitOfTime,
},
2020-02-11 20:35:22 +01:00
#[command(description = "mute user in chat.")]
2020-06-24 19:43:21 +02:00
Mute {
2021-07-05 21:16:29 +02:00
time: u64,
2020-06-24 19:43:21 +02:00
unit: UnitOfTime,
},
2020-02-11 20:35:22 +01:00
Help,
}
2021-12-26 18:59:32 +01:00
#[derive(Clone)]
2020-06-24 19:43:21 +02:00
enum UnitOfTime {
Seconds,
Minutes,
Hours,
2020-02-11 20:35:22 +01:00
}
2020-06-24 19:43:21 +02:00
impl FromStr for UnitOfTime {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
match s {
"h" | "hours" => Ok(UnitOfTime::Hours),
"m" | "minutes" => Ok(UnitOfTime::Minutes),
"s" | "seconds" => Ok(UnitOfTime::Seconds),
_ => Err("Allowed units: h, m, s"),
}
2020-02-11 20:35:22 +01:00
}
}
2020-06-24 19:43:21 +02:00
// Calculates time of user restriction.
2021-07-05 21:16:29 +02:00
fn calc_restrict_time(time: u64, unit: UnitOfTime) -> Duration {
2020-06-24 19:43:21 +02:00
match unit {
2021-07-05 21:16:29 +02:00
UnitOfTime::Hours => Duration::hours(time as i64),
UnitOfTime::Minutes => Duration::minutes(time as i64),
UnitOfTime::Seconds => Duration::seconds(time as i64),
2020-06-24 19:43:21 +02:00
}
2020-02-11 20:35:22 +01:00
}
2022-02-04 14:09:32 +01:00
type Bot = AutoSend<teloxide::Bot>;
2020-02-13 19:11:56 +01:00
2021-12-26 18:59:32 +01:00
// Kick a user with a replied message.
2022-02-04 14:09:32 +01:00
async fn kick_user(bot: Bot, msg: Message) -> Result<(), Box<dyn Error + Send + Sync>> {
match msg.reply_to_message() {
2021-12-26 18:59:32 +01:00
Some(replied) => {
// bot.unban_chat_member can also kicks a user from a group chat.
2022-02-04 14:45:35 +01:00
bot.unban_chat_member(msg.chat.id, replied.from().unwrap().id).await?;
2020-06-24 19:43:21 +02:00
}
2020-02-13 16:42:24 +01:00
None => {
2022-02-04 14:45:35 +01:00
bot.send_message(msg.chat.id, "Use this command in reply to another message").await?;
2020-02-13 18:23:22 +01:00
}
2020-02-13 16:42:24 +01:00
}
Ok(())
}
2021-12-26 18:59:32 +01:00
// Mute a user with a replied message.
async fn mute_user(
2022-02-04 14:09:32 +01:00
bot: Bot,
msg: Message,
2021-12-26 18:59:32 +01:00
time: Duration,
) -> Result<(), Box<dyn Error + Send + Sync>> {
match msg.reply_to_message() {
2021-12-26 18:59:32 +01:00
Some(replied) => {
bot.restrict_chat_member(
2022-02-04 14:45:35 +01:00
msg.chat.id,
2021-12-26 18:59:32 +01:00
replied.from().expect("Must be MessageKind::Common").id,
2022-02-03 15:39:32 +01:00
ChatPermissions::empty(),
2021-12-26 18:59:32 +01:00
)
2022-02-03 15:39:32 +01:00
.until_date(msg.date + time)
2021-12-26 18:59:32 +01:00
.await?;
2020-02-13 18:23:22 +01:00
}
2020-02-13 16:42:24 +01:00
None => {
2022-02-04 14:45:35 +01:00
bot.send_message(msg.chat.id, "Use this command in a reply to another message!")
2021-12-26 18:59:32 +01:00
.await?;
2020-02-13 16:42:24 +01:00
}
}
Ok(())
}
2020-02-13 19:11:56 +01:00
// Ban a user with replied message.
2021-12-26 18:59:32 +01:00
async fn ban_user(
2022-02-04 14:09:32 +01:00
bot: Bot,
msg: Message,
2021-12-26 18:59:32 +01:00
time: Duration,
) -> Result<(), Box<dyn Error + Send + Sync>> {
match msg.reply_to_message() {
2021-12-26 18:59:32 +01:00
Some(replied) => {
bot.kick_chat_member(
2022-02-04 14:45:35 +01:00
msg.chat.id,
2021-12-26 18:59:32 +01:00
replied.from().expect("Must be MessageKind::Common").id,
)
2022-02-03 15:39:32 +01:00
.until_date(msg.date + time)
2021-12-26 18:59:32 +01:00
.await?;
2020-06-24 19:43:21 +02:00
}
2020-02-13 16:42:24 +01:00
None => {
2022-02-04 14:45:35 +01:00
bot.send_message(msg.chat.id, "Use this command in a reply to another message!")
2021-12-26 18:59:32 +01:00
.await?;
2020-02-13 18:23:22 +01:00
}
2020-02-13 16:42:24 +01:00
}
Ok(())
}
2021-12-26 18:59:32 +01:00
async fn action(
2022-02-04 14:09:32 +01:00
bot: Bot,
msg: Message,
2021-12-26 18:59:32 +01:00
command: Command,
) -> Result<(), Box<dyn Error + Send + Sync>> {
2020-02-18 23:54:41 +01:00
match command {
2021-12-26 18:59:32 +01:00
Command::Help => {
bot.send_message(msg.chat.id, Command::descriptions().to_string()).await?;
2021-12-26 18:59:32 +01:00
}
Command::Kick => kick_user(bot, msg).await?,
Command::Ban { time, unit } => ban_user(bot, msg, calc_restrict_time(time, unit)).await?,
Command::Mute { time, unit } => mute_user(bot, msg, calc_restrict_time(time, unit)).await?,
2020-02-18 23:54:41 +01:00
};
2020-02-11 20:35:22 +01:00
Ok(())
}
#[tokio::main]
async fn main() {
pretty_env_logger::init();
log::info!("Starting admin_bot...");
2020-02-13 18:23:22 +01:00
2022-02-04 14:09:32 +01:00
let bot = teloxide::Bot::from_env().auto_send();
2020-02-13 18:23:22 +01:00
teloxide::repls2::commands_repl(bot, action, Command::ty()).await;
2020-02-11 20:35:22 +01:00
}