1use 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}