-
Notifications
You must be signed in to change notification settings - Fork 518
/
Copy pathcore.rs
848 lines (743 loc) · 28 KB
/
core.rs
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use super::error::parse_error;
use crate::raw::*;
use crate::*;
use bytes::Bytes;
use http::{header, Request, Response, StatusCode};
use serde::Deserialize;
use std::collections::VecDeque;
use std::fmt;
use std::fmt::{Debug, Formatter};
/// The request to query all properties of a file or directory.
///
/// rfc4918 9.1: retrieve all properties define in specification
static PROPFIND_REQUEST: &str = r#"<?xml version="1.0" encoding="utf-8" ?><D:propfind xmlns:D="DAV:"><D:allprop/></D:propfind>"#;
/// The header to specify the depth of the query.
///
/// Valid values are `0`, `1`, `infinity`.
///
/// - `0`: only to the resource itself.
/// - `1`: to the resource and its internal members only.
/// - `infinity`: to the resource and all its members.
///
/// reference: [RFC4918: 10.2. Depth Header](https://datatracker.ietf.org/doc/html/rfc4918#section-10.2)
static HEADER_DEPTH: &str = "Depth";
/// The header to specify the destination of the query.
///
/// The Destination request header specifies the URI that identifies a
/// destination resource for methods such as COPY and MOVE, which take
/// two URIs as parameters.
///
/// reference: [RFC4918: 10.3. Destination Header](https://datatracker.ietf.org/doc/html/rfc4918#section-10.3)
static HEADER_DESTINATION: &str = "Destination";
/// The header to specify the overwrite behavior of the query
///
/// The Overwrite request header specifies whether the server should
/// overwrite a resource mapped to the destination URL during a COPY or
/// MOVE.
///
/// Valid values are `T` and `F`.
///
/// A value of "F" states that the server must not perform the COPY or MOVE operation
/// if the destination URL does map to a resource.
///
/// reference: [RFC4918: 10.6. Overwrite Header](https://datatracker.ietf.org/doc/html/rfc4918#section-10.6)
static HEADER_OVERWRITE: &str = "Overwrite";
pub struct WebdavCore {
pub endpoint: String,
pub server_path: String,
pub root: String,
pub disable_copy: bool,
pub authorization: Option<String>,
pub client: HttpClient,
}
impl Debug for WebdavCore {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("WebdavCore")
.field("endpoint", &self.endpoint)
.field("root", &self.root)
.finish_non_exhaustive()
}
}
impl WebdavCore {
pub async fn webdav_stat(&self, path: &str) -> Result<Metadata> {
let path = build_rooted_abs_path(&self.root, path);
self.webdav_stat_rooted_abs_path(&path).await
}
/// Input path must be `rooted_abs_path`.
async fn webdav_stat_rooted_abs_path(&self, rooted_abs_path: &str) -> Result<Metadata> {
let url = format!("{}{}", self.endpoint, percent_encode_path(rooted_abs_path));
let mut req = Request::builder().method("PROPFIND").uri(url);
req = req.header(header::CONTENT_TYPE, "application/xml");
req = req.header(header::CONTENT_LENGTH, PROPFIND_REQUEST.len());
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth);
}
// Only stat the resource itself.
req = req.header(HEADER_DEPTH, "0");
let req = req
.body(AsyncBody::Bytes(Bytes::from(PROPFIND_REQUEST)))
.map_err(new_request_build_error)?;
let resp = self.client.send(req).await?;
if !resp.status().is_success() {
return Err(parse_error(resp).await?);
}
let bs = resp.into_body().bytes().await?;
let result: Multistatus = deserialize_multistatus(&bs)?;
let propfind_resp = result.response.first().ok_or_else(|| {
Error::new(
ErrorKind::NotFound,
"propfind response is empty, the resource is not exist",
)
})?;
let metadata = parse_propstat(&propfind_resp.propstat)?;
Ok(metadata)
}
pub async fn webdav_get(
&self,
path: &str,
args: OpRead,
) -> Result<Response<IncomingAsyncBody>> {
let path = build_rooted_abs_path(&self.root, path);
let url: String = format!("{}{}", self.endpoint, percent_encode_path(&path));
let mut req = Request::get(&url);
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth.clone())
}
let range = args.range();
if !range.is_full() {
req = req.header(header::RANGE, range.to_header());
}
let req = req
.body(AsyncBody::Empty)
.map_err(new_request_build_error)?;
self.client.send(req).await
}
pub async fn webdav_put(
&self,
path: &str,
size: Option<u64>,
args: &OpWrite,
body: AsyncBody,
) -> Result<Response<IncomingAsyncBody>> {
let path = build_rooted_abs_path(&self.root, path);
let url = format!("{}{}", self.endpoint, percent_encode_path(&path));
let mut req = Request::put(&url);
if let Some(v) = &self.authorization {
req = req.header(header::AUTHORIZATION, v)
}
if let Some(v) = size {
req = req.header(header::CONTENT_LENGTH, v)
}
if let Some(v) = args.content_type() {
req = req.header(header::CONTENT_TYPE, v)
}
if let Some(v) = args.content_disposition() {
req = req.header(header::CONTENT_DISPOSITION, v)
}
let req = req.body(body).map_err(new_request_build_error)?;
self.client.send(req).await
}
pub async fn webdav_delete(&self, path: &str) -> Result<Response<IncomingAsyncBody>> {
let path = build_rooted_abs_path(&self.root, path);
let url = format!("{}{}", self.endpoint, percent_encode_path(&path));
let mut req = Request::delete(&url);
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth.clone())
}
let req = req
.body(AsyncBody::Empty)
.map_err(new_request_build_error)?;
self.client.send(req).await
}
pub async fn webdav_copy(&self, from: &str, to: &str) -> Result<Response<IncomingAsyncBody>> {
// Check if source file exists.
let _ = self.webdav_stat(from).await?;
// Make sure target's dir is exist.
self.webdav_mkcol(get_parent(to)).await?;
let source = build_rooted_abs_path(&self.root, from);
let source_uri = format!("{}{}", self.endpoint, percent_encode_path(&source));
let target = build_rooted_abs_path(&self.root, to);
let target_uri = format!("{}{}", self.endpoint, percent_encode_path(&target));
let mut req = Request::builder().method("COPY").uri(&source_uri);
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth);
}
req = req.header(HEADER_DESTINATION, target_uri);
req = req.header(HEADER_OVERWRITE, "T");
let req = req
.body(AsyncBody::Empty)
.map_err(new_request_build_error)?;
self.client.send(req).await
}
pub async fn webdav_move(&self, from: &str, to: &str) -> Result<Response<IncomingAsyncBody>> {
// Check if source file exists.
let _ = self.webdav_stat(from).await?;
// Make sure target's dir is exist.
self.webdav_mkcol(get_parent(to)).await?;
let source = build_rooted_abs_path(&self.root, from);
let source_uri = format!("{}{}", self.endpoint, percent_encode_path(&source));
let target = build_rooted_abs_path(&self.root, to);
let target_uri = format!("{}{}", self.endpoint, percent_encode_path(&target));
let mut req = Request::builder().method("MOVE").uri(&source_uri);
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth);
}
req = req.header(HEADER_DESTINATION, target_uri);
req = req.header(HEADER_OVERWRITE, "T");
let req = req
.body(AsyncBody::Empty)
.map_err(new_request_build_error)?;
self.client.send(req).await
}
pub async fn webdav_list(
&self,
path: &str,
args: &OpList,
) -> Result<Response<IncomingAsyncBody>> {
let path = build_rooted_abs_path(&self.root, path);
let url = format!("{}{}", self.endpoint, percent_encode_path(&path));
let mut req = Request::builder().method("PROPFIND").uri(&url);
req = req.header(header::CONTENT_TYPE, "application/xml");
req = req.header(header::CONTENT_LENGTH, PROPFIND_REQUEST.len());
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth);
}
if args.recursive() {
req = req.header(HEADER_DEPTH, "infinity");
} else {
req = req.header(HEADER_DEPTH, "1");
}
let req = req
.body(AsyncBody::Bytes(Bytes::from(PROPFIND_REQUEST)))
.map_err(new_request_build_error)?;
self.client.send(req).await
}
/// Create dir recursively for given path.
///
/// # Notes
///
/// We only expose this method to the backend since there are dependencies on input path.
pub async fn webdav_mkcol(&self, path: &str) -> Result<()> {
let path = build_rooted_abs_path(&self.root, path);
let mut path = path.as_str();
let mut dirs = VecDeque::default();
loop {
match self.webdav_stat_rooted_abs_path(path).await {
// Dir is exist, break the loop.
Ok(_) => {
break;
}
// Dir not found, keep going.
Err(err) if err.kind() == ErrorKind::NotFound => {
dirs.push_front(path);
path = get_parent(path);
}
// Unexpected error found, return it.
Err(err) => return Err(err),
}
if path == "/" {
break;
}
}
for dir in dirs {
self.webdav_mkcol_rooted_abs_path(dir).await?;
}
Ok(())
}
/// Create a dir
///
/// Input path must be `rooted_abs_path`
///
/// Reference: [RFC4918: 9.3.1. MKCOL Status Codes](https://datatracker.ietf.org/doc/html/rfc4918#section-9.3.1)
async fn webdav_mkcol_rooted_abs_path(&self, rooted_abs_path: &str) -> Result<()> {
let url = format!("{}{}", self.endpoint, percent_encode_path(rooted_abs_path));
let mut req = Request::builder().method("MKCOL").uri(&url);
if let Some(auth) = &self.authorization {
req = req.header(header::AUTHORIZATION, auth.clone())
}
let req = req
.body(AsyncBody::Empty)
.map_err(new_request_build_error)?;
let resp = self.client.send(req).await?;
let status = resp.status();
match status {
// 201 (Created) - The collection was created.
StatusCode::CREATED
// 405 (Method Not Allowed) - MKCOL can only be executed on an unmapped URL.
//
// The MKCOL method can only be performed on a deleted or non-existent resource.
// This error means the directory already exists which is allowed by create_dir.
| StatusCode::METHOD_NOT_ALLOWED => {
resp.into_body().consume().await?;
Ok(())
}
_ => Err(parse_error(resp).await?),
}
}
}
pub fn deserialize_multistatus(bs: &[u8]) -> Result<Multistatus> {
let s = String::from_utf8_lossy(bs);
// HACKS! HACKS! HACKS!
//
// Make sure the string is escaped.
// Related to <https://github.com/tafia/quick-xml/issues/719>
//
// This is a temporary solution, we should find a better way to handle this.
let s = s.replace("&()_+-=;", "%26%28%29_%2B-%3D%3B");
quick_xml::de::from_str(&s).map_err(new_xml_deserialize_error)
}
pub fn parse_propstat(propstat: &Propstat) -> Result<Metadata> {
let Propstat {
prop:
Prop {
getlastmodified,
getcontentlength,
getcontenttype,
getetag,
resourcetype,
..
},
status,
} = propstat;
if let [_, code, text] = status.splitn(3, ' ').collect::<Vec<_>>()[..3] {
// As defined in https://tools.ietf.org/html/rfc2068#section-6.1
let code = code.parse::<u16>().unwrap();
if code >= 400 {
return Err(Error::new(
ErrorKind::Unexpected,
&format!("propfind response is unexpected: {} {}", code, text),
));
}
}
let mode: EntryMode = if resourcetype.value == Some(ResourceType::Collection) {
EntryMode::DIR
} else {
EntryMode::FILE
};
let mut m = Metadata::new(mode);
if let Some(v) = getcontentlength {
m.set_content_length(v.parse::<u64>().unwrap());
}
if let Some(v) = getcontenttype {
m.set_content_type(v);
}
if let Some(v) = getetag {
m.set_etag(v);
}
// https://www.rfc-editor.org/rfc/rfc4918#section-14.18
m.set_last_modified(parse_datetime_from_rfc2822(getlastmodified)?);
// the storage services have returned all the properties
Ok(m.with_metakey(Metakey::Complete))
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone, Default)]
#[serde(default)]
pub struct Multistatus {
pub response: Vec<PropfindResponse>,
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct PropfindResponse {
pub href: String,
pub propstat: Propstat,
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct Propstat {
pub status: String,
pub prop: Prop,
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct Prop {
pub getlastmodified: String,
pub getetag: Option<String>,
pub getcontentlength: Option<String>,
pub getcontenttype: Option<String>,
pub resourcetype: ResourceTypeContainer,
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct ResourceTypeContainer {
#[serde(rename = "$value")]
pub value: Option<ResourceType>,
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
#[serde(rename_all = "lowercase")]
pub enum ResourceType {
Collection,
}
#[cfg(test)]
mod tests {
use quick_xml::de::from_str;
use super::*;
#[test]
fn test_propstat() {
let xml = r#"<D:propstat>
<D:prop>
<D:displayname>/</D:displayname>
<D:getlastmodified>Tue, 01 May 2022 06:39:47 GMT</D:getlastmodified>
<D:resourcetype><D:collection/></D:resourcetype>
<D:lockdiscovery/>
<D:supportedlock>
<D:lockentry>
<D:lockscope><D:exclusive/></D:lockscope>
<D:locktype><D:write/></D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>"#;
let propstat = from_str::<Propstat>(xml).unwrap();
assert_eq!(
propstat.prop.getlastmodified,
"Tue, 01 May 2022 06:39:47 GMT"
);
assert_eq!(
propstat.prop.resourcetype.value.unwrap(),
ResourceType::Collection
);
assert_eq!(propstat.status, "HTTP/1.1 200 OK");
}
#[test]
fn test_response_simple() {
let xml = r#"<D:response>
<D:href>/</D:href>
<D:propstat>
<D:prop>
<D:displayname>/</D:displayname>
<D:getlastmodified>Tue, 01 May 2022 06:39:47 GMT</D:getlastmodified>
<D:resourcetype><D:collection/></D:resourcetype>
<D:lockdiscovery/>
<D:supportedlock>
<D:lockentry>
<D:lockscope><D:exclusive/></D:lockscope>
<D:locktype><D:write/></D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>"#;
let response = from_str::<PropfindResponse>(xml).unwrap();
assert_eq!(response.href, "/");
assert_eq!(
response.propstat.prop.getlastmodified,
"Tue, 01 May 2022 06:39:47 GMT"
);
assert_eq!(
response.propstat.prop.resourcetype.value.unwrap(),
ResourceType::Collection
);
assert_eq!(response.propstat.status, "HTTP/1.1 200 OK");
}
#[test]
fn test_response_file() {
let xml = r#"<D:response>
<D:href>/test_file</D:href>
<D:propstat>
<D:prop>
<D:displayname>test_file</D:displayname>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Tue, 07 May 2022 05:52:22 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
<D:lockdiscovery />
<D:supportedlock>
<D:lockentry>
<D:lockscope>
<D:exclusive />
</D:lockscope>
<D:locktype>
<D:write />
</D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>"#;
let response = from_str::<PropfindResponse>(xml).unwrap();
assert_eq!(response.href, "/test_file");
assert_eq!(
response.propstat.prop.getlastmodified,
"Tue, 07 May 2022 05:52:22 GMT"
);
assert_eq!(response.propstat.prop.getcontentlength.unwrap(), "1");
assert_eq!(response.propstat.prop.resourcetype.value, None);
assert_eq!(response.propstat.status, "HTTP/1.1 200 OK");
}
#[test]
fn test_with_multiple_items_simple() {
let xml = r#"<D:multistatus xmlns:D="DAV:">
<D:response>
<D:href>/</D:href>
<D:propstat>
<D:prop>
<D:displayname>/</D:displayname>
<D:getlastmodified>Tue, 01 May 2022 06:39:47 GMT</D:getlastmodified>
<D:resourcetype><D:collection/></D:resourcetype>
<D:lockdiscovery/>
<D:supportedlock>
<D:lockentry>
<D:lockscope><D:exclusive/></D:lockscope>
<D:locktype><D:write/></D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/</D:href>
<D:propstat>
<D:prop>
<D:displayname>/</D:displayname>
<D:getlastmodified>Tue, 01 May 2022 06:39:47 GMT</D:getlastmodified>
<D:resourcetype><D:collection/></D:resourcetype>
<D:lockdiscovery/>
<D:supportedlock>
<D:lockentry>
<D:lockscope><D:exclusive/></D:lockscope>
<D:locktype><D:write/></D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>"#;
let multistatus = from_str::<Multistatus>(xml).unwrap();
let response = multistatus.response;
assert_eq!(response.len(), 2);
assert_eq!(response[0].href, "/");
assert_eq!(
response[0].propstat.prop.getlastmodified,
"Tue, 01 May 2022 06:39:47 GMT"
);
}
#[test]
fn test_with_multiple_items_mixed() {
let xml = r#"<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response>
<D:href>/</D:href>
<D:propstat>
<D:prop>
<D:displayname>/</D:displayname>
<D:getlastmodified>Tue, 07 May 2022 06:39:47 GMT</D:getlastmodified>
<D:resourcetype>
<D:collection />
</D:resourcetype>
<D:lockdiscovery />
<D:supportedlock>
<D:lockentry>
<D:lockscope>
<D:exclusive />
</D:lockscope>
<D:locktype>
<D:write />
</D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/testdir/</D:href>
<D:propstat>
<D:prop>
<D:displayname>testdir</D:displayname>
<D:getlastmodified>Tue, 07 May 2022 06:40:10 GMT</D:getlastmodified>
<D:resourcetype>
<D:collection />
</D:resourcetype>
<D:lockdiscovery />
<D:supportedlock>
<D:lockentry>
<D:lockscope>
<D:exclusive />
</D:lockscope>
<D:locktype>
<D:write />
</D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file</D:href>
<D:propstat>
<D:prop>
<D:displayname>test_file</D:displayname>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Tue, 07 May 2022 05:52:22 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
<D:lockdiscovery />
<D:supportedlock>
<D:lockentry>
<D:lockscope>
<D:exclusive />
</D:lockscope>
<D:locktype>
<D:write />
</D:locktype>
</D:lockentry>
</D:supportedlock>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>"#;
let multistatus = from_str::<Multistatus>(xml).unwrap();
let response = multistatus.response;
assert_eq!(response.len(), 3);
let first_response = &response[0];
assert_eq!(first_response.href, "/");
assert_eq!(
first_response.propstat.prop.getlastmodified,
"Tue, 07 May 2022 06:39:47 GMT"
);
let second_response = &response[1];
assert_eq!(second_response.href, "/testdir/");
assert_eq!(
second_response.propstat.prop.getlastmodified,
"Tue, 07 May 2022 06:40:10 GMT"
);
let third_response = &response[2];
assert_eq!(third_response.href, "/test_file");
assert_eq!(
third_response.propstat.prop.getlastmodified,
"Tue, 07 May 2022 05:52:22 GMT"
);
}
#[test]
fn test_with_multiple_items_mixed_nginx() {
let xml = r#"<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response>
<D:href>/</D:href>
<D:propstat>
<D:prop>
<D:getlastmodified>Fri, 17 Feb 2023 03:37:22 GMT</D:getlastmodified>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_75</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_36</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_38</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_59</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_9</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_93</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_43</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
<D:response>
<D:href>/test_file_95</D:href>
<D:propstat>
<D:prop>
<D:getcontentlength>1</D:getcontentlength>
<D:getlastmodified>Fri, 17 Feb 2023 03:36:54 GMT</D:getlastmodified>
<D:resourcetype></D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>
"#;
let multistatus: Multistatus = from_str(xml).unwrap();
let response = multistatus.response;
assert_eq!(response.len(), 9);
let first_response = &response[0];
assert_eq!(first_response.href, "/");
assert_eq!(
first_response.propstat.prop.getlastmodified,
"Fri, 17 Feb 2023 03:37:22 GMT"
);
}
}