Software /
code /
prosody
Diff
net/httpclient_listener.lua @ 4352:912a49b1c4e3
net.http, httpclient_listener: Move request sending from net.http to onconnect() handler, and add support for HTTPS requests to net.http
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 20 Aug 2011 15:10:04 -0400 |
parent | 2925:692b3c6c5bd2 |
child | 4354:502876d94363 |
line wrap: on
line diff
--- a/net/httpclient_listener.lua Sat Aug 20 15:08:54 2011 -0400 +++ b/net/httpclient_listener.lua Sat Aug 20 15:10:04 2011 -0400 @@ -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 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];