xmpp/upload/
send.rs

1// Copyright (c) 2023 xmpp-rs contributors.
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7use std::path::Path;
8use tokio::fs::File;
9use tokio_xmpp::{
10    jid::Jid,
11    parsers::{http_upload::SlotRequest, iq::Iq},
12};
13
14use crate::Agent;
15
16pub async fn upload_file_with(agent: &mut Agent, service: &str, path: &Path) {
17    let name = path.file_name().unwrap().to_str().unwrap().to_string();
18    let file = File::open(path).await.unwrap();
19    let size = file.metadata().await.unwrap().len();
20    let slot_request = SlotRequest {
21        filename: name,
22        size: size,
23        content_type: None,
24    };
25    let to = service.parse::<Jid>().unwrap();
26    let request = Iq::from_get("upload1", slot_request).with_to(to.clone());
27    agent
28        .uploads
29        .push((String::from("upload1"), to, path.to_path_buf()));
30    agent.client.send_stanza(request.into()).await.unwrap();
31}