2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-08-07 21:50:04 +02:00
|
|
|
-- HTTP/1.1 client support for the Lua language.
|
2003-06-26 20:47:49 +02:00
|
|
|
-- LuaSocket toolkit.
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Author: Diego Nehab
|
2001-08-07 21:50:04 +02:00
|
|
|
-- Conforming to: RFC 2616, LTN7
|
|
|
|
-- RCS ID: $Id$
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
-- make sure LuaSocket is loaded
|
|
|
|
if not LUASOCKET_LIBNAME then error('module requires LuaSocket') end
|
|
|
|
-- get LuaSocket namespace
|
|
|
|
local socket = _G[LUASOCKET_LIBNAME]
|
|
|
|
if not socket then error('module requires LuaSocket') end
|
|
|
|
-- create smtp namespace inside LuaSocket namespace
|
|
|
|
local http = {}
|
|
|
|
socket.http = http
|
|
|
|
-- make all module globals fall into smtp namespace
|
|
|
|
setmetatable(http, { __index = _G })
|
|
|
|
setfenv(1, http)
|
2001-07-29 05:51:36 +02:00
|
|
|
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Program constants
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- connection timeout in seconds
|
2004-01-16 08:06:31 +01:00
|
|
|
TIMEOUT = 60
|
2000-12-29 23:15:09 +01:00
|
|
|
-- default port for document retrieval
|
2004-01-16 08:06:31 +01:00
|
|
|
PORT = 80
|
2000-12-29 23:15:09 +01:00
|
|
|
-- user agent field sent in request
|
2004-01-16 08:06:31 +01:00
|
|
|
USERAGENT = "LuaSocket 2.0"
|
2001-06-06 22:55:45 +02:00
|
|
|
-- block size used in transfers
|
2004-01-16 08:06:31 +01:00
|
|
|
BLOCKSIZE = 8192
|
2001-07-29 05:51:36 +02:00
|
|
|
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Tries to get a pattern from the server and closes socket on error
|
2000-12-29 23:15:09 +01:00
|
|
|
-- sock: socket connected to the server
|
2003-05-25 03:54:13 +02:00
|
|
|
-- pattern: pattern to receive
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2003-05-25 03:54:13 +02:00
|
|
|
-- received pattern on success
|
|
|
|
-- nil followed by error message on error
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function try_receiving(sock, pattern)
|
2003-05-25 03:54:13 +02:00
|
|
|
local data, err = sock:receive(pattern)
|
|
|
|
if not data then sock:close() end
|
|
|
|
return data, err
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Tries to send data to the server and closes socket on error
|
2000-12-29 23:15:09 +01:00
|
|
|
-- sock: socket connected to the server
|
2001-01-25 23:01:37 +01:00
|
|
|
-- data: data to send
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-01-25 23:01:37 +01:00
|
|
|
-- err: error message if any, nil if successfull
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function try_sending(sock, ...)
|
|
|
|
local sent, err = sock:send(unpack(arg))
|
2003-05-25 03:54:13 +02:00
|
|
|
if not sent then sock:close() end
|
2001-01-25 23:01:37 +01:00
|
|
|
return err
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-08-07 21:50:04 +02:00
|
|
|
-- Receive server reply messages, parsing for status code
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2001-01-25 23:01:37 +01:00
|
|
|
-- sock: socket connected to the server
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-01-25 23:01:37 +01:00
|
|
|
-- code: server status code or nil if error
|
2001-08-07 21:50:04 +02:00
|
|
|
-- line: full HTTP status line
|
2000-12-29 23:15:09 +01:00
|
|
|
-- err: error message if any
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_status(sock)
|
2001-01-25 23:01:37 +01:00
|
|
|
local line, err
|
2004-01-16 08:06:31 +01:00
|
|
|
line, err = try_receiving(sock)
|
|
|
|
if not err then
|
|
|
|
local code, _
|
|
|
|
_, _, code = string.find(line, "HTTP/%d*%.%d* (%d%d%d)")
|
|
|
|
return tonumber(code), line
|
2000-12-29 23:15:09 +01:00
|
|
|
else return nil, nil, err end
|
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Receive and parse response header fields
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2001-01-25 23:01:37 +01:00
|
|
|
-- sock: socket connected to the server
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: a table that might already contain headers
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: a table with all headers fields in the form
|
2000-12-29 23:15:09 +01:00
|
|
|
-- {name_1 = "value_1", name_2 = "value_2" ... name_n = "value_n"}
|
|
|
|
-- all name_i are lowercase
|
|
|
|
-- nil and error message in case of error
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_headers(sock, headers)
|
2000-12-29 23:15:09 +01:00
|
|
|
local line, err
|
2001-07-29 05:51:36 +02:00
|
|
|
local name, value, _
|
2004-01-16 08:06:31 +01:00
|
|
|
headers = headers or {}
|
2001-01-25 23:01:37 +01:00
|
|
|
-- get first line
|
2004-01-16 08:06:31 +01:00
|
|
|
line, err = try_receiving(sock)
|
2001-01-25 23:01:37 +01:00
|
|
|
if err then return nil, err end
|
2000-12-29 23:15:09 +01:00
|
|
|
-- headers go until a blank line is found
|
|
|
|
while line ~= "" do
|
|
|
|
-- get field-name and value
|
2002-12-03 00:34:41 +01:00
|
|
|
_,_, name, value = string.find(line, "^(.-):%s*(.*)")
|
2001-01-25 23:01:37 +01:00
|
|
|
if not name or not value then
|
|
|
|
sock:close()
|
|
|
|
return nil, "malformed reponse headers"
|
|
|
|
end
|
2002-12-03 00:34:41 +01:00
|
|
|
name = string.lower(name)
|
2000-12-29 23:15:09 +01:00
|
|
|
-- get next line (value might be folded)
|
2004-01-16 08:06:31 +01:00
|
|
|
line, err = try_receiving(sock)
|
2001-01-25 23:01:37 +01:00
|
|
|
if err then return nil, err end
|
2000-12-29 23:15:09 +01:00
|
|
|
-- unfold any folded values
|
2002-12-03 00:34:41 +01:00
|
|
|
while not err and string.find(line, "^%s") do
|
2000-12-29 23:15:09 +01:00
|
|
|
value = value .. line
|
2004-01-16 08:06:31 +01:00
|
|
|
line, err = try_receiving(sock)
|
2001-01-25 23:01:37 +01:00
|
|
|
if err then return nil, err end
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
-- save pair in table
|
2001-07-29 05:51:36 +02:00
|
|
|
if headers[name] then headers[name] = headers[name] .. ", " .. value
|
|
|
|
else headers[name] = value end
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
2001-07-29 05:51:36 +02:00
|
|
|
return headers
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
2004-01-16 08:06:31 +01:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Aborts a receive callback
|
|
|
|
-- Input
|
|
|
|
-- cb: callback function
|
|
|
|
-- err: error message to pass to callback
|
|
|
|
-- Returns
|
|
|
|
-- callback return or if nil err
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
local function abort(cb, err)
|
|
|
|
local go, err_or_f = cb(nil, err)
|
|
|
|
return err_or_f or err
|
|
|
|
end
|
|
|
|
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Receives a chunked message body
|
|
|
|
-- Input
|
|
|
|
-- sock: socket connected to the server
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: header set in which to include trailer headers
|
2001-06-06 22:55:45 +02:00
|
|
|
-- receive_cb: function to receive chunks
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Returns
|
2001-05-21 20:12:20 +02:00
|
|
|
-- nil if successfull or an error message in case of error
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_body_bychunks(sock, headers, receive_cb)
|
|
|
|
local chunk, size, line, err, go, err_or_f, _
|
2001-07-29 05:51:36 +02:00
|
|
|
while 1 do
|
2001-01-25 23:01:37 +01:00
|
|
|
-- get chunk size, skip extention
|
2004-01-16 08:06:31 +01:00
|
|
|
line, err = try_receiving(sock)
|
|
|
|
if err then return abort(receive_cb, err) end
|
2002-12-03 00:34:41 +01:00
|
|
|
size = tonumber(string.gsub(line, ";.*", ""), 16)
|
2004-01-16 08:06:31 +01:00
|
|
|
if not size then return abort(receive_cb, "invalid chunk size") end
|
2001-09-18 22:22:59 +02:00
|
|
|
-- was it the last chunk?
|
|
|
|
if size <= 0 then break end
|
2001-01-25 23:01:37 +01:00
|
|
|
-- get chunk
|
2004-01-16 08:06:31 +01:00
|
|
|
chunk, err = try_receiving(sock, size)
|
|
|
|
if err then return abort(receive_cb, err) end
|
2001-06-06 22:55:45 +02:00
|
|
|
-- pass chunk to callback
|
2004-01-16 08:06:31 +01:00
|
|
|
go, err_or_f = receive_cb(chunk)
|
|
|
|
-- see if callback needs to be replaced
|
|
|
|
receive_cb = err_or_f or receive_cb
|
|
|
|
-- see if callback aborted
|
|
|
|
if not go then return err_or_f or "aborted by callback" end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- skip CRLF on end of chunk
|
2004-01-16 08:06:31 +01:00
|
|
|
_, err = try_receiving(sock)
|
|
|
|
if err then return abort(receive_cb, err) end
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
2001-09-18 22:22:59 +02:00
|
|
|
-- the server should not send trailer headers because we didn't send a
|
|
|
|
-- header informing it we know how to deal with them. we do not risk
|
|
|
|
-- being caught unprepaired.
|
2004-01-16 08:06:31 +01:00
|
|
|
_, err = receive_headers(sock, headers)
|
|
|
|
if err then return abort(receive_cb, err) end
|
2001-06-06 22:55:45 +02:00
|
|
|
-- let callback know we are done
|
2004-01-16 08:06:31 +01:00
|
|
|
_, err_or_f = receive_cb("")
|
|
|
|
return err_or_f
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Receives a message body by content-length
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2001-01-25 23:01:37 +01:00
|
|
|
-- sock: socket connected to the server
|
2001-08-07 21:50:04 +02:00
|
|
|
-- length: message body length
|
2001-06-06 22:55:45 +02:00
|
|
|
-- receive_cb: function to receive chunks
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-05-21 20:12:20 +02:00
|
|
|
-- nil if successfull or an error message in case of error
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_body_bylength(sock, length, receive_cb)
|
2001-06-06 22:55:45 +02:00
|
|
|
while length > 0 do
|
2004-01-16 08:06:31 +01:00
|
|
|
local size = math.min(BLOCKSIZE, length)
|
2001-06-06 22:55:45 +02:00
|
|
|
local chunk, err = sock:receive(size)
|
2004-01-16 08:06:31 +01:00
|
|
|
local go, err_or_f = receive_cb(chunk)
|
|
|
|
length = length - string.len(chunk)
|
|
|
|
-- see if callback aborted
|
|
|
|
if not go then return err_or_f or "aborted by callback" end
|
|
|
|
-- see if callback needs to be replaced
|
|
|
|
receive_cb = err_or_f or receive_cb
|
|
|
|
-- see if there was an error
|
|
|
|
if err and length > 0 then return abort(receive_cb, err) end
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
2004-01-16 08:06:31 +01:00
|
|
|
local _, err_or_f = receive_cb("")
|
|
|
|
return err_or_f
|
2001-05-21 20:12:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Receives a message body by content-length
|
|
|
|
-- Input
|
|
|
|
-- sock: socket connected to the server
|
2001-06-06 22:55:45 +02:00
|
|
|
-- receive_cb: function to receive chunks
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Returns
|
|
|
|
-- nil if successfull or an error message in case of error
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_body_untilclosed(sock, receive_cb)
|
2001-06-06 22:55:45 +02:00
|
|
|
while 1 do
|
2004-01-16 08:06:31 +01:00
|
|
|
local chunk, err = sock:receive(BLOCKSIZE)
|
|
|
|
local go, err_or_f = receive_cb(chunk)
|
|
|
|
-- see if callback aborted
|
|
|
|
if not go then return err_or_f or "aborted by callback" end
|
|
|
|
-- see if callback needs to be replaced
|
|
|
|
receive_cb = err_or_f or receive_cb
|
|
|
|
-- see if we are done
|
|
|
|
if err == "closed" then
|
|
|
|
if chunk ~= "" then
|
|
|
|
go, err_or_f = receive_cb("")
|
|
|
|
return err_or_f
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
end
|
2004-01-16 08:06:31 +01:00
|
|
|
-- see if there was an error
|
|
|
|
if err then return abort(receive_cb, err) end
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
2001-05-21 20:12:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-08-07 21:50:04 +02:00
|
|
|
-- Receives HTTP response body
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Input
|
|
|
|
-- sock: socket connected to the server
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: response header fields
|
2001-06-06 22:55:45 +02:00
|
|
|
-- receive_cb: function to receive chunks
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Returns
|
|
|
|
-- nil if successfull or an error message in case of error
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function receive_body(sock, headers, receive_cb)
|
2001-09-18 22:22:59 +02:00
|
|
|
local te = headers["transfer-encoding"]
|
2001-07-29 05:51:36 +02:00
|
|
|
if te and te ~= "identity" then
|
2001-05-21 20:12:20 +02:00
|
|
|
-- get by chunked transfer-coding of message body
|
2004-01-16 08:06:31 +01:00
|
|
|
return receive_body_bychunks(sock, headers, receive_cb)
|
2001-07-29 05:51:36 +02:00
|
|
|
elseif tonumber(headers["content-length"]) then
|
2001-05-21 20:12:20 +02:00
|
|
|
-- get by content-length
|
2001-07-29 05:51:36 +02:00
|
|
|
local length = tonumber(headers["content-length"])
|
2004-01-16 08:06:31 +01:00
|
|
|
return receive_body_bylength(sock, length, receive_cb)
|
2000-12-29 23:15:09 +01:00
|
|
|
else
|
2001-05-21 20:12:20 +02:00
|
|
|
-- get it all until connection closes
|
2004-01-16 08:06:31 +01:00
|
|
|
return receive_body_untilclosed(sock, receive_cb)
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
-- Sends data comming from a callback
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- data: data connection
|
|
|
|
-- send_cb: callback to produce file contents
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- nil if successfull, or an error message in case of error
|
2001-07-29 05:51:36 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function send_body_bychunks(data, send_cb)
|
|
|
|
while 1 do
|
|
|
|
local chunk, err_or_f = send_cb()
|
|
|
|
-- check if callback aborted
|
|
|
|
if not chunk then return err_or_f or "aborted by callback" end
|
|
|
|
-- check if callback should be replaced
|
|
|
|
send_cb = err_or_f or send_cb
|
|
|
|
-- if we are done, send last-chunk
|
|
|
|
if chunk == "" then return try_sending(data, "0\r\n\r\n") end
|
|
|
|
-- else send middle chunk
|
|
|
|
local err = try_sending(data,
|
|
|
|
string.format("%X\r\n", string.len(chunk)),
|
|
|
|
chunk,
|
|
|
|
"\r\n"
|
|
|
|
)
|
|
|
|
if err then return err end
|
|
|
|
end
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2001-06-06 22:55:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Sends data comming from a callback
|
|
|
|
-- Input
|
|
|
|
-- data: data connection
|
2004-01-16 08:06:31 +01:00
|
|
|
-- send_cb: callback to produce body contents
|
2001-06-06 22:55:45 +02:00
|
|
|
-- Returns
|
|
|
|
-- nil if successfull, or an error message in case of error
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function send_body_bylength(data, send_cb)
|
2001-06-06 22:55:45 +02:00
|
|
|
while 1 do
|
2004-01-16 08:06:31 +01:00
|
|
|
local chunk, err_or_f = send_cb()
|
|
|
|
-- check if callback aborted
|
|
|
|
if not chunk then return err_or_f or "aborted by callback" end
|
|
|
|
-- check if callback should be replaced
|
|
|
|
send_cb = err_or_f or send_cb
|
|
|
|
-- check if callback is done
|
|
|
|
if chunk == "" then return end
|
|
|
|
-- send data
|
|
|
|
local err = try_sending(data, chunk)
|
|
|
|
if err then return err end
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2001-09-12 20:16:09 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Sends mime headers
|
|
|
|
-- Input
|
|
|
|
-- sock: server socket
|
|
|
|
-- headers: table with mime headers to be sent
|
|
|
|
-- Returns
|
|
|
|
-- err: error message if any
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function send_headers(sock, headers)
|
2001-09-12 20:16:09 +02:00
|
|
|
local err
|
|
|
|
headers = headers or {}
|
|
|
|
-- send request headers
|
|
|
|
for i, v in headers do
|
2004-01-16 08:06:31 +01:00
|
|
|
err = try_sending(sock, i .. ": " .. v .. "\r\n")
|
2001-09-12 20:16:09 +02:00
|
|
|
if err then return err end
|
|
|
|
end
|
|
|
|
-- mark end of request headers
|
2004-01-16 08:06:31 +01:00
|
|
|
return try_sending(sock, "\r\n")
|
2001-09-12 20:16:09 +02:00
|
|
|
end
|
|
|
|
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-08-07 21:50:04 +02:00
|
|
|
-- Sends a HTTP request message through socket
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Input
|
|
|
|
-- sock: socket connected to the server
|
|
|
|
-- method: request method to be used
|
2001-08-07 21:50:04 +02:00
|
|
|
-- uri: request uri
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: request headers to be sent
|
|
|
|
-- body_cb: callback to send request message body
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Returns
|
|
|
|
-- err: nil in case of success, error message otherwise
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function send_request(sock, method, uri, headers, body_cb)
|
2001-06-06 22:55:45 +02:00
|
|
|
local chunk, size, done, err
|
|
|
|
-- send request line
|
2004-01-16 08:06:31 +01:00
|
|
|
err = try_sending(sock, method .. " " .. uri .. " HTTP/1.1\r\n")
|
2001-01-25 23:01:37 +01:00
|
|
|
if err then return err end
|
2004-01-16 08:06:31 +01:00
|
|
|
if body_cb and not headers["content-length"] then
|
|
|
|
headers["transfer-encoding"] = "chunked"
|
2003-08-31 02:58:07 +02:00
|
|
|
end
|
2001-06-06 22:55:45 +02:00
|
|
|
-- send request headers
|
2004-01-16 08:06:31 +01:00
|
|
|
err = send_headers(sock, headers)
|
2001-05-21 20:12:20 +02:00
|
|
|
if err then return err end
|
2001-06-06 22:55:45 +02:00
|
|
|
-- send request message body, if any
|
2001-07-29 05:51:36 +02:00
|
|
|
if body_cb then
|
2004-01-16 08:06:31 +01:00
|
|
|
if not headers["content-length"] then
|
|
|
|
return send_body_bychunks(sock, body_cb)
|
|
|
|
else
|
|
|
|
return send_body_bylength(sock, body_cb)
|
|
|
|
end
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Determines if we should read a message body from the server response
|
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the original request information
|
|
|
|
-- respt: a table with the server response information
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Returns
|
|
|
|
-- 1 if a message body should be processed, nil otherwise
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function should_receive_body(reqt, respt)
|
|
|
|
if reqt.method == "HEAD" then return nil end
|
|
|
|
if respt.code == 204 or respt.code == 304 then return nil end
|
|
|
|
if respt.code >= 100 and respt.code < 200 then return nil end
|
2001-01-25 23:01:37 +01:00
|
|
|
return 1
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-06-06 22:55:45 +02:00
|
|
|
-- Converts field names to lowercase and adds a few needed headers
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: request header fields
|
2001-08-07 21:50:04 +02:00
|
|
|
-- parsed: parsed request URL
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-01-25 23:01:37 +01:00
|
|
|
-- lower: a table with the same headers, but with lowercase field names
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function fill_headers(headers, parsed)
|
2001-01-25 23:01:37 +01:00
|
|
|
local lower = {}
|
2001-07-29 05:51:36 +02:00
|
|
|
headers = headers or {}
|
|
|
|
-- set default headers
|
2004-01-16 08:06:31 +01:00
|
|
|
lower["user-agent"] = USERAGENT
|
2001-07-29 05:51:36 +02:00
|
|
|
-- override with user values
|
|
|
|
for i,v in headers do
|
2002-12-03 00:34:41 +01:00
|
|
|
lower[string.lower(i)] = v
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
2001-09-26 22:40:13 +02:00
|
|
|
lower["host"] = parsed.host
|
2001-07-29 05:51:36 +02:00
|
|
|
-- this cannot be overriden
|
2001-01-25 23:01:37 +01:00
|
|
|
lower["connection"] = "close"
|
|
|
|
return lower
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Decides wether we should follow retry with authorization formation
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the original request information
|
2001-08-07 21:50:04 +02:00
|
|
|
-- parsed: parsed request URL
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: a table with the server response information
|
2000-12-29 23:15:09 +01:00
|
|
|
-- Returns
|
2001-07-29 05:51:36 +02:00
|
|
|
-- 1 if we should retry, nil otherwise
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function should_authorize(reqt, parsed, respt)
|
2001-07-29 05:51:36 +02:00
|
|
|
-- if there has been an authorization attempt, it must have failed
|
2004-01-16 08:06:31 +01:00
|
|
|
if reqt.headers["authorization"] then return nil end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- if we don't have authorization information, we can't retry
|
|
|
|
if parsed.user and parsed.password then return 1
|
|
|
|
else return nil end
|
2001-05-21 20:12:20 +02:00
|
|
|
end
|
|
|
|
|
2001-06-06 22:55:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Returns the result of retrying a request with authorization information
|
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the original request information
|
2001-08-07 21:50:04 +02:00
|
|
|
-- parsed: parsed request URL
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: a table with the server response information
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: result of target authorization
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
local function authorize(reqt, parsed, respt)
|
|
|
|
reqt.headers["authorization"] = "Basic " ..
|
2004-01-18 09:59:21 +01:00
|
|
|
(socket.code.b64(parsed.user .. ":" .. parsed.password))
|
2004-01-16 08:06:31 +01:00
|
|
|
local autht = {
|
|
|
|
nredirects = reqt.nredirects,
|
|
|
|
method = reqt.method,
|
|
|
|
url = reqt.url,
|
|
|
|
body_cb = reqt.body_cb,
|
|
|
|
headers = reqt.headers
|
2001-07-29 05:51:36 +02:00
|
|
|
}
|
2004-01-16 08:06:31 +01:00
|
|
|
return request_cb(autht, respt)
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
2001-06-06 22:55:45 +02:00
|
|
|
|
2001-05-21 20:12:20 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Decides wether we should follow a server redirect message
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the original request information
|
|
|
|
-- respt: a table with the server response information
|
2001-05-21 20:12:20 +02:00
|
|
|
-- Returns
|
2001-07-29 05:51:36 +02:00
|
|
|
-- 1 if we should redirect, nil otherwise
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function should_redirect(reqt, respt)
|
|
|
|
local follow = not reqt.stay
|
|
|
|
follow = follow and (respt.code == 301 or respt.code == 302)
|
|
|
|
follow = follow and (reqt.method == "GET" or reqt.method == "HEAD")
|
|
|
|
follow = follow and not (reqt.nredirects and reqt.nredirects >= 5)
|
2001-07-29 05:51:36 +02:00
|
|
|
return follow
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Returns the result of a request following a server redirect message.
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the original request information
|
|
|
|
-- respt: a table with the following fields:
|
2001-07-29 05:51:36 +02:00
|
|
|
-- body_cb: response method body receive-callback
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: result of target redirection
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
local function redirect(reqt, respt)
|
|
|
|
local nredirects = reqt.nredirects or 0
|
|
|
|
nredirects = nredirects + 1
|
|
|
|
local redirt = {
|
|
|
|
nredirects = nredirects,
|
|
|
|
method = reqt.method,
|
2001-08-07 21:50:04 +02:00
|
|
|
-- the RFC says the redirect URL has to be absolute, but some
|
2001-07-29 05:51:36 +02:00
|
|
|
-- servers do not respect that
|
2004-01-16 08:06:31 +01:00
|
|
|
url = socket.url.absolute(reqt.url, respt.headers["location"]),
|
|
|
|
body_cb = reqt.body_cb,
|
|
|
|
headers = reqt.headers
|
2001-07-29 05:51:36 +02:00
|
|
|
}
|
2004-01-16 08:06:31 +01:00
|
|
|
respt = request_cb(redirt, respt)
|
2001-09-26 22:40:13 +02:00
|
|
|
-- we pass the location header as a clue we tried to redirect
|
2004-01-16 08:06:31 +01:00
|
|
|
if respt.headers then respt.headers.location = redirt.url end
|
|
|
|
return respt
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
|
|
|
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-08-07 21:50:04 +02:00
|
|
|
-- Computes the request URI from the parsed request URL
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Input
|
2001-08-07 21:50:04 +02:00
|
|
|
-- parsed: parsed URL
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Returns
|
|
|
|
-- uri: request URI for parsed URL
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function request_uri(parsed)
|
2001-07-29 05:51:36 +02:00
|
|
|
local uri = ""
|
|
|
|
if parsed.path then uri = uri .. parsed.path end
|
|
|
|
if parsed.params then uri = uri .. ";" .. parsed.params end
|
|
|
|
if parsed.query then uri = uri .. "?" .. parsed.query end
|
|
|
|
if parsed.fragment then uri = uri .. "#" .. parsed.fragment end
|
|
|
|
return uri
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
2001-09-12 20:16:09 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Builds a request table from a URL or request table
|
|
|
|
-- Input
|
|
|
|
-- url_or_request: target url or request table (a table with the fields:
|
|
|
|
-- url: the target URL
|
|
|
|
-- user: account user name
|
|
|
|
-- password: account password)
|
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: request table
|
2001-09-12 20:16:09 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
local function build_request(data)
|
|
|
|
local reqt = {}
|
2003-08-31 02:58:07 +02:00
|
|
|
if type(data) == "table" then
|
|
|
|
for i, v in data
|
2004-01-16 08:06:31 +01:00
|
|
|
do reqt[i] = v
|
2003-08-31 02:58:07 +02:00
|
|
|
end
|
2004-01-16 08:06:31 +01:00
|
|
|
else reqt.url = data end
|
|
|
|
return reqt
|
2001-09-12 20:16:09 +02:00
|
|
|
end
|
|
|
|
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Sends a HTTP request and retrieves the server reply using callbacks to
|
|
|
|
-- send the request body and receive the response body
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the following fields
|
2001-07-29 05:51:36 +02:00
|
|
|
-- method: "GET", "PUT", "POST" etc (defaults to "GET")
|
|
|
|
-- url: target uniform resource locator
|
|
|
|
-- user, password: authentication information
|
|
|
|
-- headers: request headers to send, or nil if none
|
|
|
|
-- body_cb: request message body send-callback, or nil if none
|
|
|
|
-- stay: should we refrain from following a server redirect message?
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: a table with the following fields:
|
2001-07-29 05:51:36 +02:00
|
|
|
-- body_cb: response method body receive-callback
|
2001-01-25 23:01:37 +01:00
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: a table with the following fields:
|
2001-07-29 05:51:36 +02:00
|
|
|
-- headers: response header fields received, or nil if failed
|
|
|
|
-- status: server response status line, or nil if failed
|
|
|
|
-- code: server status code, or nil if failed
|
|
|
|
-- error: error message, or nil if successfull
|
2001-06-06 22:55:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
function request_cb(reqt, respt)
|
|
|
|
local parsed = socket.url.parse(reqt.url, {
|
2001-09-18 22:22:59 +02:00
|
|
|
host = "",
|
2004-01-16 08:06:31 +01:00
|
|
|
port = PORT,
|
2001-09-26 22:40:13 +02:00
|
|
|
path ="/",
|
|
|
|
scheme = "http"
|
2001-09-18 22:22:59 +02:00
|
|
|
})
|
2001-09-26 22:40:13 +02:00
|
|
|
if parsed.scheme ~= "http" then
|
2004-01-16 08:06:31 +01:00
|
|
|
respt.error = string.format("unknown scheme '%s'", parsed.scheme)
|
|
|
|
return respt
|
2001-09-26 22:40:13 +02:00
|
|
|
end
|
2001-08-07 21:50:04 +02:00
|
|
|
-- explicit authentication info overrides that given by the URL
|
2004-01-16 08:06:31 +01:00
|
|
|
parsed.user = reqt.user or parsed.user
|
|
|
|
parsed.password = reqt.password or parsed.password
|
2001-07-29 05:51:36 +02:00
|
|
|
-- default method
|
2004-01-16 08:06:31 +01:00
|
|
|
reqt.method = reqt.method or "GET"
|
2001-07-29 05:51:36 +02:00
|
|
|
-- fill default headers
|
2004-01-16 08:06:31 +01:00
|
|
|
reqt.headers = fill_headers(reqt.headers, parsed)
|
2001-07-29 05:51:36 +02:00
|
|
|
-- try to connect to server
|
|
|
|
local sock
|
2004-01-18 01:04:20 +01:00
|
|
|
sock, respt.error = socket.tcp()
|
2004-01-16 08:06:31 +01:00
|
|
|
if not sock then return respt end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- set connection timeout so that we do not hang forever
|
2004-01-16 08:06:31 +01:00
|
|
|
sock:settimeout(TIMEOUT)
|
2004-01-18 01:04:20 +01:00
|
|
|
local ret
|
|
|
|
ret, respt.error = sock:connect(parsed.host, parsed.port)
|
|
|
|
if not ret then
|
|
|
|
sock:close()
|
|
|
|
return respt
|
|
|
|
end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- send request message
|
2004-01-16 08:06:31 +01:00
|
|
|
respt.error = send_request(sock, reqt.method,
|
|
|
|
request_uri(parsed), reqt.headers, reqt.body_cb)
|
|
|
|
if respt.error then
|
|
|
|
sock:close()
|
|
|
|
return respt
|
|
|
|
end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- get server response message
|
2004-01-16 08:06:31 +01:00
|
|
|
respt.code, respt.status, respt.error = receive_status(sock)
|
|
|
|
if respt.error then return respt end
|
|
|
|
-- deal with continue 100
|
|
|
|
-- servers should not send them, but they might
|
|
|
|
if respt.code == 100 then
|
|
|
|
respt.headers, respt.error = receive_headers(sock, {})
|
|
|
|
if respt.error then return respt end
|
|
|
|
respt.code, respt.status, respt.error = receive_status(sock)
|
|
|
|
if respt.error then return respt end
|
2002-07-08 23:01:18 +02:00
|
|
|
end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- receive all headers
|
2004-01-16 08:06:31 +01:00
|
|
|
respt.headers, respt.error = receive_headers(sock, {})
|
|
|
|
if respt.error then return respt end
|
2001-07-29 05:51:36 +02:00
|
|
|
-- decide what to do based on request and response parameters
|
2004-01-16 08:06:31 +01:00
|
|
|
if should_redirect(reqt, respt) then
|
|
|
|
-- drop the body
|
|
|
|
receive_body(sock, respt.headers, function (c, e) return 1 end)
|
|
|
|
-- we are done with this connection
|
2001-07-29 05:51:36 +02:00
|
|
|
sock:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
return redirect(reqt, respt)
|
|
|
|
elseif should_authorize(reqt, parsed, respt) then
|
|
|
|
-- drop the body
|
|
|
|
receive_body(sock, respt.headers, function (c, e) return 1 end)
|
|
|
|
-- we are done with this connection
|
2001-07-29 05:51:36 +02:00
|
|
|
sock:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
return authorize(reqt, parsed, respt)
|
|
|
|
elseif should_receive_body(reqt, respt) then
|
|
|
|
respt.error = receive_body(sock, respt.headers, respt.body_cb)
|
|
|
|
if respt.error then return respt end
|
2001-07-29 05:51:36 +02:00
|
|
|
sock:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
return respt
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
|
|
|
sock:close()
|
2004-01-16 08:06:31 +01:00
|
|
|
return respt
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
|
2001-01-25 23:01:37 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Sends a HTTP request and retrieves the server reply
|
2001-06-06 22:55:45 +02:00
|
|
|
-- Input
|
2004-01-16 08:06:31 +01:00
|
|
|
-- reqt: a table with the following fields
|
2001-07-29 05:51:36 +02:00
|
|
|
-- method: "GET", "PUT", "POST" etc (defaults to "GET")
|
2001-08-07 21:50:04 +02:00
|
|
|
-- url: request URL, i.e. the document to be retrieved
|
2001-07-29 05:51:36 +02:00
|
|
|
-- user, password: authentication information
|
|
|
|
-- headers: request header fields, or nil if none
|
|
|
|
-- body: request message body as a string, or nil if none
|
|
|
|
-- stay: should we refrain from following a server redirect message?
|
2001-06-06 22:55:45 +02:00
|
|
|
-- Returns
|
2004-01-16 08:06:31 +01:00
|
|
|
-- respt: a table with the following fields:
|
2001-07-29 05:51:36 +02:00
|
|
|
-- body: response message body, or nil if failed
|
|
|
|
-- headers: response header fields, or nil if failed
|
|
|
|
-- status: server response status line, or nil if failed
|
|
|
|
-- code: server response status code, or nil if failed
|
|
|
|
-- error: error message if any
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
function request(reqt)
|
|
|
|
local respt = {}
|
|
|
|
reqt.body_cb = socket.callback.send_string(reqt.body)
|
2003-08-31 02:58:07 +02:00
|
|
|
local concat = socket.concat.create()
|
2004-01-16 08:06:31 +01:00
|
|
|
respt.body_cb = socket.callback.receive_concat(concat)
|
|
|
|
respt = request_cb(reqt, respt)
|
|
|
|
respt.body = concat:getresult()
|
|
|
|
respt.body_cb = nil
|
|
|
|
return respt
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
|
|
|
|
2001-06-06 22:55:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Retrieves a URL by the method "GET"
|
|
|
|
-- Input
|
2001-09-12 20:16:09 +02:00
|
|
|
-- url_or_request: target url or request table (a table with the fields:
|
|
|
|
-- url: the target URL
|
|
|
|
-- user: account user name
|
|
|
|
-- password: account password)
|
2001-07-29 05:51:36 +02:00
|
|
|
-- Returns
|
|
|
|
-- body: response message body, or nil if failed
|
|
|
|
-- headers: response header fields received, or nil if failed
|
2001-09-18 20:41:01 +02:00
|
|
|
-- code: server response status code, or nil if failed
|
2001-07-29 05:51:36 +02:00
|
|
|
-- error: error message if any
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
function get(url_or_request)
|
|
|
|
local reqt = build_request(url_or_request)
|
|
|
|
reqt.method = "GET"
|
|
|
|
local respt = request(reqt)
|
|
|
|
return respt.body, respt.headers, respt.code, respt.error
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Retrieves a URL by the method "POST"
|
|
|
|
-- Input
|
2001-09-12 20:16:09 +02:00
|
|
|
-- url_or_request: target url or request table (a table with the fields:
|
|
|
|
-- url: the target URL
|
|
|
|
-- body: request message body
|
|
|
|
-- user: account user name
|
|
|
|
-- password: account password)
|
2001-07-29 05:51:36 +02:00
|
|
|
-- body: request message body, or nil if none
|
2001-06-06 22:55:45 +02:00
|
|
|
-- Returns
|
2001-07-29 05:51:36 +02:00
|
|
|
-- body: response message body, or nil if failed
|
|
|
|
-- headers: response header fields received, or nil if failed
|
2001-09-18 20:41:01 +02:00
|
|
|
-- code: server response status code, or nil if failed
|
2001-07-29 05:51:36 +02:00
|
|
|
-- error: error message, or nil if successfull
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-16 08:06:31 +01:00
|
|
|
function post(url_or_request, body)
|
|
|
|
local reqt = build_request(url_or_request)
|
|
|
|
reqt.method = "POST"
|
|
|
|
reqt.body = reqt.body or body
|
|
|
|
reqt.headers = reqt.headers or
|
|
|
|
{ ["content-length"] = string.len(reqt.body) }
|
|
|
|
local respt = request(reqt)
|
|
|
|
return respt.body, respt.headers, respt.code, respt.error
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
2004-01-16 08:06:31 +01:00
|
|
|
|
|
|
|
return http
|