1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// 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::io;
use std::path::{Path, PathBuf};
use std::sync::{Arc, RwLock};

use tokio::sync::{
    mpsc::{self, UnboundedReceiver, UnboundedSender},
    oneshot, Mutex,
};
use tokio_xmpp::connect::ServerConnector;
pub use tokio_xmpp::parsers;
use tokio_xmpp::parsers::{disco::DiscoInfoResult, message::MessageType};
pub use tokio_xmpp::{
    jid::{BareJid, FullJid, Jid},
    minidom::Element,
    AsyncClient as TokioXmppClient,
};

use crate::stream::{xml_stream_worker, IqRequest, IqResponse, NonTransactional, Request};
use crate::{message, muc, upload, Error, RoomNick};

#[derive(Debug)]
pub struct Agent {
    // pub(crate) client: TokioXmppClient<C>,
    boundjid: Jid,
    pub(crate) default_nick: Arc<RwLock<String>>,
    pub(crate) lang: Arc<Vec<String>>,
    pub(crate) disco: DiscoInfoResult,
    pub(crate) node: String,
    pub(crate) uploads: Vec<(String, Jid, PathBuf)>,
    pub(crate) awaiting_disco_bookmarks_type: bool,
    cmdq: UnboundedSender<Request>,
    miscq: Arc<Mutex<UnboundedReceiver<NonTransactional>>>,
}

impl Agent {
    pub(crate) fn new<C: ServerConnector>(
        client: TokioXmppClient<C>,
        default_nick: String,
        lang: Vec<String>,
        disco: DiscoInfoResult,
        node: String,
    ) -> Result<Agent, Error> {
        let (cmdtx, cmdrx) = mpsc::unbounded_channel();
        let (misctx, miscrx) = mpsc::unbounded_channel();
        let _ = tokio::spawn(xml_stream_worker(client, cmdrx, misctx));

        Ok(Agent {
            cmdq: cmdtx,
            miscq: Arc::new(Mutex::new(miscrx)),
            // client,
            boundjid: Jid::new("foo@bar/meh").unwrap(),
            default_nick: Arc::new(RwLock::new(default_nick)),
            lang: Arc::new(lang),
            disco,
            node,
            uploads: Vec::new(),
            awaiting_disco_bookmarks_type: false,
        })
    }

    pub async fn misc_receiver(&self) -> Arc<Mutex<UnboundedReceiver<NonTransactional>>> {
        Arc::clone(&self.miscq)
    }

    pub async fn send_stanza(&mut self, _stanza: Element) -> Result<(), Error> {
        Ok(())
    }

    pub async fn send_iq(&self, req: IqRequest) -> io::Result<IqResponse> {
        let (tx, rx) = oneshot::channel();
        let req = Request::SendIq {
            to: req.to,
            data: req.data,
            response: tx,
        };
        let _ = Ok::<(), io::Result<IqResponse>>(self.cmdq.send(req).unwrap());
        Ok(rx.await.unwrap()?)
    }

    pub async fn disconnect(&mut self) -> Result<(), Error> {
        let (tx, rx) = oneshot::channel();
        let req = Request::Disconnect { response: tx };
        let _ = Ok::<(), io::Error>(self.cmdq.send(req).unwrap());
        Ok(rx.await.unwrap()?)
    }

    /// Get the bound jid of the client.
    ///
    /// If the client is not connected, this will be None.
    pub fn bound_jid(&self) -> Option<&Jid> {
        Some(&self.boundjid)
    }

    pub async fn join_room(
        &mut self,
        room: BareJid,
        nick: Option<String>,
        password: Option<String>,
        lang: &str,
        status: &str,
    ) {
        muc::room::join_room(self, room, nick, password, lang, status).await
    }

    /// Request to leave a chatroom.
    ///
    /// If successful, an [Event::RoomLeft] event will be produced. This method does not remove the room
    /// from bookmarks nor remove the autojoin flag. See [muc::room::leave_room] for more information.
    ///
    /// # Arguments
    ///
    /// * `room_jid`: The JID of the room to leave.
    /// * `nickname`: The nickname to use in the room.
    /// * `lang`: The language of the status message (empty string when unknown).
    /// * `status`: The status message to send.
    pub async fn leave_room(
        &mut self,
        room_jid: BareJid,
        nickname: RoomNick,
        lang: impl Into<String>,
        status: impl Into<String>,
    ) {
        muc::room::leave_room(self, room_jid, nickname, lang, status).await
    }

    pub async fn send_message(
        &mut self,
        recipient: Jid,
        type_: MessageType,
        lang: &str,
        text: &str,
    ) {
        message::send::send_message(self, recipient, type_, lang, text).await
    }

    pub async fn send_room_private_message(
        &mut self,
        room: BareJid,
        recipient: RoomNick,
        lang: &str,
        text: &str,
    ) {
        muc::private_message::send_room_private_message(self, room, recipient, lang, text).await
    }

    pub async fn upload_file_with(&mut self, service: &str, path: &Path) {
        upload::send::upload_file_with(self, service, path).await
    }
}