@@ -24,6 +24,11 @@ pub enum Event {
RoomJoined(BareJid),
RoomLeft(BareJid),
RoomMessage(Id, BareJid, RoomNick, Body),
+ /// The subject of a room was received.
+ /// - The BareJid is the room's address.
+ /// - The RoomNick is the nickname of the room member who set the subject.
+ /// - The String is the new subject.
+ RoomSubject(BareJid, Option<RoomNick>, String),
/// A private message received from a room, containing the message ID, the room's BareJid,
/// the sender's nickname, and the message body.
RoomPrivateMessage(Id, BareJid, RoomNick, Body),
@@ -15,6 +15,11 @@ pub async fn handle_message_group_chat(
message: &Message,
) {
let langs: Vec<&str> = agent.lang.iter().map(String::as_str).collect();
+
+ if let Some((_lang, subject)) = message.get_best_subject(langs.clone()) {
+ events.push(Event::RoomSubject(from.to_bare(), from.resource_str().map(String::from), subject.0.clone()));
+ }
+
if let Some((_lang, body)) = message.get_best_body(langs) {
let event = match from.clone() {
Jid::Full(full) => Event::RoomMessage(