baubot_core/broadcaster.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
//! Module describing the server that polls [types::ServerSocket] for a [types::BauMessage] sent by
//! a [types::ClientSocket] and sends it to the correct user.
//!
//! The same server will wait for a respones from [crate::BauBot] if a response is requested by
//! [types::BauMessage] and send an appropriate response to the [types::BauResponseReceiver]
//! supplied by the [types::BauMessage]
use crate::prelude::*;
use serde::Deserialize;
use serde::Serialize;
use std::future::Future;
use teloxide::payloads::SendMessageSetters;
use teloxide::types::InlineKeyboardButton;
use teloxide::types::InlineKeyboardMarkup;
use teloxide::types::MaybeInaccessibleMessage;
use teloxide::types::UpdateKind;
use tokio::sync::oneshot;
use tokio::sync::Mutex;
pub mod types;
pub(crate) struct Server {
store: Mutex<types::BauResponseStore>,
}
impl Server {
/// Start the receiver
pub(crate) fn new() -> Self {
// Create callback handlers
let store = Default::default();
// Create receiver
Self { store }
}
/// Listening loop
pub(crate) fn listen<
Db: BauData + Send + Sync,
DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static,
>(
server: Arc<Self>,
bot: Bot,
db: DbRef,
mut server_socket: types::ServerSocket,
) -> impl Future<Output = ()> + Send + 'static {
async move {
info!("Starting receiver");
loop {
match server_socket.recv().await {
// If we receive a payload
Some(payload) => {
Self::client_request_handler(
server.clone(),
bot.clone(),
db.clone(),
payload,
)
.await
}
// Sender has gone out of scope; break the loop
None => break,
};
}
warn!("Shutting down receiver");
}
}
/// Handler
fn client_request_handler<
Db: BauData + Send + Sync,
DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static,
>(
server: Arc<Self>,
bot: Bot,
db: DbRef,
bau_message: types::BauMessage,
) -> impl std::future::Future<Output = ()> + Send + 'static {
trace!("Payload received");
async move {
// Deconstruct message
let types::BauMessage {
sender: _,
recipients,
message,
responses: types::RequestedResponses { timeout, keyboard },
} = bau_message;
// Convert responses into keyboard
let keyboard = keyboard
.iter()
.map(|row| {
row.iter()
.map(|field| InlineKeyboardButton::callback(field.clone(), field.clone()))
.collect()
})
.collect::<Vec<Vec<_>>>();
// Run through each recipient
for (recipient, client_response_sender) in recipients {
// Get chat_id
let chat_id = db.get_chat_id(&recipient).await;
// Attempt to send the message
let send_attempt = Self::message_sender(
bot.clone(),
chat_id.clone(),
message.clone(),
keyboard.clone(),
)
.await;
// These next steps apply only if a bau_response_sender was provided and a response
// is required
if let (Some(chat_id), Some(client_response_sender), false) =
(chat_id, client_response_sender, keyboard.is_empty())
{
tokio::task::spawn(Self::response_handler(
server.clone(),
bot.clone(),
chat_id,
send_attempt,
client_response_sender,
timeout,
));
}
}
}
}
/// Sends the actual message
fn message_sender(
bot: Bot,
chat_id: Option<i64>,
message: String,
responses: Vec<Vec<InlineKeyboardButton>>,
) -> impl std::future::Future<Output = std::result::Result<i32, types::BauBotError>> + Send + 'static
{
async move {
// Chck if chat ID exists
match chat_id {
Some(chat_id) => {
trace!("Attempting to broadcast to {chat_id}: {message}");
// Send message to user
let mut message_sender = bot.send_message(ChatId(chat_id), message.clone());
// Check if keyboard responses provided
if !responses.is_empty() {
message_sender =
message_sender.reply_markup(InlineKeyboardMarkup::new(responses))
}
// Poll send message
match message_sender.await {
// If message succesfully sent, return the response receiver
Ok(message) => Some(message.id.0),
// Else...
Err(_) => None,
}
}
None => None,
}
.ok_or(types::BauBotError::Uncontactable)
}
}
/// Creates a i128 key out of the chat_id and the message_id by bitshifting.
pub(crate) fn make_key(chat_id: i64, message_id: i32) -> i128 {
let chat_id = (chat_id as i128) << 64;
chat_id | (message_id as i128)
}
/// Actual pipeline between [types::ServerSocket] and [crate::BauBot]
fn response_handler(
server: Arc<Self>,
bot: Bot,
chat_id: i64,
send_attempt: std::result::Result<i32, types::BauBotError>,
client_response_sender: types::BauResponseSender,
timeout: u64,
) -> impl std::future::Future<Output = ()> + Send {
async move {
// Check send_attempt
let _ = match send_attempt {
// Message was validly out to recipient: now we wait for a response
Ok(message_id) => {
trace!("Waiting for response on message {message_id} on chat {chat_id}.");
// Create senders and receivers to listen for responses from baubot
let (bau_response_sender, bau_response_receiver) = oneshot::channel();
// Create key
let key = Self::make_key(chat_id, message_id);
trace!("Key for bau_response_sender: {key}.");
// Add message to map
{
// WARN: OBTAINING MUTEX
let mut guard = server.store.lock().await;
guard.insert(key, bau_response_sender);
// WARN: DROPPING MUTEX
}
// Spawn removal hook. The deletion / dropping of the receiver will cause the
// next poll on bau_response_receiver to fail
tokio::task::spawn(async move {
// Run a timeout
tokio::time::sleep(std::time::Duration::from_millis(timeout)).await;
// Remove response options
let _ = Self::remove_markup(&bot, chat_id, message_id).await;
// WARN: OBTAINING MUTEX
let mut guard = server.store.lock().await;
if let Some(_) = guard.remove(&key) {
trace!("Timeout ({timeout}ms) for {key}");
// Notify user of timeout
let message =
format!(crate::fmt!(timeout "Timeout ({}ms) exceeded"), timeout);
let _ = reply_message(&bot, chat_id, message_id, message).await;
};
// WARN: DROPPING MUTEX
// WARN: DROPPING RECEIVER; transaction ends here.
});
// Wait for responses from baubot
match bau_response_receiver.await {
// Respond okay if baubot sent us a respones on bau_response_receiver
Ok(ok) => client_response_sender.send(ok),
// See documentation for timeout
Err(_) => client_response_sender.send(Err(types::BauBotError::Timeout)),
}
}
// Message was not validly sent out to recipient
Err(err) => client_response_sender.send(Err(err)),
};
}
}
/// Handles [CallbackQuery]
pub(crate) fn callback_handler(
bot: Bot,
server: Arc<Self>,
(data, chat_id, message_id): (String, i64, i32),
) -> impl std::future::Future<Output = Result<(), Box<dyn std::error::Error + Send + Sync>>> + Send
{
// Get key
let key = Self::make_key(chat_id, message_id);
// Debug
trace!("Received response to callback for message {message_id}: {data} [key: {key}].",);
async move {
// Obtain sender
let bau_response_sender = {
// WARN: OBTAINING MUTEX
let mut guard = server.store.lock().await;
guard.remove(&key)
// WARN: DROPPING MUTEX
};
// Check if bau_response_sender valid and prepare an appropriate response for user
let message = match bau_response_sender {
// Valid bau_response_sender
Some(sender) => {
// Send the response
let _ = sender.send(Ok(data.clone()));
// Return text
format!(crate::fmt!(pass "<code>{}</code>"), data)
}
// Invalid bau_response_sender, most likely removed due to a timeout.
None => {
format!(crate::fmt!(timeout "The recipient probably timed out ðŸ˜"))
}
};
// Remove response options
Self::remove_markup(&bot, chat_id, message_id).await?;
// Send response to user
reply_message(&bot, chat_id, message_id, message).await?;
Ok(())
}
}
/// Create a [UpdateHandler] for the [Bot]
pub(crate) fn callback_update() -> UpdateHandler<Box<dyn std::error::Error + Send + Sync>> {
Update::filter_callback_query()
.filter_map(|update: Update| {
let callback_query = if let UpdateKind::CallbackQuery(callback_query) = update.kind
{
Some(callback_query)
} else {
None
}?;
let data = callback_query.data?;
let (chat_id, message_id) =
if let MaybeInaccessibleMessage::Regular(message) = callback_query.message? {
Some((message.chat.id.0, message.id.0))
} else {
None
}?;
Some((data, chat_id, message_id))
})
.endpoint(Self::callback_handler)
}
/// Instruct the bot to remove markup
async fn remove_markup(
bot: &Bot,
chat_id: i64,
message_id: i32,
) -> Result<Message, teloxide::RequestError> {
let mut message_edit =
bot.edit_message_reply_markup(ChatId(chat_id), MessageId(message_id));
message_edit.reply_markup = None;
message_edit.await
}
}