xmpp: Allow resyncs in Agent::join_room
Signed-off-by: pep <pep@bouah.net>
This commit is contained in:
parent
6624dffe25
commit
a2ed5026f0
5 changed files with 19 additions and 10 deletions
|
|
@ -26,6 +26,8 @@ XXXX-YY-ZZ [ RELEASER <admin@localhost> ]
|
||||||
to be enabled for compilation to succeed).
|
to be enabled for compilation to succeed).
|
||||||
|
|
||||||
Please refer to the crate docs for details. (!581)
|
Please refer to the crate docs for details. (!581)
|
||||||
|
- Allow joining an already joined room with `Agent::join_room` to enable
|
||||||
|
resyncs. Adds a parameter to `muc::room::JoinRoomSettings`.
|
||||||
* Added:
|
* Added:
|
||||||
- Agent::send_room_message takes RoomMessageSettings argument (!483)
|
- Agent::send_room_message takes RoomMessageSettings argument (!483)
|
||||||
- Agent::send_raw_message takes RawMessageSettings for any message type (!487)
|
- Agent::send_raw_message takes RawMessageSettings for any message type (!487)
|
||||||
|
|
|
||||||
|
|
@ -103,10 +103,8 @@ async fn handle_events(client: &mut Agent, event: Event, rooms: &Vec<BareJid>) {
|
||||||
log::info!("Joining room {} from CLI argument…", room);
|
log::info!("Joining room {} from CLI argument…", room);
|
||||||
client
|
client
|
||||||
.join_room(JoinRoomSettings {
|
.join_room(JoinRoomSettings {
|
||||||
room: room.clone(),
|
|
||||||
nick: None,
|
|
||||||
password: None,
|
|
||||||
status: Some(("en", "Yet another bot!")),
|
status: Some(("en", "Yet another bot!")),
|
||||||
|
..JoinRoomSettings::new(room.clone())
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,10 +41,9 @@ pub async fn handle_iq_result(
|
||||||
let (jid, room) = conf.into_bookmarks2();
|
let (jid, room) = conf.into_bookmarks2();
|
||||||
agent
|
agent
|
||||||
.join_room(JoinRoomSettings {
|
.join_room(JoinRoomSettings {
|
||||||
room: jid,
|
|
||||||
nick: room.nick.map(RoomNick::new),
|
nick: room.nick.map(RoomNick::new),
|
||||||
password: room.password,
|
password: room.password,
|
||||||
status: None,
|
..JoinRoomSettings::new(jid)
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,11 @@ pub struct JoinRoomSettings<'a> {
|
||||||
pub nick: Option<RoomNick>,
|
pub nick: Option<RoomNick>,
|
||||||
pub password: Option<String>,
|
pub password: Option<String>,
|
||||||
pub status: Option<(&'a str, &'a str)>,
|
pub status: Option<(&'a str, &'a str)>,
|
||||||
|
/// Send the join payload again even though we're already supposedly joined.
|
||||||
|
/// This was made explicit in version 1.27 of XEP-0045 (cee524dbde4, 2016), that is just rejoin
|
||||||
|
/// with the standard MUC payload to force a resync of the client state (receive all occupants
|
||||||
|
/// and subject again).
|
||||||
|
pub force_resync: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> JoinRoomSettings<'a> {
|
impl<'a> JoinRoomSettings<'a> {
|
||||||
|
|
@ -30,6 +35,7 @@ impl<'a> JoinRoomSettings<'a> {
|
||||||
nick: None,
|
nick: None,
|
||||||
password: None,
|
password: None,
|
||||||
status: None,
|
status: None,
|
||||||
|
force_resync: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -47,6 +53,11 @@ impl<'a> JoinRoomSettings<'a> {
|
||||||
self.status = Some((lang, content));
|
self.status = Some((lang, content));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn with_resync(mut self) -> Self {
|
||||||
|
self.force_resync = true;
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// TODO: this method should add bookmark and ensure autojoin is true
|
/// TODO: this method should add bookmark and ensure autojoin is true
|
||||||
|
|
@ -56,6 +67,7 @@ pub async fn join_room<'a>(agent: &mut Agent, settings: JoinRoomSettings<'a>) {
|
||||||
nick,
|
nick,
|
||||||
password,
|
password,
|
||||||
status,
|
status,
|
||||||
|
force_resync,
|
||||||
} = settings;
|
} = settings;
|
||||||
|
|
||||||
if agent.rooms_joining.contains_key(&room) {
|
if agent.rooms_joining.contains_key(&room) {
|
||||||
|
|
@ -64,7 +76,7 @@ pub async fn join_room<'a>(agent: &mut Agent, settings: JoinRoomSettings<'a>) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if agent.rooms_joined.contains_key(&room) {
|
if !force_resync && agent.rooms_joined.contains_key(&room) {
|
||||||
// We are already joined, cannot join
|
// We are already joined, cannot join
|
||||||
warn!("Requesting to join room {room} which is already joined...");
|
warn!("Requesting to join room {room} which is already joined...");
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -61,10 +61,9 @@ pub(crate) async fn handle_event(
|
||||||
if !agent.rooms_joined.contains_key(&jid) {
|
if !agent.rooms_joined.contains_key(&jid) {
|
||||||
agent
|
agent
|
||||||
.join_room(JoinRoomSettings {
|
.join_room(JoinRoomSettings {
|
||||||
room: jid,
|
|
||||||
nick: conference.nick.map(RoomNick::new),
|
nick: conference.nick.map(RoomNick::new),
|
||||||
password: conference.password,
|
password: conference.password,
|
||||||
status: None,
|
..JoinRoomSettings::new(jid)
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -144,10 +143,9 @@ pub(crate) async fn handle_iq_result(
|
||||||
if !agent.rooms_joined.contains_key(&jid) {
|
if !agent.rooms_joined.contains_key(&jid) {
|
||||||
agent
|
agent
|
||||||
.join_room(JoinRoomSettings {
|
.join_room(JoinRoomSettings {
|
||||||
room: jid,
|
|
||||||
nick: conference.nick.map(RoomNick::new),
|
nick: conference.nick.map(RoomNick::new),
|
||||||
password: conference.password,
|
password: conference.password,
|
||||||
status: None,
|
..JoinRoomSettings::new(jid)
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue