teloxide/examples/simple_commands.rs

47 lines
1.3 KiB
Rust
Raw Normal View History

use teloxide::{prelude2::*, utils::command::BotCommand};
2020-02-13 22:23:41 +01:00
2022-01-06 13:04:09 +01:00
use std::error::Error;
2022-01-06 13:04:09 +01:00
#[derive(BotCommand, Clone)]
2020-02-13 22:23:41 +01:00
#[command(rename = "lowercase", description = "These commands are supported:")]
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-18 23:54:41 +01:00
}
2020-02-13 22:23:41 +01:00
async fn answer(
2022-01-06 13:04:09 +01:00
bot: AutoSend<Bot>,
message: Message,
command: Command,
) -> Result<(), Box<dyn Error + Send + Sync>> {
2022-01-06 13:04:09 +01:00
match command {
Command::Help => bot.send_message(message.chat.id, Command::descriptions()).await?,
Command::Username(username) => {
bot.send_message(message.chat.id, format!("Your username is @{}.", username)).await?
}
Command::UsernameAndAge { username, age } => {
bot.send_message(
message.chat.id,
format!("Your username is @{} and age is {}.", username, age),
)
.await?
}
2020-02-13 22:23:41 +01:00
};
Ok(())
}
#[tokio::main]
async fn main() {
teloxide::enable_logging!();
log::info!("Starting simple_commands_bot...");
2020-02-13 22:23:41 +01:00
2021-03-05 22:24:10 +01:00
let bot = Bot::from_env().auto_send();
2020-02-13 22:23:41 +01:00
teloxide::repls2::commands_repl(bot, answer, Command::ty()).await;
2020-02-13 22:23:41 +01:00
}