diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-12 03:09:52 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-12 03:09:52 +0100 |
commit | 59d26a18515f74ae405fe2014b15d8f8d67b2120 (patch) | |
tree | 1ec448572fa5e6121b1e08df5b2c47eea6b7ac35 /net/http | |
parent | 7e6b8c8f267f41b77627b1c2bab0d9918efb9498 (diff) | |
download | prosody-59d26a18515f74ae405fe2014b15d8f8d67b2120.tar.gz prosody-59d26a18515f74ae405fe2014b15d8f8d67b2120.zip |
net.http.parser: Do full URL decoding and parsing (e.g. adds request.url.query when present)
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/parser.lua | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua index 3d9d1a87..d3f0dc03 100644 --- a/net/http/parser.lua +++ b/net/http/parser.lua @@ -1,8 +1,11 @@ local tonumber = tonumber; local assert = assert; +local url_parse = require "socket.url".parse; +local urldecode = require "net.http".urldecode; local function preprocess_path(path) + path = urldecode(path); if path:sub(1,1) ~= "/" then path = "/"..path; end @@ -88,15 +91,14 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb) responseheaders = headers; }; else - -- path normalization - if path:match("^https?://") then - headers.host, path = path:match("^https?://([^/]*)(.*)"); - end - path = preprocess_path(path); + local parsed_url = url_parse(path); + path = preprocess_path(parsed_url.path); + headers.host = parsed_url.host; len = len or 0; packet = { method = method; + url = parsed_url; path = path; httpversion = httpversion; headers = headers; |