2019-03-21 17:41:29 +00:00
|
|
|
|
// Copyright (c) 2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
2019-07-25 13:03:22 +00:00
|
|
|
|
#![deny(bare_trait_objects)]
|
|
|
|
|
|
2019-03-21 17:41:29 +00:00
|
|
|
|
use std::str::FromStr;
|
2019-07-25 13:11:39 +00:00
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
use std::cell::RefCell;
|
2019-03-21 17:41:29 +00:00
|
|
|
|
use futures::{Future,Stream, Sink, sync::mpsc};
|
|
|
|
|
use tokio_xmpp::{
|
|
|
|
|
Client as TokioXmppClient,
|
|
|
|
|
Event as TokioXmppEvent,
|
|
|
|
|
Packet,
|
|
|
|
|
};
|
|
|
|
|
use xmpp_parsers::{
|
2019-07-25 13:11:39 +00:00
|
|
|
|
bookmarks::{
|
|
|
|
|
Autojoin,
|
|
|
|
|
Conference as ConferenceBookmark,
|
|
|
|
|
Storage as Bookmarks,
|
|
|
|
|
},
|
2019-03-21 17:41:29 +00:00
|
|
|
|
caps::{compute_disco, hash_caps, Caps},
|
|
|
|
|
disco::{DiscoInfoQuery, DiscoInfoResult, Feature, Identity},
|
|
|
|
|
hashes::Algo,
|
|
|
|
|
iq::{Iq, IqType},
|
|
|
|
|
message::{Message, MessageType, Body},
|
|
|
|
|
muc::{
|
|
|
|
|
Muc,
|
|
|
|
|
user::{MucUser, Status},
|
|
|
|
|
},
|
|
|
|
|
ns,
|
|
|
|
|
presence::{Presence, Type as PresenceType},
|
|
|
|
|
pubsub::{
|
|
|
|
|
event::PubSubEvent,
|
|
|
|
|
pubsub::PubSub,
|
|
|
|
|
},
|
2019-06-01 15:56:46 +00:00
|
|
|
|
roster::{Roster, Item as RosterItem},
|
2019-03-21 17:41:29 +00:00
|
|
|
|
stanza_error::{StanzaError, ErrorType, DefinedCondition},
|
|
|
|
|
Jid, JidParseError, TryFrom,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
mod avatar;
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
pub type Error = tokio_xmpp::Error;
|
|
|
|
|
|
2019-03-21 17:41:29 +00:00
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub enum ClientType {
|
|
|
|
|
Bot,
|
|
|
|
|
Pc,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Default for ClientType {
|
|
|
|
|
fn default() -> Self {
|
|
|
|
|
ClientType::Bot
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl ToString for ClientType {
|
|
|
|
|
fn to_string(&self) -> String {
|
|
|
|
|
String::from(
|
|
|
|
|
match self {
|
|
|
|
|
ClientType::Bot => "bot",
|
|
|
|
|
ClientType::Pc => "pc",
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
|
pub enum ClientFeature {
|
|
|
|
|
Avatars,
|
2019-06-01 15:56:46 +00:00
|
|
|
|
ContactList,
|
2019-07-25 13:11:39 +00:00
|
|
|
|
JoinRooms,
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-25 13:11:39 +00:00
|
|
|
|
#[derive(Debug)]
|
2019-03-21 17:41:29 +00:00
|
|
|
|
pub enum Event {
|
|
|
|
|
Online,
|
|
|
|
|
Disconnected,
|
2019-06-01 15:56:46 +00:00
|
|
|
|
ContactAdded(RosterItem),
|
|
|
|
|
ContactRemoved(RosterItem),
|
|
|
|
|
ContactChanged(RosterItem),
|
2019-03-21 17:41:29 +00:00
|
|
|
|
AvatarRetrieved(Jid, String),
|
2019-07-25 13:11:39 +00:00
|
|
|
|
OpenRoomBookmark(ConferenceBookmark),
|
2019-03-21 17:41:29 +00:00
|
|
|
|
RoomJoined(Jid),
|
2019-07-25 13:11:39 +00:00
|
|
|
|
RoomLeft(Jid),
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
|
pub struct ClientBuilder<'a> {
|
|
|
|
|
jid: &'a str,
|
|
|
|
|
password: &'a str,
|
|
|
|
|
website: String,
|
2019-07-25 13:11:39 +00:00
|
|
|
|
default_nick: String,
|
2019-03-21 17:41:29 +00:00
|
|
|
|
disco: (ClientType, String),
|
|
|
|
|
features: Vec<ClientFeature>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl ClientBuilder<'_> {
|
|
|
|
|
pub fn new<'a>(jid: &'a str, password: &'a str) -> ClientBuilder<'a> {
|
|
|
|
|
ClientBuilder {
|
|
|
|
|
jid,
|
|
|
|
|
password,
|
|
|
|
|
website: String::from("https://gitlab.com/xmpp-rs/tokio-xmpp"),
|
2019-07-25 13:11:39 +00:00
|
|
|
|
default_nick: String::from("xmpp-rs"),
|
2019-03-21 17:41:29 +00:00
|
|
|
|
disco: (ClientType::default(), String::from("tokio-xmpp")),
|
|
|
|
|
features: vec![],
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_client(mut self, type_: ClientType, name: &str) -> Self {
|
|
|
|
|
self.disco = (type_, String::from(name));
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_website(mut self, url: &str) -> Self {
|
|
|
|
|
self.website = String::from(url);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-25 13:11:39 +00:00
|
|
|
|
pub fn set_default_nick(mut self, nick: &str) -> Self {
|
|
|
|
|
self.default_nick = String::from(nick);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-21 17:41:29 +00:00
|
|
|
|
pub fn enable_feature(mut self, feature: ClientFeature) -> Self {
|
|
|
|
|
self.features.push(feature);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn make_disco(&self) -> DiscoInfoResult {
|
|
|
|
|
let identities = vec![Identity::new("client", self.disco.0.to_string(),
|
|
|
|
|
"en", self.disco.1.to_string())];
|
|
|
|
|
let mut features = vec![
|
|
|
|
|
Feature::new(ns::DISCO_INFO),
|
|
|
|
|
];
|
|
|
|
|
if self.features.contains(&ClientFeature::Avatars) {
|
|
|
|
|
features.push(Feature::new(format!("{}+notify", ns::AVATAR_METADATA)));
|
|
|
|
|
}
|
2019-07-25 13:11:39 +00:00
|
|
|
|
if self.features.contains(&ClientFeature::JoinRooms) {
|
|
|
|
|
features.push(Feature::new(format!("{}+notify", ns::BOOKMARKS)));
|
|
|
|
|
}
|
2019-03-21 17:41:29 +00:00
|
|
|
|
DiscoInfoResult {
|
|
|
|
|
node: None,
|
|
|
|
|
identities,
|
|
|
|
|
features,
|
|
|
|
|
extensions: vec![],
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn make_initial_presence(disco: &DiscoInfoResult, node: &str) -> Presence {
|
|
|
|
|
let caps_data = compute_disco(disco);
|
|
|
|
|
let hash = hash_caps(&caps_data, Algo::Sha_1).unwrap();
|
|
|
|
|
let caps = Caps::new(node, hash);
|
|
|
|
|
|
|
|
|
|
let mut presence = Presence::new(PresenceType::None);
|
|
|
|
|
presence.add_payload(caps);
|
|
|
|
|
presence
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
pub fn build(
|
|
|
|
|
self,
|
|
|
|
|
) -> Result<(Agent, impl Stream<Item = Event, Error = tokio_xmpp::Error>), JidParseError> {
|
|
|
|
|
let client = TokioXmppClient::new(self.jid, self.password)?;
|
|
|
|
|
Ok(self.build_impl(client))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This function is meant to be used for testing build
|
|
|
|
|
pub(crate) fn build_impl<S>(
|
|
|
|
|
self,
|
|
|
|
|
stream: S,
|
|
|
|
|
) -> (Agent, impl Stream<Item = Event, Error = tokio_xmpp::Error>)
|
|
|
|
|
where
|
|
|
|
|
S: Stream<Item = tokio_xmpp::Event, Error = tokio_xmpp::Error>
|
|
|
|
|
+ Sink<SinkItem = tokio_xmpp::Packet, SinkError = tokio_xmpp::Error>,
|
|
|
|
|
{
|
2019-03-21 17:41:29 +00:00
|
|
|
|
let disco = self.make_disco();
|
|
|
|
|
let node = self.website;
|
|
|
|
|
let (sender_tx, sender_rx) = mpsc::unbounded();
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
let client = stream;
|
2019-03-21 17:41:29 +00:00
|
|
|
|
let (sink, stream) = client.split();
|
|
|
|
|
|
|
|
|
|
let reader = {
|
|
|
|
|
let mut sender_tx = sender_tx.clone();
|
|
|
|
|
let jid = self.jid.to_owned();
|
2019-07-05 16:59:05 +00:00
|
|
|
|
stream.map(move |event| {
|
2019-03-21 17:41:29 +00:00
|
|
|
|
// Helper function to send an iq error.
|
2019-07-05 16:59:05 +00:00
|
|
|
|
let mut events = Vec::new();
|
2019-03-21 17:41:29 +00:00
|
|
|
|
let send_error = |to, id, type_, condition, text: &str| {
|
|
|
|
|
let error = StanzaError::new(type_, condition, "en", text);
|
|
|
|
|
let iq = Iq::from_error(id, error)
|
|
|
|
|
.with_to(to)
|
|
|
|
|
.into();
|
|
|
|
|
sender_tx.unbounded_send(Packet::Stanza(iq)).unwrap();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
match event {
|
|
|
|
|
TokioXmppEvent::Online => {
|
|
|
|
|
let presence = ClientBuilder::make_initial_presence(&disco, &node).into();
|
|
|
|
|
let packet = Packet::Stanza(presence);
|
|
|
|
|
sender_tx.unbounded_send(packet)
|
|
|
|
|
.unwrap();
|
2019-07-05 16:59:05 +00:00
|
|
|
|
events.push(Event::Online);
|
2019-06-13 22:41:21 +00:00
|
|
|
|
// TODO: only send this when the ContactList feature is enabled.
|
2019-06-01 15:56:46 +00:00
|
|
|
|
let iq = Iq::from_get("roster", Roster { ver: None, items: vec![] })
|
|
|
|
|
.into();
|
|
|
|
|
sender_tx.unbounded_send(Packet::Stanza(iq)).unwrap();
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
TokioXmppEvent::Disconnected => {
|
2019-07-05 16:59:05 +00:00
|
|
|
|
events.push(Event::Disconnected);
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
TokioXmppEvent::Stanza(stanza) => {
|
|
|
|
|
if stanza.is("iq", "jabber:client") {
|
|
|
|
|
let iq = Iq::try_from(stanza).unwrap();
|
|
|
|
|
if let IqType::Get(payload) = iq.payload {
|
|
|
|
|
if payload.is("query", ns::DISCO_INFO) {
|
|
|
|
|
let query = DiscoInfoQuery::try_from(payload);
|
|
|
|
|
match query {
|
|
|
|
|
Ok(query) => {
|
|
|
|
|
let mut disco_info = disco.clone();
|
|
|
|
|
disco_info.node = query.node;
|
|
|
|
|
let iq = Iq::from_result(iq.id, Some(disco_info))
|
|
|
|
|
.with_to(iq.from.unwrap())
|
|
|
|
|
.into();
|
|
|
|
|
sender_tx.unbounded_send(Packet::Stanza(iq)).unwrap();
|
|
|
|
|
},
|
|
|
|
|
Err(err) => {
|
|
|
|
|
send_error(iq.from.unwrap(), iq.id, ErrorType::Modify, DefinedCondition::BadRequest, &format!("{}", err));
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// We MUST answer unhandled get iqs with a service-unavailable error.
|
|
|
|
|
send_error(iq.from.unwrap(), iq.id, ErrorType::Cancel, DefinedCondition::ServiceUnavailable, "No handler defined for this kind of iq.");
|
|
|
|
|
}
|
|
|
|
|
} else if let IqType::Result(Some(payload)) = iq.payload {
|
2019-06-13 22:41:21 +00:00
|
|
|
|
// TODO: move private iqs like this one somewhere else, for
|
|
|
|
|
// security reasons.
|
|
|
|
|
if payload.is("query", ns::ROSTER) && iq.from.is_none() {
|
2019-06-01 15:56:46 +00:00
|
|
|
|
let roster = Roster::try_from(payload).unwrap();
|
|
|
|
|
for item in roster.items.into_iter() {
|
2019-07-05 16:59:05 +00:00
|
|
|
|
events.push(Event::ContactAdded(item));
|
2019-06-01 15:56:46 +00:00
|
|
|
|
}
|
|
|
|
|
} else if payload.is("pubsub", ns::PUBSUB) {
|
2019-03-21 17:41:29 +00:00
|
|
|
|
let pubsub = PubSub::try_from(payload).unwrap();
|
|
|
|
|
let from =
|
2019-07-25 13:11:39 +00:00
|
|
|
|
iq.from.clone().unwrap_or_else(|| Jid::from_str(&jid).unwrap());
|
2019-03-21 17:41:29 +00:00
|
|
|
|
if let PubSub::Items(items) = pubsub {
|
|
|
|
|
if items.node.0 == ns::AVATAR_DATA {
|
2019-07-05 16:59:05 +00:00
|
|
|
|
let new_events = avatar::handle_data_pubsub_iq(&from, &items);
|
|
|
|
|
events.extend(new_events);
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if let IqType::Set(_) = iq.payload {
|
|
|
|
|
// We MUST answer unhandled set iqs with a service-unavailable error.
|
|
|
|
|
send_error(iq.from.unwrap(), iq.id, ErrorType::Cancel, DefinedCondition::ServiceUnavailable, "No handler defined for this kind of iq.");
|
|
|
|
|
}
|
|
|
|
|
} else if stanza.is("message", "jabber:client") {
|
|
|
|
|
let message = Message::try_from(stanza).unwrap();
|
|
|
|
|
let from = message.from.clone().unwrap();
|
|
|
|
|
for child in message.payloads {
|
|
|
|
|
if child.is("event", ns::PUBSUB_EVENT) {
|
|
|
|
|
let event = PubSubEvent::try_from(child).unwrap();
|
|
|
|
|
if let PubSubEvent::PublishedItems { node, items } = event {
|
|
|
|
|
if node.0 == ns::AVATAR_METADATA {
|
2019-07-25 15:42:30 +00:00
|
|
|
|
let new_events = avatar::handle_metadata_pubsub_event(&from, &mut sender_tx, items);
|
|
|
|
|
events.extend(new_events);
|
2019-07-25 13:11:39 +00:00
|
|
|
|
} else if node.0 == ns::BOOKMARKS {
|
|
|
|
|
// TODO: Check that our bare JID is the sender.
|
|
|
|
|
assert_eq!(items.len(), 1);
|
|
|
|
|
let item = items.clone().pop().unwrap();
|
|
|
|
|
let payload = item.payload.clone().unwrap();
|
|
|
|
|
let bookmarks = match Bookmarks::try_from(payload) {
|
|
|
|
|
Ok(bookmarks) => bookmarks,
|
|
|
|
|
// XXX: Don’t panic…
|
|
|
|
|
Err(err) => panic!("… {}", err),
|
|
|
|
|
};
|
|
|
|
|
for bookmark in bookmarks.conferences {
|
|
|
|
|
if bookmark.autojoin == Autojoin::True {
|
|
|
|
|
events.push(Event::OpenRoomBookmark(bookmark));
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if stanza.is("presence", "jabber:client") {
|
|
|
|
|
let presence = Presence::try_from(stanza).unwrap();
|
|
|
|
|
let from = presence.from.clone().unwrap();
|
|
|
|
|
for payload in presence.payloads.into_iter() {
|
|
|
|
|
let muc_user = match MucUser::try_from(payload) {
|
|
|
|
|
Ok(muc_user) => muc_user,
|
|
|
|
|
_ => continue
|
|
|
|
|
};
|
|
|
|
|
for status in muc_user.status.into_iter() {
|
|
|
|
|
if status == Status::SelfPresence {
|
2019-07-05 16:59:05 +00:00
|
|
|
|
events.push(Event::RoomJoined(from.clone()));
|
2019-03-21 17:41:29 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if stanza.is("error", "http://etherx.jabber.org/streams") {
|
|
|
|
|
println!("Received a fatal stream error: {}", String::from(&stanza));
|
|
|
|
|
} else {
|
|
|
|
|
panic!("Unknown stanza: {}", String::from(&stanza));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
futures::stream::iter_ok(events)
|
2019-03-21 17:41:29 +00:00
|
|
|
|
})
|
2019-07-05 16:59:05 +00:00
|
|
|
|
.flatten()
|
2019-03-21 17:41:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let sender = sender_rx
|
|
|
|
|
.map_err(|e| panic!("Sink error: {:?}", e))
|
|
|
|
|
.forward(sink)
|
|
|
|
|
.map(|(rx, mut sink)| {
|
|
|
|
|
drop(rx);
|
|
|
|
|
let _ = sink.close();
|
2019-07-05 16:59:05 +00:00
|
|
|
|
None
|
2019-03-21 17:41:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
// TODO is this correct?
|
|
|
|
|
// Some(Error) means a real error
|
|
|
|
|
// None means the end of the sender stream and can be ignored
|
|
|
|
|
let future = reader
|
|
|
|
|
.map(Some)
|
|
|
|
|
.select(sender.into_stream())
|
|
|
|
|
.filter_map(|x| x);
|
2019-03-21 17:41:29 +00:00
|
|
|
|
|
2019-07-25 13:11:39 +00:00
|
|
|
|
let agent = Agent {
|
|
|
|
|
sender_tx,
|
|
|
|
|
default_nick: Rc::new(RefCell::new(self.default_nick)),
|
|
|
|
|
};
|
2019-03-21 17:41:29 +00:00
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
(agent, future)
|
2019-03-21 17:41:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 16:59:05 +00:00
|
|
|
|
pub struct Agent {
|
|
|
|
|
sender_tx: mpsc::UnboundedSender<Packet>,
|
2019-07-25 13:11:39 +00:00
|
|
|
|
default_nick: Rc<RefCell<String>>,
|
2019-07-05 16:59:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Agent {
|
2019-07-25 13:11:39 +00:00
|
|
|
|
pub fn join_room(&mut self, room: Jid, nick: Option<String>, password: Option<String>,
|
|
|
|
|
lang: &str, status: &str) {
|
|
|
|
|
let mut muc = Muc::new();
|
|
|
|
|
if let Some(password) = password {
|
|
|
|
|
muc = muc.with_password(password);
|
|
|
|
|
}
|
|
|
|
|
// TODO: change room into a BareJid, which requires an update of jid, which requires an
|
|
|
|
|
// update of xmpp-parsers, which requires an update of tokio-xmpp…
|
|
|
|
|
assert_eq!(room.resource, None);
|
|
|
|
|
|
|
|
|
|
let nick = nick.unwrap_or_else(|| self.default_nick.borrow().clone());
|
|
|
|
|
let room_jid = room.with_resource(nick);
|
2019-03-21 17:41:29 +00:00
|
|
|
|
let mut presence = Presence::new(PresenceType::None)
|
2019-07-25 13:11:39 +00:00
|
|
|
|
.with_to(Some(room_jid));
|
|
|
|
|
presence.add_payload(muc);
|
2019-03-21 17:41:29 +00:00
|
|
|
|
presence.set_status(String::from(lang), String::from(status));
|
|
|
|
|
let presence = presence.into();
|
|
|
|
|
self.sender_tx.unbounded_send(Packet::Stanza(presence))
|
|
|
|
|
.unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn send_message(&mut self, recipient: Jid, type_: MessageType, lang: &str, text: &str) {
|
|
|
|
|
let mut message = Message::new(Some(recipient));
|
|
|
|
|
message.type_ = type_;
|
|
|
|
|
message.bodies.insert(String::from(lang), Body(String::from(text)));
|
|
|
|
|
let message = message.into();
|
|
|
|
|
self.sender_tx.unbounded_send(Packet::Stanza(message))
|
|
|
|
|
.unwrap();
|
|
|
|
|
}
|
|
|
|
|
}
|