teloxide/examples/command.rs

38 lines
1.2 KiB
Rust
Raw Normal View History

2022-04-02 15:34:43 +06:00
use teloxide::{prelude::*, utils::command::BotCommands};
2020-02-14 03:23:41 +06:00
2022-03-24 17:25:42 +06:00
#[tokio::main]
async fn main() {
pretty_env_logger::init();
log::info!("Starting command bot...");
2022-03-24 17:25:42 +06:00
let bot = Bot::from_env();
2022-03-24 17:25:42 +06:00
2022-10-11 14:54:51 +06:00
Command::repl(bot, answer).await;
2022-03-24 17:25:42 +06:00
}
2022-04-02 15:34:43 +06:00
#[derive(BotCommands, Clone)]
#[command(rename_rule = "lowercase", description = "These commands are supported:")]
2020-02-14 03:23:41 +06:00
enum Command {
#[command(description = "display this text.")]
Help,
#[command(description = "handle a username.")]
Username(String),
#[command(description = "handle a username and an age.", parse_with = "split")]
UsernameAndAge { username: String, age: u8 },
2020-02-19 04:54:41 +06:00
}
2020-02-14 03:23:41 +06: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?,
Command::Username(username) => {
bot.send_message(msg.chat.id, format!("Your username is @{username}.")).await?
}
Command::UsernameAndAge { username, age } => {
bot.send_message(msg.chat.id, format!("Your username is @{username} and age is {age}."))
.await?
}
2020-02-14 03:23:41 +06:00
};
Ok(())
}