From 87c8557e361c006e1e27bdda4c6c302dbff7d029 Mon Sep 17 00:00:00 2001 From: LasterAlex Date: Thu, 15 Aug 2024 23:01:26 +0300 Subject: [PATCH] Added deep linking example --- crates/teloxide/Cargo.toml | 4 + crates/teloxide/examples/deep_linking.rs | 139 +++++++++++++++++++++++ 2 files changed, 143 insertions(+) create mode 100644 crates/teloxide/examples/deep_linking.rs diff --git a/crates/teloxide/Cargo.toml b/crates/teloxide/Cargo.toml index 6315e147..c693fa82 100644 --- a/crates/teloxide/Cargo.toml +++ b/crates/teloxide/Cargo.toml @@ -194,6 +194,10 @@ required-features = [ "macros", ] +[[example]] +name = "deep_linking" +required-features = ["macros", "ctrlc_handler"] + [[example]] name = "dialogue" required-features = ["macros", "ctrlc_handler"] diff --git a/crates/teloxide/examples/deep_linking.rs b/crates/teloxide/examples/deep_linking.rs new file mode 100644 index 00000000..7e2a37e3 --- /dev/null +++ b/crates/teloxide/examples/deep_linking.rs @@ -0,0 +1,139 @@ +use dptree::{case, deps}; +use teloxide::{ + dispatching::dialogue::{self, InMemStorage}, + macros::BotCommands, + prelude::*, + types::Me, +}; + +pub type MyDialogue = Dialogue>; +pub type HandlerResult = Result<(), Box>; + +#[derive(Clone, PartialEq, Debug, Default)] +pub enum State { + #[default] + Start, + WriteToSomeone { + id: i64, + }, +} + +#[derive(BotCommands, Clone, Debug)] +#[command(rename_rule = "lowercase")] +pub enum StartCommand { + #[command()] + Start(String), // Because deep linking (links like https://t.me/some_bot?start=123456789) is the + // same as sending "/start 123456789", we can treat it as just an argument to a command + // + // https://core.telegram.org/bots/features#deep-linking +} + +#[tokio::main] +async fn main() { + pretty_env_logger::init(); + log::info!("Starting dialogue bot..."); + + let bot = Bot::from_env(); + + let handler = dialogue::enter::, State, _>() + .branch( + Update::filter_message() + .filter_command::() // Nessary to get cmd as an argument + .branch(case![StartCommand::Start(start)].endpoint(start)), + ) + .branch( + Update::filter_message() + .branch(case![State::WriteToSomeone { id }].endpoint(send_message)), + ); + + Dispatcher::builder(bot, handler) + .dependencies(deps![InMemStorage::::new()]) + .enable_ctrlc_handler() + .build() + .dispatch() + .await; +} + +pub async fn start( + bot: Bot, + dialogue: MyDialogue, + msg: Message, + cmd: StartCommand, + me: Me, +) -> HandlerResult { + // If you have multiple commands, this will need to become a match, not just a let + let StartCommand::Start(arg) = cmd; + + if arg.is_empty() { + // This means that it is just a regular link like https://t.me/some_bot, or a /start command + bot.send_message( + msg.chat.id, + format!( + "Hello!\n\nThis link allows anyone to message you secretly: {}?start={}", + me.tme_url(), + msg.chat.id.0 + ), + ) + .await?; + dialogue.exit().await?; + } else { + // And this means that the link is like this: https://t.me/some_bot?start=123456789 + match arg.parse::() { + Ok(id) => { + bot.send_message(msg.chat.id, "Send your message:").await?; + dialogue.update(State::WriteToSomeone { id }).await?; + } + Err(_) => { + bot.send_message(msg.chat.id, "Bad link!").await?; + dialogue.exit().await?; + } + } + } + Ok(()) +} + +pub async fn send_message( + bot: Bot, + id: i64, // Available from `State::WriteToSomeone`. + msg: Message, + dialogue: MyDialogue, + me: Me, +) -> HandlerResult { + match msg.text() { + Some(text) => { + // Trying to send a message to the user + let sent_result = bot + .send_message( + ChatId(id), + format!("You have a new message!\n\n{text}"), + ) + .parse_mode(teloxide::types::ParseMode::Html) + .await; + + // And if no error is returned, success! + if sent_result.is_ok() { + bot.send_message( + msg.chat.id, + format!( + "Message sent!\n\nYour link is: {}?start={}", + me.tme_url(), + msg.chat.id.0 + ), + ) + .await?; + } else { + bot.send_message( + msg.chat.id, + "Error sending message! Maybe user blocked the bot?", + ) + .await?; + } + dialogue.exit().await?; + } + None => { + bot.send_message(msg.chat.id, "This bot can send only text.") + .await?; + } + }; + Ok(()) +}