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
use std::error::Error;
use reqwest::{
multipart::{Form, Part},
Client,
};
use crate::{helper::*, CATBOX_API_URL};
pub async fn from_file<S: Into<String>>(
file_path: S,
user_hash: Option<S>,
) -> Result<String, Box<dyn Error>> {
let file_path = file_path.into();
let file = file_stream(&file_path).await?;
let file_name = file_name(&file_path);
let form = Form::new()
.text("reqtype", "fileupload")
.text(
"userhash",
user_hash
.and_then(|hash| Some(hash.into()))
.unwrap_or_default(),
)
.part("fileToUpload", Part::stream(file).file_name(file_name));
Ok(Client::new()
.post(CATBOX_API_URL)
.multipart(form)
.send()
.await?
.text()
.await?)
}
pub async fn from_url<S: Into<String>>(
url: S,
user_hash: Option<S>,
) -> Result<String, Box<dyn Error>> {
let form = [
("reqtype", "urlupload"),
(
"userhash",
&user_hash
.and_then(|hash| Some(hash.into()))
.unwrap_or_default(),
),
("url", &url.into()),
];
Ok(Client::new()
.post(CATBOX_API_URL)
.form(&form)
.send()
.await?
.text()
.await?)
}
pub async fn delete<S: Into<String>>(
user_hash: S,
files: Vec<S>,
) -> Result<String, Box<dyn Error>> {
let files: Vec<_> = files.into_iter().map(|file| file.into()).collect();
let form = [
("reqtype", "deletefiles"),
("userhash", &user_hash.into()),
("files", &files.join(" ")),
];
Ok(Client::new()
.post(CATBOX_API_URL)
.form(&form)
.send()
.await?
.text()
.await?)
}