feat(timeline): add support for sending sticker/polls in thread automatically too

This commit is contained in:
Benjamin Bouvier
2025-07-23 11:47:40 +02:00
parent e87e9331c1
commit cba711dbdf
2 changed files with 218 additions and 25 deletions

View File

@@ -47,8 +47,12 @@ use ruma::{
AnyMessageLikeEventContent, AnySyncTimelineEvent, Mentions,
poll::unstable_start::{NewUnstablePollStartEventContent, UnstablePollStartEventContent},
receipt::{Receipt, ReceiptThread},
relation::Thread,
room::{
message::{FormattedBody, ReplyWithinThread, RoomMessageEventContentWithoutRelation},
message::{
FormattedBody, Relation, RelationWithoutReplacement, ReplyWithinThread,
RoomMessageEventContentWithoutRelation,
},
pinned_events::RoomPinnedEventsEventContent,
},
},
@@ -294,31 +298,50 @@ impl Timeline {
///
/// * `content` - The content of the message event.
#[instrument(skip(self, content), fields(room_id = ?self.room().room_id()))]
pub async fn send(&self, content: AnyMessageLikeEventContent) -> Result<SendHandle, Error> {
pub async fn send(&self, mut content: AnyMessageLikeEventContent) -> Result<SendHandle, Error> {
// If this is a room event we're sending in a threaded timeline, we add the
// thread relation ourselves.
if let AnyMessageLikeEventContent::RoomMessage(ref room_msg_content) = content
&& room_msg_content.relates_to.is_none()
&& self.controller.is_threaded()
if content.relation().is_none()
&& let Some(reply) = self.infer_reply(None).await
{
let reply = self
.infer_reply(None)
.await
.expect("a reply will always be set for threaded timelines");
let content = self
.room()
.make_reply_event(
// Note: this `.into()` gets rid of the relation, but we've checked previously
// that the `relates_to` field wasn't set.
room_msg_content.clone().into(),
reply,
)
.await?;
Ok(self.room().send_queue().send(content.into()).await?)
} else {
// Otherwise, we send the message as is.
Ok(self.room().send_queue().send(content).await?)
match &mut content {
AnyMessageLikeEventContent::RoomMessage(room_msg_content) => {
content = self
.room()
.make_reply_event(
// Note: this `.into()` gets rid of the relation, but we've checked
// previously that the `relates_to` field wasn't
// set.
room_msg_content.clone().into(),
reply,
)
.await?
.into();
}
AnyMessageLikeEventContent::UnstablePollStart(
UnstablePollStartEventContent::New(poll),
) => {
if let Some(thread_root) = self.controller.thread_root() {
poll.relates_to = Some(RelationWithoutReplacement::Thread(Thread::plain(
thread_root,
reply.event_id,
)));
}
}
AnyMessageLikeEventContent::Sticker(sticker) => {
if let Some(thread_root) = self.controller.thread_root() {
sticker.relates_to =
Some(Relation::Thread(Thread::plain(thread_root, reply.event_id)));
}
}
_ => {}
}
}
Ok(self.room().send_queue().send(content).await?)
}
/// Send a reply to the given event.
@@ -341,7 +364,7 @@ impl Timeline {
///
/// * `content` - The content of the reply.
///
/// * `event_id` - The ID of the event to reply to.
/// * `in_reply_to` - The ID of the event to reply to.
#[instrument(skip(self, content))]
pub async fn send_reply(
&self,

View File

@@ -32,10 +32,18 @@ use ruma::{
event_id,
events::{
AnySyncTimelineEvent,
poll::unstable_start::{
NewUnstablePollStartEventContent, UnstablePollAnswer, UnstablePollStartContentBlock,
UnstablePollStartEventContent,
},
receipt::{ReceiptThread, ReceiptType},
room::message::{Relation, ReplacementMetadata, RoomMessageEventContent},
room::{
ImageInfo,
message::{Relation, ReplacementMetadata, RoomMessageEventContent},
},
sticker::{StickerEventContent, StickerMediaSource},
},
owned_event_id, room_id, user_id,
owned_event_id, owned_mxc_uri, room_id, user_id,
};
use stream_assert::assert_pending;
use tokio::task::yield_now;
@@ -893,6 +901,168 @@ async fn test_thread_timeline_can_send_edit() {
assert_pending!(stream);
}
#[async_test]
async fn test_send_sticker_thread() {
// If I send a sticker to a threaded timeline, it just works (aka the system to
// set the threaded relationship does kick in).
let server = MatrixMockServer::new().await;
let client = server.client_builder().build().await;
let room_id = room_id!("!a:b.c");
let thread_root_event_id = owned_event_id!("$root");
let threaded_event_id = event_id!("$threaded_event");
let room = server.sync_joined_room(&client, room_id).await;
let timeline = room
.timeline_builder()
.with_focus(TimelineFocus::Thread { root_event_id: thread_root_event_id.clone() })
.build()
.await
.unwrap();
let (initial_items, mut stream) = timeline.subscribe().await;
// At first, the timeline is empty.
assert!(initial_items.is_empty());
assert_pending!(stream);
// Start the timeline with an in-thread event.
let f = EventFactory::new();
server
.sync_room(
&client,
JoinedRoomBuilder::new(room_id).add_timeline_event(
f.text_msg("hello world")
.sender(*ALICE)
.event_id(threaded_event_id)
.in_thread(&thread_root_event_id, threaded_event_id)
.server_ts(MilliSecondsSinceUnixEpoch::now()),
),
)
.await;
// Sanity check: I receive the event and the date divider.
assert_let_timeout!(Some(timeline_updates) = stream.next());
assert_eq!(timeline_updates.len(), 2);
server.mock_room_state_encryption().plain().mount().await;
let sent_event_id = event_id!("$sent_msg");
server.mock_room_send().ok(sent_event_id).mount().await;
let media_src = owned_mxc_uri!("mxc://example.com/1");
timeline
.send(
StickerEventContent::new("sticker!".to_owned(), ImageInfo::new(), media_src.clone())
.into(),
)
.await
.unwrap();
// I get the local echo for the in-thread event.
assert_let_timeout!(Some(timeline_updates) = stream.next());
assert_eq!(timeline_updates.len(), 1);
assert_let!(VectorDiff::PushBack { value } = &timeline_updates[0]);
let event_item = value.as_event().unwrap();
// The content matches what we expect.
let sticker_item = event_item.content().as_sticker().unwrap();
let content = sticker_item.content();
assert_eq!(content.body, "sticker!");
assert_let!(StickerMediaSource::Plain(plain) = content.source.clone());
assert_eq!(plain, media_src);
// Then we're done.
assert_pending!(stream);
}
#[async_test]
async fn test_send_poll_thread() {
// If I send a poll to a threaded timeline, it just works (aka the system to
// set the threaded relationship does kick in).
let server = MatrixMockServer::new().await;
let client = server.client_builder().build().await;
let room_id = room_id!("!a:b.c");
let thread_root_event_id = owned_event_id!("$root");
let threaded_event_id = event_id!("$threaded_event");
let room = server.sync_joined_room(&client, room_id).await;
let timeline = room
.timeline_builder()
.with_focus(TimelineFocus::Thread { root_event_id: thread_root_event_id.clone() })
.build()
.await
.unwrap();
let (initial_items, mut stream) = timeline.subscribe().await;
// At first, the timeline is empty.
assert!(initial_items.is_empty());
assert_pending!(stream);
// Start the timeline with an in-thread event.
let f = EventFactory::new();
server
.sync_room(
&client,
JoinedRoomBuilder::new(room_id).add_timeline_event(
f.text_msg("hello world")
.sender(*ALICE)
.event_id(threaded_event_id)
.in_thread(&thread_root_event_id, threaded_event_id)
.server_ts(MilliSecondsSinceUnixEpoch::now()),
),
)
.await;
// Sanity check: I receive the event and the date divider.
assert_let_timeout!(Some(timeline_updates) = stream.next());
assert_eq!(timeline_updates.len(), 2);
server.mock_room_state_encryption().plain().mount().await;
let sent_event_id = event_id!("$sent_msg");
server.mock_room_send().ok(sent_event_id).mount().await;
timeline
.send(
UnstablePollStartEventContent::New(NewUnstablePollStartEventContent::plain_text(
"let's vote",
UnstablePollStartContentBlock::new(
"what day is it today?",
vec![
UnstablePollAnswer::new("0", "monday"),
UnstablePollAnswer::new("1", "friday"),
]
.try_into()
.unwrap(),
),
))
.into(),
)
.await
.unwrap();
// I get the local echo for the in-thread event.
assert_let_timeout!(Some(timeline_updates) = stream.next());
assert_eq!(timeline_updates.len(), 1);
assert_let!(VectorDiff::PushBack { value } = &timeline_updates[0]);
let event_item = value.as_event().unwrap();
// The content is a poll.
assert!(event_item.content().is_poll());
// Then we're done.
assert_pending!(stream);
}
#[async_test]
async fn test_sending_read_receipt_with_no_events_doesnt_unset_read_flag() {
// If a thread timeline has no events, then marking it as read doesn't unset the