2022-04-02 11:34:43 +02:00
|
|
|
use teloxide::{prelude::*, utils::command::BotCommands};
|
2020-02-13 22:23:41 +01:00
|
|
|
|
2022-03-24 12:25:42 +01:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
|
|
|
pretty_env_logger::init();
|
2022-04-26 20:54:37 +02:00
|
|
|
log::info!("Starting command bot...");
|
2022-03-24 12:25:42 +01:00
|
|
|
|
2022-09-29 05:37:20 +02:00
|
|
|
let bot = Bot::from_env();
|
2022-03-24 12:25:42 +01:00
|
|
|
|
|
|
|
teloxide::commands_repl(bot, answer, Command::ty()).await;
|
|
|
|
}
|
|
|
|
|
2022-04-02 11:34:43 +02:00
|
|
|
#[derive(BotCommands, Clone)]
|
2022-10-05 08:08:50 +02:00
|
|
|
#[command(rename_rule = "lowercase", description = "These commands are supported:")]
|
2020-02-13 22:23:41 +01:00
|
|
|
enum Command {
|
|
|
|
#[command(description = "display this text.")]
|
|
|
|
Help,
|
2020-07-06 21:20:09 +02:00
|
|
|
#[command(description = "handle a username.")]
|
|
|
|
Username(String),
|
2020-07-26 19:47:02 +02:00
|
|
|
#[command(description = "handle a username and an age.", parse_with = "split")]
|
2020-07-06 21:20:09 +02:00
|
|
|
UsernameAndAge { username: String, age: u8 },
|
2020-02-18 23:54:41 +01:00
|
|
|
}
|
2020-02-13 22:23:41 +01:00
|
|
|
|
2022-10-03 13:07:38 +02:00
|
|
|
async fn answer(bot: Bot, msg: Message, cmd: Command) -> ResponseResult<()> {
|
|
|
|
match cmd {
|
|
|
|
Command::Help => bot.send_message(msg.chat.id, Command::descriptions().to_string()).await?,
|
2020-07-06 21:20:09 +02:00
|
|
|
Command::Username(username) => {
|
2022-10-03 13:07:38 +02:00
|
|
|
bot.send_message(msg.chat.id, format!("Your username is @{username}.")).await?
|
2020-07-06 21:20:09 +02:00
|
|
|
}
|
|
|
|
Command::UsernameAndAge { username, age } => {
|
2022-10-03 13:07:38 +02:00
|
|
|
bot.send_message(msg.chat.id, format!("Your username is @{username} and age is {age}."))
|
|
|
|
.await?
|
2020-07-06 21:20:09 +02:00
|
|
|
}
|
2020-02-13 22:23:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|