use crate::error::AuthError;
use minidom::Element;
use xmpp_parsers::ns;
#[derive(Debug)]
pub struct StreamFeatures(pub Element);
impl StreamFeatures {
pub fn new(element: Element) -> Self {
StreamFeatures(element)
}
pub fn can_starttls(&self) -> bool {
self.0.get_child("starttls", ns::TLS).is_some()
}
pub fn sasl_mechanisms<'a>(&'a self) -> Result<impl Iterator<Item = String> + 'a, AuthError> {
Ok(self
.0
.get_child("mechanisms", ns::SASL)
.ok_or(AuthError::NoMechanism)?
.children()
.filter(|child| child.is("mechanism", ns::SASL))
.map(|mech_el| mech_el.text()))
}
pub fn can_bind(&self) -> bool {
self.0.get_child("bind", ns::BIND).is_some()
}
}