mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
* chore: begin switching to lapin fully Signed-off-by: Zomatree <me@zomatree.live> * chore: update rest of pushd to lapin Signed-off-by: Zomatree <me@zomatree.live> * chore: cleanup code Signed-off-by: Zomatree <me@zomatree.live> * chore: cleanup code Signed-off-by: Zomatree <me@zomatree.live> * fix: github webui sucks Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> --------- Signed-off-by: Zomatree <me@zomatree.live> Signed-off-by: Tom <iamtomahawkx@gmail.com> Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> Co-authored-by: Tom <iamtomahawkx@gmail.com> Release-As: 0.13.6
113 lines
3.6 KiB
Rust
113 lines
3.6 KiB
Rust
use std::{collections::HashMap, sync::Arc};
|
|
|
|
use crate::utils::Consumer;
|
|
use anyhow::Result;
|
|
use async_trait::async_trait;
|
|
use lapin::{message::Delivery, Channel, Connection};
|
|
use log::debug;
|
|
use revolt_database::{events::rabbit::*, Database};
|
|
|
|
#[derive(Clone)]
|
|
#[allow(unused)]
|
|
pub struct DmCallConsumer {
|
|
db: Database,
|
|
authifier_db: authifier::Database,
|
|
connection: Arc<Connection>,
|
|
channel: Arc<Channel>,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl Consumer for DmCallConsumer {
|
|
async fn create(
|
|
db: Database,
|
|
authifier_db: authifier::Database,
|
|
connection: Arc<Connection>,
|
|
channel: Arc<Channel>,
|
|
) -> Self {
|
|
Self {
|
|
db,
|
|
authifier_db,
|
|
connection,
|
|
channel,
|
|
}
|
|
}
|
|
|
|
fn channel(&self) -> &Arc<Channel> {
|
|
&self.channel
|
|
}
|
|
|
|
/// This consumer handles delegating messages into their respective platform queues.
|
|
async fn consume(&self, delivery: Delivery) -> Result<()> {
|
|
let _p: InternalDmCallPayload = serde_json::from_slice(&delivery.data)?;
|
|
let payload = _p.payload;
|
|
|
|
debug!("Received dm call start/stop event");
|
|
|
|
let (revolt_database::Channel::DirectMessage { recipients, .. }
|
|
| revolt_database::Channel::Group { recipients, .. }) =
|
|
self.db.fetch_channel(&payload.channel_id).await?
|
|
else {
|
|
warn!(
|
|
"Discarding dm call start/stop event for non-dm/group channel {}",
|
|
payload.channel_id
|
|
);
|
|
|
|
return Ok(());
|
|
};
|
|
|
|
let call_recipients = if let Some(user_recipients) = _p.recipients {
|
|
user_recipients
|
|
.into_iter()
|
|
.filter(|user_id| recipients.contains(user_id) && user_id != &payload.initiator_id)
|
|
.collect()
|
|
} else {
|
|
recipients
|
|
.into_iter()
|
|
.filter(|user_id| user_id != &payload.initiator_id)
|
|
.collect::<Vec<_>>()
|
|
};
|
|
|
|
let config = revolt_config::config().await;
|
|
|
|
for user_id in call_recipients {
|
|
if let Ok(sessions) = self.authifier_db.find_sessions(&user_id).await {
|
|
for session in sessions {
|
|
if let Some(sub) = session.subscription {
|
|
let mut sendable = PayloadToService {
|
|
notification: PayloadKind::DmCallStartEnd(payload.clone()),
|
|
token: sub.auth,
|
|
user_id: session.user_id,
|
|
session_id: session.id,
|
|
extras: HashMap::new(),
|
|
};
|
|
|
|
let routing_key = match sub.endpoint.as_str() {
|
|
"apn" => &config.pushd.apn.queue,
|
|
"fcm" => &config.pushd.fcm.queue,
|
|
endpoint => {
|
|
sendable.extras.insert("p256dh".to_string(), sub.p256dh);
|
|
sendable
|
|
.extras
|
|
.insert("endpoint".to_string(), endpoint.to_string());
|
|
|
|
&config.pushd.vapid.queue
|
|
}
|
|
};
|
|
|
|
let payload = serde_json::to_string(&sendable)?;
|
|
|
|
self.publish_message(
|
|
payload.as_bytes(),
|
|
&config.pushd.exchange,
|
|
routing_key,
|
|
)
|
|
.await?;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
}
|