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
#![recursion_limit = "1024"]
#[macro_use] extern crate error_chain;
extern crate reqwest;
extern crate serde;
extern crate serde_json;
pub mod errors;
pub mod local;
pub mod http;
use errors::*;
use reqwest::Url;
use serde::de::DeserializeOwned;
use std::io::Read;
pub fn open_bytes_str(url: &str) -> Result<Vec<u8>> {
let url = Url::parse(url)?;
open_bytes(url)
}
pub fn open_bytes(url: Url) -> Result<Vec<u8>> {
let scheme = url.scheme().to_string();
match scheme.as_str() {
"http"|"https" => http::open_bytes(url),
"file" => local::open_bytes(url.path()),
prot => Err(format!("Protocol {} is not supported.", prot).into())
}
}
pub fn open_str(url: &str) -> Result<Box<dyn Read>> {
let url = Url::parse(url)?;
open(url)
}
pub fn open(url: Url) -> Result<Box<dyn Read>> {
let scheme = url.scheme().to_string();
match scheme.as_str() {
"http"|"https" => http::open(url),
"file" => local::open(url.path()),
prot => Err(format!("Protocol {} is not supported.", prot).into())
}
}
pub fn open_json<T: DeserializeOwned>(url: Url) -> Result<T> {
let scheme = url.scheme().to_string();
match scheme.as_str() {
"http"|"https" => http::open_json(url),
"file" => local::open_json(url.path()),
prot => Err(format!("Protocol {} is not supported.", prot).into())
}
}
pub fn open_json_str<T: DeserializeOwned>(url: &str) -> Result<T> {
let url = Url::parse(url)?;
open_json(url)
}
#[test]
fn test_local() {
use std::fs;
let path = fs::canonicalize("./src/lib.rs").unwrap();
let local_bytes = open_bytes(Url::parse(&format!("file://{}", path.display())).unwrap()).unwrap();
assert!(local_bytes.len() > 0);
let _ = open(Url::parse(&format!("file://{}", path.display())).unwrap()).unwrap();
}
#[test]
fn test_remote() {
let remote_bytes = open_bytes(Url::parse("https://gitlab.com/Artefaritaj/file-fetcher/raw/master/src/lib.rs").unwrap()).unwrap();
assert!(remote_bytes.len() > 0);
let _ = open(Url::parse("https://gitlab.com/Artefaritaj/file-fetcher/raw/master/src/lib.rs").unwrap()).unwrap();
}