aboutsummaryrefslogtreecommitdiffstats
path: root/net/httpclient_listener.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-08-20 15:10:04 -0400
committerMatthew Wild <mwild1@gmail.com>2011-08-20 15:10:04 -0400
commit029b66e93309de112f3f63919503be8ddc18c604 (patch)
tree7e50423fa10ef1ca181d9d9d04d0c3fb7301c7da /net/httpclient_listener.lua
parent5e135c491c66a639fe73a371bcc89c863694b9cd (diff)
downloadprosody-029b66e93309de112f3f63919503be8ddc18c604.tar.gz
prosody-029b66e93309de112f3f63919503be8ddc18c604.zip
net.http, httpclient_listener: Move request sending from net.http to onconnect() handler, and add support for HTTPS requests to net.http
Diffstat (limited to 'net/httpclient_listener.lua')
-rw-r--r--net/httpclient_listener.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/net/httpclient_listener.lua b/net/httpclient_listener.lua
index dfa25062..df571a58 100644
--- a/net/httpclient_listener.lua
+++ b/net/httpclient_listener.lua
@@ -7,6 +7,7 @@
--
local log = require "util.logger".init("httpclient_listener");
+local t_concat = table.concat;
local connlisteners_register = require "net.connlisteners".register;
@@ -15,6 +16,27 @@ local buffers = {}; -- Buffers of partial lines
local httpclient = { default_port = 80, default_mode = "*a" };
+function httpclient.onconnect(conn)
+ local req = requests[conn];
+ -- Send the request
+ local request_line = { req.method or "GET", " ", req.path, " HTTP/1.1\r\n" };
+ if req.query then
+ t_insert(request_line, 4, "?"..req.query);
+ end
+
+ conn:write(t_concat(request_line));
+ local t = { [2] = ": ", [4] = "\r\n" };
+ for k, v in pairs(req.headers) do
+ t[1], t[3] = k, v;
+ conn:write(t_concat(t));
+ end
+ conn:write("\r\n");
+
+ if body then
+ conn:write(body);
+ end
+end
+
function httpclient.onincoming(conn, data)
local request = requests[conn];