Files
book_bot/src/bots/approved_bot/modules/support.rs
2023-07-25 00:59:41 +02:00

73 lines
1.9 KiB
Rust
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
use crate::bots::BotHandlerInternal;
use teloxide::{
prelude::*,
utils::command::BotCommands, adaptors::{Throttle, CacheMe},
};
#[derive(BotCommands, Clone)]
#[command(rename_rule = "lowercase")]
enum SupportCommand {
Support,
Donate
}
pub async fn support_command_handler(
message: Message,
bot: CacheMe<Throttle<Bot>>) -> BotHandlerInternal {
let is_bot = message.from().unwrap().is_bot;
let username = if is_bot {
&message.reply_to_message().unwrap().from().unwrap().first_name
} else {
&message.from().unwrap().first_name
};
let message_text = format!("
Привет, {username}!
Этот бот существует благодаря пожертвованиям от наших пользователей.
Однако, для его дальнейшего развития и поддержки серверов требуются финансовые средства.
Буду очень благодарен за любую сумму пожертвования!
Спасибо!
Тинькофф:
<pre>5536913820619688</pre>
Сбербанк:
<pre>+79534966556</pre>
Paypal:
<a href=\"https://www.paypal.me/kurbezz\">@kurbezz</a>
TRON (TRC20) - USDT:
<pre>TYnWyK7mJhasjuCGYYyZxqQ1VUDxgZfuRi</pre>
Bitcoin - BTC:
<pre>12g9XY6oqLwaw7V9LJnLanxLNNKjJRbWUH</pre>
The Open Network - TON:
<pre>UQA4MySrq_60b_VMlR6UEmc_0u-neAUTXdtv8oKr_i6uhQNd</pre>
");
bot
.send_message(message.chat.id, message_text)
.parse_mode(teloxide::types::ParseMode::Html)
.disable_web_page_preview(true)
.await?;
Ok(())
}
pub fn get_support_handler() -> crate::bots::BotHandler {
dptree::entry().branch(
Update::filter_message().branch(
dptree::entry().filter_command::<SupportCommand>().endpoint(
|message, bot| async move { support_command_handler(message, bot).await },
),
),
)
}