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
use std::io::{self, Read, BufReader};
use std::net::SocketAddr;
use std::fmt::{self, Debug};
use hyper::uri::RequestUri::{AbsoluteUri, AbsolutePath};
use hyper::net::NetworkStream;
use hyper::http::h1::HttpReader;
use typemap::TypeMap;
use plugin::Extensible;
use method::Method;
pub use hyper::server::request::Request as HttpRequest;
use hyper::buffer;
pub use self::url::Url;
use {Protocol, Plugin, Headers, Set, headers};
mod url;
pub struct Request<'a, 'b: 'a> {
pub url: Url,
pub remote_addr: SocketAddr,
pub local_addr: SocketAddr,
pub headers: Headers,
pub body: Body<'a, 'b>,
pub method: Method,
pub extensions: TypeMap
}
impl<'a, 'b> Debug for Request<'a, 'b> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
try!(writeln!(f, "Request {{"));
try!(writeln!(f, " url: {:?}", self.url));
try!(writeln!(f, " method: {:?}", self.method));
try!(writeln!(f, " remote_addr: {:?}", self.remote_addr));
try!(writeln!(f, " local_addr: {:?}", self.local_addr));
try!(write!(f, "}}"));
Ok(())
}
}
impl<'a, 'b> Request<'a, 'b> {
pub fn from_http(req: HttpRequest<'a, 'b>, local_addr: SocketAddr, protocol: &Protocol)
-> Result<Request<'a, 'b>, String> {
let (addr, method, headers, uri, _, reader) = req.deconstruct();
let url = match uri {
AbsoluteUri(ref url) => {
match Url::from_generic_url(url.clone()) {
Ok(url) => url,
Err(e) => return Err(e)
}
},
AbsolutePath(ref path) => {
let url_string = match headers.get::<headers::Host>() {
Some(ref host) => {
format!("{}://{}:{}{}", protocol.name(), host.hostname, local_addr.port(),
path)
},
None => return Err("No host specified in request".to_string())
};
match Url::parse(&url_string) {
Ok(url) => url,
Err(e) => return Err(format!("Couldn't parse requested URL: {}", e))
}
},
_ => return Err("Unsupported request URI".to_string())
};
Ok(Request {
url: url,
remote_addr: addr,
local_addr: local_addr,
headers: headers,
body: Body::new(reader),
method: method,
extensions: TypeMap::new()
})
}
}
pub struct Body<'a, 'b: 'a>(HttpReader<&'a mut buffer::BufReader<&'b mut NetworkStream>>);
impl<'a, 'b> Body<'a, 'b> {
pub fn new(reader: HttpReader<&'a mut buffer::BufReader<&'b mut NetworkStream>>) -> Body<'a, 'b> {
Body(reader)
}
}
impl<'a, 'b> Read for Body<'a, 'b> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
self.0.read(buf)
}
}
impl<'a, 'b> Extensible for Request<'a, 'b> {
fn extensions(&self) -> &TypeMap {
&self.extensions
}
fn extensions_mut(&mut self) -> &mut TypeMap {
&mut self.extensions
}
}
impl<'a, 'b> Plugin for Request<'a, 'b> {}
impl<'a, 'b> Set for Request<'a, 'b> {}