teloxide/examples/admin.rs

161 lines
4.5 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
2021-07-05 21:16:29 +02:00
use chrono::{DateTime, Duration, NaiveDateTime, Utc};
use teloxide::{prelude2::*, types::ChatPermissions, utils::command::BotCommand};
2020-02-11 20:35:22 +01:00
2020-02-13 19:11:56 +01:00
// Derive BotCommand to parse text with a command into this enumeration.
//
// 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%
2021-12-26 18:59:32 +01:00
#[derive(BotCommand, 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
}
2021-12-26 18:59:32 +01:00
// FIXME: naming
type MyBot = AutoSend<Bot>;
2020-02-13 19:11:56 +01:00
2021-12-26 18:59:32 +01:00
// Kick a user with a replied message.
async fn kick_user(bot: MyBot, 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.
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 => {
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(
bot: MyBot,
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(
msg.chat_id(),
2021-12-26 18:59:32 +01:00
replied.from().expect("Must be MessageKind::Common").id,
ChatPermissions::default(),
)
.until_date(
DateTime::<Utc>::from_utc(NaiveDateTime::from_timestamp(msg.date as i64, 0), Utc)
2021-12-26 18:59:32 +01:00
+ time,
)
.await?;
2020-02-13 18:23:22 +01:00
}
2020-02-13 16:42:24 +01:00
None => {
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(
bot: MyBot,
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(
msg.chat_id(),
2021-12-26 18:59:32 +01:00
replied.from().expect("Must be MessageKind::Common").id,
)
.until_date(
DateTime::<Utc>::from_utc(NaiveDateTime::from_timestamp(msg.date as i64, 0), Utc)
2021-12-26 18:59:32 +01:00
+ time,
)
.await?;
2020-06-24 19:43:21 +02:00
}
2020-02-13 16:42:24 +01:00
None => {
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(
bot: MyBot,
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()).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() {
2020-02-13 18:23:22 +01:00
teloxide::enable_logging!();
log::info!("Starting admin_bot...");
2020-02-13 18:23:22 +01:00
2021-03-05 22:24:10 +01:00
let bot = 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
}