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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
use crate::async_client::AsyncClient;
use crate::blocking_client::BlockingClient;
use crate::iotools;
use crate::url::GraphUrl;
use crate::{HttpClient, RequestClient, RequestType};
use graph_error::download::{AsyncDownloadError, BlockingDownloadError};
use graph_error::{WithGraphError, WithGraphErrorAsync};
use reqwest::header::HeaderMap;
use std::cell::RefCell;
use std::ffi::OsString;
use std::path::Path;
use std::path::PathBuf;
pub struct DownloadRequest {
path: PathBuf,
create_dir_all: bool,
overwrite_existing_file: bool,
file_name: Option<OsString>,
extension: Option<String>,
}
impl DownloadRequest {
pub fn new(path: PathBuf) -> DownloadRequest {
DownloadRequest {
path,
create_dir_all: false,
overwrite_existing_file: false,
file_name: None,
extension: None,
}
}
}
pub struct DownloadClient<Client, Request> {
client: Client,
request: Request,
}
pub type BlockingDownload =
DownloadClient<HttpClient<RefCell<BlockingClient>>, RefCell<DownloadRequest>>;
pub type AsyncDownload = DownloadClient<
HttpClient<std::sync::Arc<tokio::sync::Mutex<AsyncClient>>>,
std::sync::Arc<tokio::sync::Mutex<DownloadRequest>>,
>;
pub const MAX_FILE_NAME_LEN: usize = 255;
impl<Client, Request> DownloadClient<Client, Request> {
fn parse_content_disposition(&self, headers: &HeaderMap) -> Option<OsString> {
if let Some(value) = headers.get("content-disposition") {
if let Ok(header) = std::str::from_utf8(value.as_ref()) {
let mut v: Vec<&str> = header.split(';').collect();
v.retain(|s| !s.is_empty());
if let Some(value) = v.iter().find(|s| s.starts_with("filename*=utf-8''")) {
let s = value.replace("filename*=utf-8''", "");
if let Ok(s) = percent_encoding::percent_decode(s.as_bytes()).decode_utf8() {
return Some(OsString::from(s.to_string().replace("/", "-")));
}
}
if let Some(value) = v.last() {
if value.trim_start().starts_with("filename=") {
return Some(OsString::from(
value
.replace("\"", "")
.replace("filename=", "")
.replace("/", "-")
.trim(),
));
}
}
}
}
None
}
}
impl BlockingDownload {
pub fn new(client: BlockingClient) -> BlockingDownload {
let path = client.download_dir.clone().unwrap();
DownloadClient {
request: RefCell::new(DownloadRequest::new(path)),
client: HttpClient::from(client),
}
}
pub fn create_dir_all(&self, value: bool) -> &Self {
self.request.borrow_mut().create_dir_all = value;
self
}
pub fn is_create_dir_all(&self) -> bool {
self.request.borrow().create_dir_all
}
pub fn overwrite_existing_file(&self, value: bool) -> &Self {
self.request.borrow_mut().overwrite_existing_file = value;
self
}
pub fn is_overwrite_existing_file(&self) -> bool {
self.request.borrow().overwrite_existing_file
}
pub fn set_file_name(&self, value: OsString) -> &Self {
self.request.borrow_mut().file_name = Some(value);
self
}
pub fn set_extension(&self, value: &str) -> &Self {
self.request.borrow_mut().extension = Some(value.into());
self
}
pub fn set_dir<P: AsRef<Path>>(&self, path: P) -> &Self {
self.request.borrow_mut().path = path.as_ref().to_path_buf();
self
}
pub fn directory(&self) -> PathBuf {
self.request.borrow().path.clone()
}
pub fn file_name(&self) -> Option<OsString> {
self.request.borrow().file_name.clone()
}
pub fn extension(&self) -> Option<String> {
self.request.borrow().extension.clone()
}
pub fn url(&self) -> GraphUrl {
self.client.url()
}
pub fn format(&self, format: &str) {
self.client.set_request_type(RequestType::Redirect);
self.client.url_mut(|url| url.format(format));
}
pub fn send(self) -> Result<PathBuf, BlockingDownloadError> {
self.download()
}
fn download(self) -> Result<PathBuf, BlockingDownloadError> {
let request = self.request.borrow();
if request.create_dir_all {
iotools::create_dir(request.path.as_path())?;
} else if !request.path.exists() {
return Err(BlockingDownloadError::TargetDoesNotExist(
request.path.to_string_lossy().to_string(),
));
}
let response = self.client.build().send()?.with_graph_error()?;
let path = {
if let Some(name) = request
.file_name
.clone()
.or_else(|| self.parse_content_disposition(response.headers()))
{
if name.len() > MAX_FILE_NAME_LEN {
return Err(BlockingDownloadError::FileNameTooLong);
}
request.path.join(name)
} else {
return Err(BlockingDownloadError::NoFileName);
}
};
if let Some(ext) = request.extension.as_ref() {
path.with_extension(ext.as_str());
}
if path.exists() && !self.is_overwrite_existing_file() {
return Err(BlockingDownloadError::FileExists(
path.to_string_lossy().to_string(),
));
}
Ok(iotools::copy(path, response)?)
}
}
impl AsyncDownload {
pub fn new_async(client: AsyncClient) -> AsyncDownload {
let path = client.download_dir.clone().unwrap();
DownloadClient {
request: std::sync::Arc::new(tokio::sync::Mutex::new(DownloadRequest::new(path))),
client: HttpClient::from(client),
}
}
pub async fn create_dir_all(&self, value: bool) -> &Self {
self.request.lock().await.create_dir_all = value;
self
}
pub async fn is_create_dir_all(&self) -> bool {
self.request.lock().await.create_dir_all
}
pub async fn overwrite_existing_file(&self, value: bool) -> &Self {
self.request.lock().await.overwrite_existing_file = value;
self
}
pub async fn is_overwrite_existing_file(&self) -> bool {
self.request.lock().await.overwrite_existing_file
}
pub async fn set_file_name(&self, value: OsString) -> &Self {
self.request.lock().await.file_name = Some(value);
self
}
pub async fn set_extension(&self, value: &str) -> &Self {
self.request.lock().await.extension = Some(value.into());
self
}
pub async fn set_dir<P: AsRef<Path>>(&self, path: P) -> &Self {
self.request.lock().await.path = path.as_ref().to_path_buf();
self
}
pub async fn directory(&self) -> PathBuf {
self.request.lock().await.path.clone()
}
pub async fn file_name(&self) -> Option<OsString> {
self.request.lock().await.file_name.clone()
}
pub async fn extension(&self) -> Option<String> {
self.request.lock().await.extension.clone()
}
pub async fn url(&self) -> GraphUrl {
self.client.url()
}
pub async fn format(&self, format: &str) {
self.client.set_request_type(RequestType::Redirect);
self.client.url_mut(|url| {
url.format(format);
});
}
pub async fn send(self) -> Result<PathBuf, AsyncDownloadError> {
self.download_async().await
}
async fn download_async(self) -> Result<PathBuf, AsyncDownloadError> {
let request = self.request.lock().await;
if request.create_dir_all {
iotools::create_dir_async(request.path.as_path()).await?;
} else if !request.path.exists() {
return Err(AsyncDownloadError::TargetDoesNotExist(
request.path.to_string_lossy().to_string(),
));
}
let response = self
.client
.build()
.await
.send()
.await?
.with_graph_error()
.await?;
let path = {
if let Some(name) = request
.file_name
.clone()
.or_else(|| self.parse_content_disposition(response.headers()))
{
if name.len() > MAX_FILE_NAME_LEN {
return Err(AsyncDownloadError::FileNameTooLong);
}
request.path.join(name)
} else {
return Err(AsyncDownloadError::NoFileName);
}
};
if let Some(ext) = request.extension.as_ref() {
path.with_extension(ext.as_str());
}
if path.exists() && !request.overwrite_existing_file {
return Err(AsyncDownloadError::FileExists(
path.to_string_lossy().to_string(),
));
}
Ok(iotools::copy_async(path, response).await?)
}
}