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
use crate::{util, Result};
use std::collections::HashMap;

#[derive(Debug)]
pub struct Request {
    path: String,
    method: String,
    body: String,

    headers: HashMap<String, String>,
    pub(crate) args: HashMap<String, String>,
    query: HashMap<String, String>,
    form: HashMap<String, String>,
}

impl Request {
    pub fn default() -> Request {
        Request {
            path: "/".to_string(),
            method: "GET".to_string(),
            body: "".to_string(),
            headers: HashMap::new(),
            args: HashMap::new(),
            query: HashMap::new(),
            form: HashMap::new(),
        }
    }

    pub fn from_path(path: &str) -> Request {
        Request::default().with_path(path)
    }

    pub fn with_path(mut self, path: &str) -> Request {
        self.path = path.to_string();
        self.parse_query();
        self
    }

    pub fn with_body(mut self, body: &str) -> Request {
        self.body = body.to_string();
        self
    }

    pub fn with_method(mut self, method: &str) -> Request {
        self.method = method.to_string();
        self
    }

    pub fn body(&self) -> &str {
        &self.body
    }

    pub fn method(&self) -> &str {
        &self.method
    }

    pub fn path(&self) -> &str {
        &self.path
    }

    pub fn arg(&self, name: &str) -> Option<&str> {
        self.args.get(name).and_then(|v| Some(v.as_ref()))
    }

    pub fn header(&self, name: &str) -> Option<&str> {
        self.headers
            .get(&name.to_lowercase())
            .and_then(|v| Some(v.as_ref()))
    }

    /// Was the given form value sent?
    pub fn has_form(&mut self, name: &str) -> bool {
        self.form.contains_key(name)
    }

    /// Return a value from the POSTed form data.
    pub fn form(&self, name: &str) -> Option<&str> {
        self.form.get(name).and_then(|s| Some(s.as_ref()))
    }

    /// Turn POSTed form data into a nice 'n tidy HashMap.
    pub(crate) fn parse_body(&mut self) {
        if !self.form.is_empty() {
            self.form.clear();
        }
        if self.body.is_empty() {
            return;
        }
        let mut map = HashMap::new();
        parse_query_into_map(&self.body, &mut map);
        if !map.is_empty() {
            self.form = map;
        }
    }

    /// Was the given query value sent?
    pub fn has_query(&mut self, name: &str) -> bool {
        self.query.contains_key(name)
    }

    /// Return a value from the ?querystring=
    pub fn query(&self, name: &str) -> Option<&str> {
        self.query.get(name).and_then(|s| Some(s.as_ref()))
    }

    /// Turn a query string into a nice 'n tidy HashMap.
    pub(crate) fn parse_query(&mut self) {
        if !self.query.is_empty() {
            self.query.clear();
        }

        // temp value
        let mut map = HashMap::new();

        // parse url
        let path = self.path();
        if let Some(start) = path.find('?') {
            parse_query_into_map(&path[start + 1..], &mut map);
        }

        if !map.is_empty() {
            // strip ?querystring from /path
            if let Some(idx) = self.path.find('?') {
                self.path = self.path[..idx].to_string();
            }
            self.query = map;
        }
    }

    pub(crate) fn from_raw_http_request(buf: &[u8]) -> Result<Option<Request>> {
        let mut headers = [httparse::EMPTY_HEADER; 100];
        let mut hreq = httparse::Request::new(&mut headers);

        let headers = hreq
            .parse(buf)
            .map_err(|e| error!("Unable to parse HTTP headers: {}", e))?;

        let header_length = match headers {
            httparse::Status::Complete(n) => n,
            httparse::Status::Partial => return Ok(None),
        };

        let mut req = Request::default();
        for header in hreq.headers {
            req.headers.insert(
                header.name.to_lowercase(),
                String::from_utf8_lossy(header.value).to_string(),
            );
        }
        if let Some(method) = hreq.method {
            req.method = method.into();
        }
        if let Some(path) = hreq.path {
            req = req.with_path(path);
        }
        if header_length < buf.len() {
            req.body = String::from_utf8_lossy(&buf[header_length..]).into();
            req.parse_body();
        }

        Ok(Some(req))
    }
}

/// Parses a query string like "name=jimbo&other_data=sure" into a
/// map!("name" => "jimbo", "other_data" => "sure") HashMap
fn parse_query_into_map(params: &str, map: &mut HashMap<String, String>) {
    for kv in params.split('&') {
        let mut parts = kv.splitn(2, '=');
        if let Some(key) = parts.next() {
            if let Some(val) = parts.next() {
                map.insert(key.to_string(), util::decode_form_value(val));
            } else {
                map.insert(key.to_string(), "".to_string());
            }
        }
    }
}