xmpp-rs/src/client/mod.rs

227 lines
7.5 KiB
Rust
Raw Normal View History

2018-12-18 18:04:31 +00:00
use futures::{done, Async, AsyncSink, Future, Poll, Sink, StartSend, Stream};
use idna;
use xmpp_parsers::{Jid, JidParseError, Element};
2018-12-18 18:04:31 +00:00
use sasl::common::{ChannelBinding, Credentials};
2017-06-20 19:26:51 +00:00
use std::mem::replace;
use std::str::FromStr;
2018-09-01 19:59:02 +00:00
use tokio::net::TcpStream;
2017-06-20 19:26:51 +00:00
use tokio_io::{AsyncRead, AsyncWrite};
use tokio_tls::TlsStream;
2018-12-18 18:04:31 +00:00
use super::event::Event;
use super::happy_eyeballs::Connecter;
use super::starttls::{StartTlsClient, NS_XMPP_TLS};
2017-06-20 19:26:51 +00:00
use super::xmpp_codec::Packet;
use super::xmpp_stream;
2018-09-06 15:46:06 +00:00
use super::{Error, ProtocolError};
2017-06-20 19:26:51 +00:00
mod auth;
2017-07-18 20:54:10 +00:00
use self::auth::ClientAuth;
2017-06-20 19:26:51 +00:00
mod bind;
2017-07-18 20:54:10 +00:00
use self::bind::ClientBind;
2017-06-20 19:26:51 +00:00
2018-08-02 17:58:19 +00:00
/// XMPP client connection and state
2017-06-20 19:26:51 +00:00
pub struct Client {
2018-08-02 17:58:19 +00:00
/// The client's current Jabber-Id
2017-06-20 19:26:51 +00:00
pub jid: Jid,
state: ClientState,
}
type XMPPStream = xmpp_stream::XMPPStream<TlsStream<TcpStream>>;
2017-07-18 23:02:45 +00:00
const NS_JABBER_CLIENT: &str = "jabber:client";
2017-06-20 19:26:51 +00:00
enum ClientState {
Invalid,
Disconnected,
2018-12-18 18:04:31 +00:00
Connecting(Box<Future<Item = XMPPStream, Error = Error>>),
2017-06-20 19:26:51 +00:00
Connected(XMPPStream),
}
impl Client {
2018-08-02 17:58:19 +00:00
/// Start a new XMPP client
///
/// Start polling the returned instance so that it will connect
/// and yield events.
2018-09-01 19:59:02 +00:00
pub fn new(jid: &str, password: &str) -> Result<Self, JidParseError> {
2018-08-02 18:10:26 +00:00
let jid = Jid::from_str(jid)?;
let client = Self::new_with_jid(jid, password);
Ok(client)
}
/// Start a new client given that the JID is already parsed.
pub fn new_with_jid(jid: Jid, password: &str) -> Self {
2017-06-20 19:26:51 +00:00
let password = password.to_owned();
2018-09-01 19:59:02 +00:00
let connect = Self::make_connect(jid.clone(), password.clone());
let client = Client {
jid,
2018-09-06 15:46:06 +00:00
state: ClientState::Connecting(Box::new(connect)),
};
client
2017-06-20 19:26:51 +00:00
}
2018-12-18 18:04:31 +00:00
fn make_connect(jid: Jid, password: String) -> impl Future<Item = XMPPStream, Error = Error> {
2017-06-20 19:26:51 +00:00
let username = jid.node.as_ref().unwrap().to_owned();
2017-07-18 23:02:45 +00:00
let jid1 = jid.clone();
let jid2 = jid.clone();
2017-06-20 19:26:51 +00:00
let password = password;
2018-09-06 15:46:06 +00:00
done(idna::domain_to_ascii(&jid.domain))
.map_err(|_| Error::Idna)
2018-12-18 18:04:31 +00:00
.and_then(|domain| {
done(Connecter::from_lookup(
&domain,
Some("_xmpp-client._tcp"),
5222,
))
})
.flatten()
2018-12-18 18:04:31 +00:00
.and_then(move |tcp_stream| {
xmpp_stream::XMPPStream::start(tcp_stream, jid1, NS_JABBER_CLIENT.to_owned())
})
.and_then(|xmpp_stream| {
2018-09-06 15:46:06 +00:00
if Self::can_starttls(&xmpp_stream) {
Ok(Self::starttls(xmpp_stream))
} else {
Err(Error::Protocol(ProtocolError::NoTls))
}
2018-12-18 18:04:31 +00:00
})
.flatten()
.and_then(|tls_stream| XMPPStream::start(tls_stream, jid2, NS_JABBER_CLIENT.to_owned()))
.and_then(
move |xmpp_stream| done(Self::auth(xmpp_stream, username, password)), // TODO: flatten?
)
.and_then(|auth| auth)
.and_then(|xmpp_stream| Self::bind(xmpp_stream))
2018-09-06 15:46:06 +00:00
.and_then(|xmpp_stream| {
// println!("Bound to {}", xmpp_stream.jid);
Ok(xmpp_stream)
})
2017-06-20 19:26:51 +00:00
}
fn can_starttls<S>(stream: &xmpp_stream::XMPPStream<S>) -> bool {
2018-12-18 18:04:31 +00:00
stream
.stream_features
.get_child("starttls", NS_XMPP_TLS)
2017-06-20 19:26:51 +00:00
.is_some()
}
2018-12-18 18:04:31 +00:00
fn starttls<S: AsyncRead + AsyncWrite>(
stream: xmpp_stream::XMPPStream<S>,
) -> StartTlsClient<S> {
2017-06-20 19:26:51 +00:00
StartTlsClient::from_stream(stream)
}
2018-12-20 19:39:01 +00:00
fn auth<S: AsyncRead + AsyncWrite + 'static>(
2018-12-18 18:04:31 +00:00
stream: xmpp_stream::XMPPStream<S>,
username: String,
password: String,
) -> Result<ClientAuth<S>, Error> {
2017-06-20 19:26:51 +00:00
let creds = Credentials::default()
.with_username(username)
.with_password(password)
.with_channel_binding(ChannelBinding::None);
ClientAuth::new(stream, creds)
}
fn bind<S: AsyncWrite>(stream: xmpp_stream::XMPPStream<S>) -> ClientBind<S> {
ClientBind::new(stream)
}
}
impl Stream for Client {
type Item = Event;
2018-09-06 15:46:06 +00:00
type Error = Error;
2017-06-20 19:26:51 +00:00
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
let state = replace(&mut self.state, ClientState::Invalid);
match state {
2018-12-18 18:04:31 +00:00
ClientState::Invalid => Err(Error::InvalidState),
ClientState::Disconnected => Ok(Async::Ready(None)),
ClientState::Connecting(mut connect) => match connect.poll() {
Ok(Async::Ready(stream)) => {
self.state = ClientState::Connected(stream);
Ok(Async::Ready(Some(Event::Online)))
}
Ok(Async::NotReady) => {
self.state = ClientState::Connecting(connect);
Ok(Async::NotReady)
2017-06-20 19:26:51 +00:00
}
2018-12-18 18:04:31 +00:00
Err(e) => Err(e),
2017-06-20 19:26:51 +00:00
},
ClientState::Connected(mut stream) => {
// Poll sink
match stream.poll_complete() {
Ok(Async::NotReady) => (),
Ok(Async::Ready(())) => (),
2018-12-18 18:04:31 +00:00
Err(e) => return Err(e)?,
};
// Poll stream
2017-06-20 19:26:51 +00:00
match stream.poll() {
Ok(Async::Ready(None)) => {
// EOF
self.state = ClientState::Disconnected;
Ok(Async::Ready(Some(Event::Disconnected)))
2018-12-18 18:04:31 +00:00
}
2017-06-20 19:26:51 +00:00
Ok(Async::Ready(Some(Packet::Stanza(stanza)))) => {
self.state = ClientState::Connected(stream);
Ok(Async::Ready(Some(Event::Stanza(stanza))))
2018-12-18 18:04:31 +00:00
}
Ok(Async::NotReady) | Ok(Async::Ready(_)) => {
2017-06-20 19:26:51 +00:00
self.state = ClientState::Connected(stream);
Ok(Async::NotReady)
2018-12-18 18:04:31 +00:00
}
Err(e) => Err(e)?,
2017-06-20 19:26:51 +00:00
}
2018-12-18 18:04:31 +00:00
}
2017-06-20 19:26:51 +00:00
}
}
}
impl Sink for Client {
type SinkItem = Element;
2018-09-06 16:20:05 +00:00
type SinkError = Error;
fn start_send(&mut self, item: Self::SinkItem) -> StartSend<Self::SinkItem, Self::SinkError> {
match self.state {
2019-01-26 18:39:05 +00:00
ClientState::Connected(ref mut stream) => {
match stream.start_send(Packet::Stanza(item)) {
Ok(AsyncSink::NotReady(Packet::Stanza(stanza))) =>
Ok(AsyncSink::NotReady(stanza)),
Ok(AsyncSink::NotReady(_)) => {
panic!("Client.start_send with stanza but got something else back")
}
Ok(AsyncSink::Ready) =>
Ok(AsyncSink::Ready),
Err(e) =>
Err(e)?,
2018-12-18 18:04:31 +00:00
}
2019-01-26 18:39:05 +00:00
}
_ =>
Ok(AsyncSink::NotReady(item)),
}
}
fn poll_complete(&mut self) -> Poll<(), Self::SinkError> {
2017-07-20 22:19:08 +00:00
match self.state {
2018-12-18 18:04:31 +00:00
ClientState::Connected(ref mut stream) => stream.poll_complete().map_err(|e| e.into()),
_ => Ok(Async::Ready(())),
}
}
/// This closes the inner TCP stream.
///
/// To synchronize your shutdown with the server side, you should
/// first send `Packet::StreamEnd` and wait it to be sent back
/// before closing the connection.
fn close(&mut self) -> Poll<(), Self::SinkError> {
match self.state {
ClientState::Connected(ref mut stream) =>
stream.close()
.map_err(|e| e.into()),
_ =>
Ok(Async::Ready(())),
}
}
}