use futures::sink::SinkExt;
use minidom::Element;
use std::str::FromStr;
use xmpp_parsers::{jid::Jid, ns};
use crate::{
component::login::component_login,
connect::ServerConnector,
proto::{add_stanza_id, XmppStream},
Error,
};
#[cfg(any(feature = "starttls", feature = "insecure-tcp"))]
use crate::connect::DnsConfig;
#[cfg(feature = "insecure-tcp")]
use crate::connect::TcpServerConnector;
mod login;
mod stream;
pub struct Component<C: ServerConnector> {
pub jid: Jid,
stream: XmppStream<C::Stream>,
}
impl<C: ServerConnector> Component<C> {
pub async fn send_stanza(&mut self, stanza: Element) -> Result<(), Error> {
self.send(add_stanza_id(stanza, ns::COMPONENT_ACCEPT)).await
}
pub async fn send_end(&mut self) -> Result<(), Error> {
self.close().await
}
}
#[cfg(feature = "insecure-tcp")]
impl Component<TcpServerConnector> {
#[cfg(feature = "insecure-tcp")]
pub async fn new(jid: &str, password: &str) -> Result<Self, Error> {
Self::new_plaintext(jid, password, DnsConfig::addr("127.0.0.1:5347")).await
}
#[cfg(feature = "insecure-tcp")]
pub async fn new_plaintext(
jid: &str,
password: &str,
dns_config: DnsConfig,
) -> Result<Self, Error> {
Component::new_with_connector(jid, password, TcpServerConnector::from(dns_config)).await
}
}
impl<C: ServerConnector> Component<C> {
pub async fn new_with_connector(
jid: &str,
password: &str,
connector: C,
) -> Result<Self, Error> {
let jid = Jid::from_str(jid)?;
let password = password.to_owned();
let stream = component_login(connector, jid.clone(), password).await?;
Ok(Component { jid, stream })
}
}