diff options
Diffstat (limited to 'lampada/src/lib.rs')
-rw-r--r-- | lampada/src/lib.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lampada/src/lib.rs b/lampada/src/lib.rs index a01ba06..7346c42 100644 --- a/lampada/src/lib.rs +++ b/lampada/src/lib.rs @@ -34,6 +34,8 @@ pub struct Connected { // full jid will stay stable across reconnections jid: JID, write_handle: WriteHandle, + // the server jid + server: JID, } impl Connected { @@ -44,6 +46,10 @@ impl Connected { pub fn write_handle(&self) -> &WriteHandle { &self.write_handle } + + pub fn server(&self) -> &JID { + &self.server + } } /// everything that a particular xmpp client must implement @@ -166,6 +172,18 @@ impl<Lgc: Logic + Clone + Send + 'static> CoreClient<Lgc> { let streams_result = luz::connect_and_login(&mut jid, &*self.password, &mut domain) .await; + let server: JID = match domain.parse() { + Ok(j) => j, + Err(e) => { + self.logic + .clone() + .handle_connection_error(ConnectionError::InvalidServerJID( + e, + )) + .await; + continue; + } + }; match streams_result { Ok(s) => { debug!("ok stream result"); @@ -174,6 +192,7 @@ impl<Lgc: Logic + Clone + Send + 'static> CoreClient<Lgc> { s, shutdown_send, jid.clone(), + server.clone(), self.password.clone(), self.logic.clone(), ); @@ -184,6 +203,7 @@ impl<Lgc: Logic + Clone + Send + 'static> CoreClient<Lgc> { let connected = Connected { jid, write_handle: writer, + server, }; self.logic.clone().handle_connect(connected.clone()).await; |