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
// Copyright 2023 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Named futures returned from methods on types in [the `room` module][super].
#![deny(unreachable_pub)]
use std::future::IntoFuture;
use eyeball::SharedObservable;
use matrix_sdk_common::boxed_into_future;
use mime::Mime;
#[cfg(doc)]
use ruma::events::{MessageLikeUnsigned, SyncMessageLikeEvent};
use ruma::{
api::client::message::send_message_event,
assign,
events::{AnyMessageLikeEventContent, MessageLikeEventContent},
serde::Raw,
OwnedTransactionId, TransactionId,
};
use tracing::{info, trace, Instrument, Span};
use super::Room;
use crate::{
attachment::AttachmentConfig, config::RequestConfig, utils::IntoRawMessageLikeEventContent,
Result, TransmissionProgress,
};
/// Future returned by [`Room::send`].
#[allow(missing_debug_implementations)]
pub struct SendMessageLikeEvent<'a> {
room: &'a Room,
event_type: String,
content: serde_json::Result<serde_json::Value>,
transaction_id: Option<OwnedTransactionId>,
request_config: Option<RequestConfig>,
}
impl<'a> SendMessageLikeEvent<'a> {
pub(crate) fn new(room: &'a Room, content: impl MessageLikeEventContent) -> Self {
let event_type = content.event_type().to_string();
let content = serde_json::to_value(&content);
Self { room, event_type, content, transaction_id: None, request_config: None }
}
/// Set a transaction ID for this event.
///
/// Since sending message-like events always requires a transaction ID, one
/// is generated if this method is not called.
///
/// The transaction ID is a locally-unique ID describing a message
/// transaction with the homeserver.
///
/// * On the sending side, this field is used for re-trying earlier failed
/// transactions. Subsequent messages *must never* re-use an earlier
/// transaction ID.
/// * On the receiving side, the field is used for recognizing our own
/// messages when they arrive down the sync: the server includes the ID in
/// the [`MessageLikeUnsigned`] field `transaction_id` of the
/// corresponding [`SyncMessageLikeEvent`], but only for the *sending*
/// device. Other devices will not see it. This is then used to ignore
/// events sent by our own device and/or to implement local echo.
pub fn with_transaction_id(mut self, txn_id: OwnedTransactionId) -> Self {
self.transaction_id = Some(txn_id);
self
}
/// Assign a given [`RequestConfig`] to configure how this request should
/// behave with respect to the network.
pub fn with_request_config(mut self, request_config: RequestConfig) -> Self {
self.request_config = Some(request_config);
self
}
}
impl<'a> IntoFuture for SendMessageLikeEvent<'a> {
type Output = Result<send_message_event::v3::Response>;
boxed_into_future!(extra_bounds: 'a);
fn into_future(self) -> Self::IntoFuture {
let Self { room, event_type, content, transaction_id, request_config } = self;
Box::pin(async move {
let content = content?;
assign!(room.send_raw(&event_type, content), { transaction_id, request_config }).await
})
}
}
/// Future returned by [`Room::send_raw`].
#[allow(missing_debug_implementations)]
pub struct SendRawMessageLikeEvent<'a> {
room: &'a Room,
event_type: &'a str,
content: Raw<AnyMessageLikeEventContent>,
tracing_span: Span,
transaction_id: Option<OwnedTransactionId>,
request_config: Option<RequestConfig>,
}
impl<'a> SendRawMessageLikeEvent<'a> {
pub(crate) fn new(
room: &'a Room,
event_type: &'a str,
content: impl IntoRawMessageLikeEventContent,
) -> Self {
let content = content.into_raw_message_like_event_content();
Self {
room,
event_type,
content,
tracing_span: Span::current(),
transaction_id: None,
request_config: None,
}
}
/// Set a transaction ID for this event.
///
/// Since sending message-like events always requires a transaction ID, one
/// is generated if this method is not called.
///
/// * On the sending side, this field is used for re-trying earlier failed
/// transactions. Subsequent messages *must never* re-use an earlier
/// transaction ID.
/// * On the receiving side, the field is used for recognizing our own
/// messages when they arrive down the sync: the server includes the ID in
/// the [`MessageLikeUnsigned`] field `transaction_id` of the
/// corresponding [`SyncMessageLikeEvent`], but only for the *sending*
/// device. Other devices will not see it. This is then used to ignore
/// events sent by our own device and/or to implement local echo.
pub fn with_transaction_id(mut self, txn_id: &TransactionId) -> Self {
self.transaction_id = Some(txn_id.to_owned());
self
}
/// Assign a given [`RequestConfig`] to configure how this request should
/// behave with respect to the network.
pub fn with_request_config(mut self, request_config: RequestConfig) -> Self {
self.request_config = Some(request_config);
self
}
}
impl<'a> IntoFuture for SendRawMessageLikeEvent<'a> {
type Output = Result<send_message_event::v3::Response>;
boxed_into_future!(extra_bounds: 'a);
fn into_future(self) -> Self::IntoFuture {
#[cfg_attr(not(feature = "e2e-encryption"), allow(unused_mut))]
let Self {
room,
mut event_type,
mut content,
tracing_span,
transaction_id,
request_config,
} = self;
let fut = async move {
room.ensure_room_joined()?;
let txn_id = transaction_id.unwrap_or_else(TransactionId::new);
Span::current().record("transaction_id", tracing::field::debug(&txn_id));
#[cfg(not(feature = "e2e-encryption"))]
trace!("Sending plaintext event to room because we don't have encryption support.");
#[cfg(feature = "e2e-encryption")]
if room.is_encrypted().await? {
Span::current().record("is_room_encrypted", true);
// Reactions are currently famously not encrypted, skip encrypting
// them until they are.
if event_type == "m.reaction" {
trace!("Sending plaintext event because of the event type.");
} else {
trace!(
room_id = ?room.room_id(),
"Sending encrypted event because the room is encrypted.",
);
if !room.are_members_synced() {
room.sync_members().await?;
}
// Query keys in case we don't have them for newly synced members.
//
// Note we do it all the time, because we might have sync'd members before
// sending a message (so didn't enter the above branch), but
// could have not query their keys ever.
room.query_keys_for_untracked_users().await?;
room.preshare_room_key().await?;
let olm = room.client.olm_machine().await;
let olm = olm.as_ref().expect("Olm machine wasn't started");
content = olm
.encrypt_room_event_raw(room.room_id(), event_type, &content)
.await?
.cast();
event_type = "m.room.encrypted";
}
} else {
Span::current().record("is_room_encrypted", false);
trace!("Sending plaintext event because the room is NOT encrypted.",);
};
let request = send_message_event::v3::Request::new_raw(
room.room_id().to_owned(),
txn_id,
event_type.into(),
content,
);
let response = room.client.send(request, request_config).await?;
Span::current().record("event_id", tracing::field::debug(&response.event_id));
info!("Sent event in room");
Ok(response)
};
Box::pin(fut.instrument(tracing_span))
}
}
/// Future returned by [`Room::send_attachment`].
#[allow(missing_debug_implementations)]
pub struct SendAttachment<'a> {
room: &'a Room,
filename: &'a str,
content_type: &'a Mime,
data: Vec<u8>,
config: AttachmentConfig,
tracing_span: Span,
send_progress: SharedObservable<TransmissionProgress>,
store_in_cache: bool,
}
impl<'a> SendAttachment<'a> {
pub(crate) fn new(
room: &'a Room,
filename: &'a str,
content_type: &'a Mime,
data: Vec<u8>,
config: AttachmentConfig,
) -> Self {
Self {
room,
filename,
content_type,
data,
config,
tracing_span: Span::current(),
send_progress: Default::default(),
store_in_cache: false,
}
}
/// Replace the default `SharedObservable` used for tracking upload
/// progress.
#[cfg(not(target_arch = "wasm32"))]
pub fn with_send_progress_observable(
mut self,
send_progress: SharedObservable<TransmissionProgress>,
) -> Self {
self.send_progress = send_progress;
self
}
/// Whether the sent attachment should be stored in the cache or not.
///
/// If set to true, then retrieving the data for the attachment will result
/// in a cache hit immediately after upload.
pub fn store_in_cache(mut self) -> Self {
self.store_in_cache = true;
self
}
}
impl<'a> IntoFuture for SendAttachment<'a> {
type Output = Result<send_message_event::v3::Response>;
boxed_into_future!(extra_bounds: 'a);
fn into_future(self) -> Self::IntoFuture {
let Self {
room,
filename,
content_type,
data,
config,
tracing_span,
send_progress,
store_in_cache,
} = self;
let fut = async move {
room.prepare_and_send_attachment(
filename,
content_type,
data,
config,
send_progress,
store_in_cache,
)
.await
};
Box::pin(fut.instrument(tracing_span))
}
}