2021-02-27 23:18:25 +01:00
|
|
|
module vweb
|
|
|
|
|
|
|
|
import io
|
2021-03-04 17:00:03 +01:00
|
|
|
import strings
|
2021-02-27 23:18:25 +01:00
|
|
|
import net.http
|
|
|
|
import net.urllib
|
|
|
|
|
2021-03-04 17:00:03 +01:00
|
|
|
fn parse_request(mut reader io.BufferedReader) ?http.Request {
|
2021-02-27 23:18:25 +01:00
|
|
|
// request line
|
|
|
|
mut line := reader.read_line() ?
|
|
|
|
method, target, version := parse_request_line(line) ?
|
|
|
|
|
|
|
|
// headers
|
2021-04-09 18:17:33 +02:00
|
|
|
mut header := http.new_header()
|
2021-02-27 23:18:25 +01:00
|
|
|
line = reader.read_line() ?
|
|
|
|
for line != '' {
|
2021-03-01 11:50:52 +01:00
|
|
|
key, value := parse_header(line) ?
|
2021-04-09 18:17:33 +02:00
|
|
|
header.add_custom(key, value) ?
|
2021-02-27 23:18:25 +01:00
|
|
|
line = reader.read_line() ?
|
|
|
|
}
|
2021-04-09 18:17:33 +02:00
|
|
|
header.coerce(canonicalize: true)
|
2021-02-27 23:18:25 +01:00
|
|
|
|
|
|
|
// body
|
2021-03-02 20:02:17 +01:00
|
|
|
mut body := []byte{}
|
2021-04-09 18:17:33 +02:00
|
|
|
if length := header.get(.content_length) {
|
2021-03-01 11:50:52 +01:00
|
|
|
n := length.int()
|
2021-03-02 20:02:17 +01:00
|
|
|
if n > 0 {
|
|
|
|
body = []byte{len: n}
|
2021-04-09 09:53:33 +02:00
|
|
|
mut count := 0
|
|
|
|
for count < body.len {
|
|
|
|
count += reader.read(mut body[count..]) or { break }
|
|
|
|
}
|
2021-03-02 20:02:17 +01:00
|
|
|
}
|
2021-02-27 23:18:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return http.Request{
|
|
|
|
method: method
|
|
|
|
url: target.str()
|
2021-04-09 18:17:33 +02:00
|
|
|
header: header
|
2021-03-02 20:02:17 +01:00
|
|
|
data: body.bytestr()
|
2021-02-27 23:18:25 +01:00
|
|
|
version: version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_request_line(s string) ?(http.Method, urllib.URL, http.Version) {
|
|
|
|
words := s.split(' ')
|
|
|
|
if words.len != 3 {
|
|
|
|
return error('malformed request line')
|
|
|
|
}
|
|
|
|
method := http.method_from_str(words[0])
|
|
|
|
target := urllib.parse(words[1]) ?
|
|
|
|
version := http.version_from_str(words[2])
|
|
|
|
if version == .unknown {
|
|
|
|
return error('unsupported version')
|
|
|
|
}
|
|
|
|
|
|
|
|
return method, target, version
|
|
|
|
}
|
|
|
|
|
2021-03-01 11:50:52 +01:00
|
|
|
fn parse_header(s string) ?(string, string) {
|
2021-03-23 09:38:56 +01:00
|
|
|
if !s.contains(':') {
|
2021-02-27 23:18:25 +01:00
|
|
|
return error('missing colon in header')
|
|
|
|
}
|
|
|
|
words := s.split_nth(':', 2)
|
|
|
|
// TODO: parse quoted text according to the RFC
|
2021-03-01 11:50:52 +01:00
|
|
|
return words[0], words[1].trim_left(' \t')
|
2021-02-27 23:18:25 +01:00
|
|
|
}
|
|
|
|
|
2021-03-04 17:00:03 +01:00
|
|
|
// Parse URL encoded key=value&key=value forms
|
|
|
|
fn parse_form(body string) map[string]string {
|
|
|
|
words := body.split('&')
|
|
|
|
mut form := map[string]string{}
|
|
|
|
for word in words {
|
|
|
|
kv := word.split_nth('=', 2)
|
|
|
|
if kv.len != 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
key := urllib.query_unescape(kv[0]) or { continue }
|
|
|
|
val := urllib.query_unescape(kv[1]) or { continue }
|
|
|
|
form[key] = val
|
|
|
|
}
|
|
|
|
return form
|
|
|
|
// }
|
|
|
|
// todo: parse form-data and application/json
|
|
|
|
// ...
|
|
|
|
}
|
2021-02-27 23:18:25 +01:00
|
|
|
|
2021-03-04 17:00:03 +01:00
|
|
|
// Parse the Content-Disposition header of a multipart form
|
|
|
|
// Returns a map of the key="value" pairs
|
|
|
|
// Example: parse_disposition('Content-Disposition: form-data; name="a"; filename="b"') == {'name': 'a', 'filename': 'b'}
|
|
|
|
fn parse_disposition(line string) map[string]string {
|
|
|
|
mut data := map[string]string{}
|
|
|
|
for word in line.split(';') {
|
|
|
|
kv := word.split_nth('=', 2)
|
|
|
|
if kv.len != 2 {
|
|
|
|
continue
|
|
|
|
}
|
2021-06-15 17:28:16 +02:00
|
|
|
key, value := kv[0].to_lower().trim_left(' \t'), kv[1].trim_right('\r')
|
2021-03-04 17:00:03 +01:00
|
|
|
if value.starts_with('"') && value.ends_with('"') {
|
|
|
|
data[key] = value[1..value.len - 1]
|
|
|
|
} else {
|
|
|
|
data[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
[manualfree]
|
|
|
|
fn lines_to_string(len int, lines []string, start int, end int) string {
|
|
|
|
mut sb := strings.new_builder(len)
|
|
|
|
for i in start .. end {
|
|
|
|
sb.writeln(lines[i])
|
2021-02-27 23:18:25 +01:00
|
|
|
}
|
2021-04-16 07:46:06 +02:00
|
|
|
sb.cut_last(1) // last newline
|
2021-06-15 17:28:16 +02:00
|
|
|
if sb.last_n(1) == '\r' {
|
|
|
|
sb.cut_last(1)
|
|
|
|
}
|
2021-03-04 17:00:03 +01:00
|
|
|
res := sb.str()
|
|
|
|
unsafe { sb.free() }
|
|
|
|
return res
|
2021-02-27 23:18:25 +01:00
|
|
|
}
|