mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Move ClientBuilder and ClientType to builder module
This commit is contained in:
parent
b4caea19d4
commit
77ee7c15fa
2 changed files with 153 additions and 134 deletions
146
xmpp/src/builder.rs
Normal file
146
xmpp/src/builder.rs
Normal file
|
@ -0,0 +1,146 @@
|
||||||
|
// Copyright (c) 2023 xmpp-rs contributors.
|
||||||
|
//
|
||||||
|
// 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/.
|
||||||
|
|
||||||
|
use std::sync::{Arc, RwLock};
|
||||||
|
use tokio_xmpp::{
|
||||||
|
parsers::{
|
||||||
|
disco::{DiscoInfoResult, Feature, Identity},
|
||||||
|
ns,
|
||||||
|
},
|
||||||
|
AsyncClient as TokioXmppClient, BareJid, Jid,
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::{Agent, ClientFeature};
|
||||||
|
|
||||||
|
#[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",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct ClientBuilder<'a> {
|
||||||
|
jid: BareJid,
|
||||||
|
password: &'a str,
|
||||||
|
website: String,
|
||||||
|
default_nick: String,
|
||||||
|
lang: Vec<String>,
|
||||||
|
disco: (ClientType, String),
|
||||||
|
features: Vec<ClientFeature>,
|
||||||
|
resource: Option<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ClientBuilder<'_> {
|
||||||
|
pub fn new<'a>(jid: BareJid, password: &'a str) -> ClientBuilder<'a> {
|
||||||
|
ClientBuilder {
|
||||||
|
jid,
|
||||||
|
password,
|
||||||
|
website: String::from("https://gitlab.com/xmpp-rs/tokio-xmpp"),
|
||||||
|
default_nick: String::from("xmpp-rs"),
|
||||||
|
lang: vec![String::from("en")],
|
||||||
|
disco: (ClientType::default(), String::from("tokio-xmpp")),
|
||||||
|
features: vec![],
|
||||||
|
resource: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Optionally set a resource associated to this device on the client
|
||||||
|
pub fn set_resource(mut self, resource: &str) -> Self {
|
||||||
|
self.resource = Some(resource.to_string());
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_default_nick(mut self, nick: &str) -> Self {
|
||||||
|
self.default_nick = String::from(nick);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_lang(mut self, lang: Vec<String>) -> Self {
|
||||||
|
self.lang = lang;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
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)];
|
||||||
|
#[cfg(feature = "avatars")]
|
||||||
|
{
|
||||||
|
if self.features.contains(&ClientFeature::Avatars) {
|
||||||
|
features.push(Feature::new(format!("{}+notify", ns::AVATAR_METADATA)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if self.features.contains(&ClientFeature::JoinRooms) {
|
||||||
|
features.push(Feature::new(format!("{}+notify", ns::BOOKMARKS2)));
|
||||||
|
}
|
||||||
|
DiscoInfoResult {
|
||||||
|
node: None,
|
||||||
|
identities,
|
||||||
|
features,
|
||||||
|
extensions: vec![],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn build(self) -> Agent {
|
||||||
|
let jid: Jid = if let Some(resource) = &self.resource {
|
||||||
|
self.jid.with_resource_str(resource).unwrap().into()
|
||||||
|
} else {
|
||||||
|
self.jid.clone().into()
|
||||||
|
};
|
||||||
|
|
||||||
|
let client = TokioXmppClient::new(jid, self.password);
|
||||||
|
self.build_impl(client)
|
||||||
|
}
|
||||||
|
|
||||||
|
// This function is meant to be used for testing build
|
||||||
|
pub(crate) fn build_impl(self, client: TokioXmppClient) -> Agent {
|
||||||
|
let disco = self.make_disco();
|
||||||
|
let node = self.website;
|
||||||
|
|
||||||
|
Agent {
|
||||||
|
client,
|
||||||
|
default_nick: Arc::new(RwLock::new(self.default_nick)),
|
||||||
|
lang: Arc::new(self.lang),
|
||||||
|
disco,
|
||||||
|
node,
|
||||||
|
uploads: Vec::new(),
|
||||||
|
awaiting_disco_bookmarks_type: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
141
xmpp/src/lib.rs
141
xmpp/src/lib.rs
|
@ -14,7 +14,7 @@ pub use tokio_xmpp::parsers;
|
||||||
use tokio_xmpp::parsers::{
|
use tokio_xmpp::parsers::{
|
||||||
bookmarks, bookmarks2,
|
bookmarks, bookmarks2,
|
||||||
caps::{compute_disco, hash_caps, Caps},
|
caps::{compute_disco, hash_caps, Caps},
|
||||||
disco::{DiscoInfoQuery, DiscoInfoResult, Feature, Identity},
|
disco::{DiscoInfoQuery, DiscoInfoResult, Feature},
|
||||||
hashes::Algo,
|
hashes::Algo,
|
||||||
http_upload::SlotRequest,
|
http_upload::SlotRequest,
|
||||||
iq::Iq,
|
iq::Iq,
|
||||||
|
@ -32,34 +32,19 @@ pub use tokio_xmpp::{BareJid, Element, FullJid, Jid};
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate log;
|
extern crate log;
|
||||||
|
|
||||||
|
pub mod builder;
|
||||||
pub mod iq;
|
pub mod iq;
|
||||||
pub mod message;
|
pub mod message;
|
||||||
pub mod presence;
|
pub mod presence;
|
||||||
pub mod pubsub;
|
pub mod pubsub;
|
||||||
pub mod upload;
|
pub mod upload;
|
||||||
|
|
||||||
|
// Module re-exports
|
||||||
|
pub use builder::{ClientBuilder, ClientType};
|
||||||
|
|
||||||
pub type Error = tokio_xmpp::Error;
|
pub type Error = tokio_xmpp::Error;
|
||||||
|
pub type Id = Option<String>;
|
||||||
#[derive(Debug)]
|
pub type RoomNick = String;
|
||||||
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)]
|
#[derive(PartialEq)]
|
||||||
pub enum ClientFeature {
|
pub enum ClientFeature {
|
||||||
|
@ -69,9 +54,6 @@ pub enum ClientFeature {
|
||||||
JoinRooms,
|
JoinRooms,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type Id = Option<String>;
|
|
||||||
pub type RoomNick = String;
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum Event {
|
pub enum Event {
|
||||||
Online,
|
Online,
|
||||||
|
@ -95,115 +77,6 @@ pub enum Event {
|
||||||
HttpUploadedFile(String),
|
HttpUploadedFile(String),
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct ClientBuilder<'a> {
|
|
||||||
jid: BareJid,
|
|
||||||
password: &'a str,
|
|
||||||
website: String,
|
|
||||||
default_nick: String,
|
|
||||||
lang: Vec<String>,
|
|
||||||
disco: (ClientType, String),
|
|
||||||
features: Vec<ClientFeature>,
|
|
||||||
resource: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ClientBuilder<'_> {
|
|
||||||
pub fn new<'a>(jid: BareJid, password: &'a str) -> ClientBuilder<'a> {
|
|
||||||
ClientBuilder {
|
|
||||||
jid,
|
|
||||||
password,
|
|
||||||
website: String::from("https://gitlab.com/xmpp-rs/tokio-xmpp"),
|
|
||||||
default_nick: String::from("xmpp-rs"),
|
|
||||||
lang: vec![String::from("en")],
|
|
||||||
disco: (ClientType::default(), String::from("tokio-xmpp")),
|
|
||||||
features: vec![],
|
|
||||||
resource: None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Optionally set a resource associated to this device on the client
|
|
||||||
pub fn set_resource(mut self, resource: &str) -> Self {
|
|
||||||
self.resource = Some(resource.to_string());
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn set_default_nick(mut self, nick: &str) -> Self {
|
|
||||||
self.default_nick = String::from(nick);
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn set_lang(mut self, lang: Vec<String>) -> Self {
|
|
||||||
self.lang = lang;
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
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)];
|
|
||||||
#[cfg(feature = "avatars")]
|
|
||||||
{
|
|
||||||
if self.features.contains(&ClientFeature::Avatars) {
|
|
||||||
features.push(Feature::new(format!("{}+notify", ns::AVATAR_METADATA)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if self.features.contains(&ClientFeature::JoinRooms) {
|
|
||||||
features.push(Feature::new(format!("{}+notify", ns::BOOKMARKS2)));
|
|
||||||
}
|
|
||||||
DiscoInfoResult {
|
|
||||||
node: None,
|
|
||||||
identities,
|
|
||||||
features,
|
|
||||||
extensions: vec![],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn build(self) -> Agent {
|
|
||||||
let jid: Jid = if let Some(resource) = &self.resource {
|
|
||||||
self.jid.with_resource_str(resource).unwrap().into()
|
|
||||||
} else {
|
|
||||||
self.jid.clone().into()
|
|
||||||
};
|
|
||||||
|
|
||||||
let client = TokioXmppClient::new(jid, self.password);
|
|
||||||
self.build_impl(client)
|
|
||||||
}
|
|
||||||
|
|
||||||
// This function is meant to be used for testing build
|
|
||||||
pub(crate) fn build_impl(self, client: TokioXmppClient) -> Agent {
|
|
||||||
let disco = self.make_disco();
|
|
||||||
let node = self.website;
|
|
||||||
|
|
||||||
Agent {
|
|
||||||
client,
|
|
||||||
default_nick: Arc::new(RwLock::new(self.default_nick)),
|
|
||||||
lang: Arc::new(self.lang),
|
|
||||||
disco,
|
|
||||||
node,
|
|
||||||
uploads: Vec::new(),
|
|
||||||
awaiting_disco_bookmarks_type: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct Agent {
|
pub struct Agent {
|
||||||
client: TokioXmppClient,
|
client: TokioXmppClient,
|
||||||
default_nick: Arc<RwLock<String>>,
|
default_nick: Arc<RwLock<String>>,
|
||||||
|
|
Loading…
Reference in a new issue