1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/src/info.rs

230 lines
7.2 KiB
Rust
Raw Normal View History

use std::str::FromStr;
2017-12-06 01:09:15 +00:00
use http::header::{self, HeaderName};
use httpmessage::HttpMessage;
2017-12-06 01:09:15 +00:00
use httprequest::HttpRequest;
2017-12-06 05:38:52 +00:00
const X_FORWARDED_FOR: &str = "X-FORWARDED-FOR";
2017-12-06 01:09:15 +00:00
const X_FORWARDED_HOST: &str = "X-FORWARDED-HOST";
const X_FORWARDED_PROTO: &str = "X-FORWARDED-PROTO";
/// `HttpRequest` connection information
pub struct ConnectionInfo {
scheme: String,
host: String,
remote: Option<String>,
2017-12-06 05:38:52 +00:00
peer: Option<String>,
2017-12-06 01:09:15 +00:00
}
impl ConnectionInfo {
2017-12-06 01:09:15 +00:00
/// Create *ConnectionInfo* instance for a request.
#[cfg_attr(feature = "cargo-clippy", allow(cyclomatic_complexity))]
pub fn new<S>(req: &HttpRequest<S>) -> ConnectionInfo {
2017-12-06 01:09:15 +00:00
let mut host = None;
let mut scheme = None;
2017-12-06 05:38:52 +00:00
let mut remote = None;
let mut peer = None;
2017-12-06 01:09:15 +00:00
// load forwarded header
for hdr in req.headers().get_all(header::FORWARDED) {
if let Ok(val) = hdr.to_str() {
for pair in val.split(';') {
for el in pair.split(',') {
2017-12-06 05:38:52 +00:00
let mut items = el.trim().splitn(2, '=');
2017-12-06 01:09:15 +00:00
if let Some(name) = items.next() {
if let Some(val) = items.next() {
match &name.to_lowercase() as &str {
2017-12-06 05:38:52 +00:00
"for" => if remote.is_none() {
remote = Some(val.trim());
},
2017-12-06 01:09:15 +00:00
"proto" => if scheme.is_none() {
scheme = Some(val.trim());
},
"host" => if host.is_none() {
host = Some(val.trim());
},
_ => (),
}
}
}
}
}
}
}
// scheme
if scheme.is_none() {
2018-05-17 19:20:20 +00:00
if let Some(h) = req
.headers()
2018-04-29 16:09:08 +00:00
.get(HeaderName::from_str(X_FORWARDED_PROTO).unwrap())
2018-04-13 23:02:01 +00:00
{
2017-12-06 01:09:15 +00:00
if let Ok(h) = h.to_str() {
scheme = h.split(',').next().map(|v| v.trim());
}
}
if scheme.is_none() {
2017-12-06 05:53:00 +00:00
scheme = req.uri().scheme_part().map(|a| a.as_str());
if scheme.is_none() {
2017-12-08 20:51:44 +00:00
if let Some(router) = req.router() {
if router.server_settings().secure() {
scheme = Some("https")
}
}
}
2017-12-06 01:09:15 +00:00
}
}
// host
if host.is_none() {
2018-05-17 19:20:20 +00:00
if let Some(h) = req
.headers()
2018-04-29 16:09:08 +00:00
.get(HeaderName::from_str(X_FORWARDED_HOST).unwrap())
2018-04-13 23:02:01 +00:00
{
2017-12-06 01:09:15 +00:00
if let Ok(h) = h.to_str() {
host = h.split(',').next().map(|v| v.trim());
}
}
if host.is_none() {
if let Some(h) = req.headers().get(header::HOST) {
2017-12-06 05:53:00 +00:00
host = h.to_str().ok();
2017-12-06 01:09:15 +00:00
}
if host.is_none() {
host = req.uri().authority_part().map(|a| a.as_str());
if host.is_none() {
2017-12-08 20:51:44 +00:00
if let Some(router) = req.router() {
host = Some(router.server_settings().host());
}
}
2017-12-06 01:09:15 +00:00
}
}
}
2017-12-06 05:38:52 +00:00
// remote addr
if remote.is_none() {
2018-05-17 19:20:20 +00:00
if let Some(h) = req
.headers()
2018-04-29 16:09:08 +00:00
.get(HeaderName::from_str(X_FORWARDED_FOR).unwrap())
2018-04-13 23:02:01 +00:00
{
2017-12-06 05:38:52 +00:00
if let Ok(h) = h.to_str() {
remote = h.split(',').next().map(|v| v.trim());
}
}
2018-04-13 23:02:01 +00:00
if remote.is_none() {
// get peeraddr from socketaddr
2017-12-06 05:53:00 +00:00
peer = req.peer_addr().map(|addr| format!("{}", addr));
2017-12-06 05:38:52 +00:00
}
}
2017-12-06 01:09:15 +00:00
ConnectionInfo {
scheme: scheme.unwrap_or("http").to_owned(),
host: host.unwrap_or("localhost").to_owned(),
remote: remote.map(|s| s.to_owned()),
2018-02-26 22:33:56 +00:00
peer,
2017-12-06 01:09:15 +00:00
}
}
/// Scheme of the request.
///
/// Scheme is resolved through the following headers, in this order:
///
/// - Forwarded
/// - X-Forwarded-Proto
/// - Uri
#[inline]
pub fn scheme(&self) -> &str {
&self.scheme
2017-12-06 01:09:15 +00:00
}
/// Hostname of the request.
///
/// Hostname is resolved through the following headers, in this order:
///
/// - Forwarded
/// - X-Forwarded-Host
/// - Host
/// - Uri
2017-12-26 22:36:03 +00:00
/// - Server hostname
2017-12-06 01:09:15 +00:00
pub fn host(&self) -> &str {
&self.host
2017-12-06 01:09:15 +00:00
}
/// Remote IP of client initiated HTTP request.
///
/// The IP is resolved through the following headers, in this order:
///
/// - Forwarded
/// - X-Forwarded-For
2018-03-24 06:35:52 +00:00
/// - peer name of opened socket
2017-12-06 01:09:15 +00:00
#[inline]
2017-12-06 05:38:52 +00:00
pub fn remote(&self) -> Option<&str> {
if let Some(ref r) = self.remote {
2017-12-06 05:38:52 +00:00
Some(r)
} else if let Some(ref peer) = self.peer {
Some(peer)
} else {
None
}
2017-12-06 01:09:15 +00:00
}
2017-12-06 05:38:52 +00:00
}
2017-12-06 01:09:15 +00:00
2017-12-06 05:38:52 +00:00
#[cfg(test)]
mod tests {
use super::*;
use http::header::HeaderValue;
2017-12-06 01:09:15 +00:00
2017-12-06 05:38:52 +00:00
#[test]
fn test_forwarded() {
let req = HttpRequest::default();
let info = ConnectionInfo::new(&req);
assert_eq!(info.scheme(), "http");
assert_eq!(info.host(), "localhost");
let mut req = HttpRequest::default();
req.headers_mut().insert(
header::FORWARDED,
HeaderValue::from_static(
2018-04-13 23:02:01 +00:00
"for=192.0.2.60; proto=https; by=203.0.113.43; host=rust-lang.org",
),
);
2017-12-06 05:38:52 +00:00
let info = ConnectionInfo::new(&req);
assert_eq!(info.scheme(), "https");
assert_eq!(info.host(), "rust-lang.org");
assert_eq!(info.remote(), Some("192.0.2.60"));
let mut req = HttpRequest::default();
2018-05-17 19:20:20 +00:00
req.headers_mut()
.insert(header::HOST, HeaderValue::from_static("rust-lang.org"));
2017-12-06 05:38:52 +00:00
let info = ConnectionInfo::new(&req);
assert_eq!(info.scheme(), "http");
assert_eq!(info.host(), "rust-lang.org");
assert_eq!(info.remote(), None);
let mut req = HttpRequest::default();
req.headers_mut().insert(
2018-04-13 23:02:01 +00:00
HeaderName::from_str(X_FORWARDED_FOR).unwrap(),
HeaderValue::from_static("192.0.2.60"),
);
2017-12-06 05:38:52 +00:00
let info = ConnectionInfo::new(&req);
assert_eq!(info.remote(), Some("192.0.2.60"));
let mut req = HttpRequest::default();
req.headers_mut().insert(
2018-04-13 23:02:01 +00:00
HeaderName::from_str(X_FORWARDED_HOST).unwrap(),
HeaderValue::from_static("192.0.2.60"),
);
2017-12-06 05:38:52 +00:00
let info = ConnectionInfo::new(&req);
assert_eq!(info.host(), "192.0.2.60");
assert_eq!(info.remote(), None);
let mut req = HttpRequest::default();
req.headers_mut().insert(
2018-04-13 23:02:01 +00:00
HeaderName::from_str(X_FORWARDED_PROTO).unwrap(),
HeaderValue::from_static("https"),
);
2017-12-06 05:38:52 +00:00
let info = ConnectionInfo::new(&req);
assert_eq!(info.scheme(), "https");
2017-12-06 01:09:15 +00:00
}
}