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
|
2004-03-22 05:15:03 +01:00
|
|
|
-- Conforming to RFC 2616
|
2001-08-07 21:50:04 +02:00
|
|
|
-- RCS ID: $Id$
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-05-28 08:16:43 +02:00
|
|
|
|
2004-06-04 17:15:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2004-06-15 08:24:00 +02:00
|
|
|
-- Load required modules
|
2004-06-04 17:15:45 +02:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
local socket = require("socket")
|
|
|
|
local ltn12 = require("ltn12")
|
|
|
|
local mime = require("mime")
|
|
|
|
local url = require("url")
|
2004-05-28 08:16:43 +02:00
|
|
|
|
2004-06-04 17:15:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Setup namespace
|
|
|
|
-------------------------------------------------------------------------------
|
2004-06-15 08:24:00 +02:00
|
|
|
_LOADED["http"] = getfenv(1)
|
2001-07-29 05:51:36 +02:00
|
|
|
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Program constants
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- connection timeout in seconds
|
2004-06-15 08:24:00 +02:00
|
|
|
TIMEOUT = 4
|
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-06-15 08:24:00 +02:00
|
|
|
USERAGENT = socket.VERSION
|
2001-06-06 22:55:45 +02:00
|
|
|
-- block size used in transfers
|
2004-03-16 07:42:53 +01:00
|
|
|
BLOCKSIZE = 2048
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2004-06-15 08:24:00 +02:00
|
|
|
-- Low level HTTP API
|
2004-03-16 07:42:53 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-06-15 08:24:00 +02:00
|
|
|
local metat = { __index = {} }
|
|
|
|
|
|
|
|
function open(host, port)
|
|
|
|
local con = socket.try(socket.tcp())
|
|
|
|
socket.try(con:settimeout(TIMEOUT))
|
|
|
|
port = port or PORT
|
|
|
|
socket.try(con:connect(host, port))
|
|
|
|
return setmetatable({ con = con }, metat)
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:sendrequestline(method, uri)
|
|
|
|
local reqline = string.format("%s %s HTTP/1.1\r\n", method or "GET", uri)
|
|
|
|
return socket.try(self.con:send(reqline))
|
2004-03-16 07:42:53 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function metat.__index:sendheaders(headers)
|
|
|
|
for i, v in pairs(headers) do
|
|
|
|
socket.try(self.con:send(i .. ": " .. v .. "\r\n"))
|
|
|
|
end
|
|
|
|
-- mark end of request headers
|
|
|
|
socket.try(self.con:send("\r\n"))
|
|
|
|
return 1
|
2004-03-16 07:42:53 +01:00
|
|
|
end
|
2001-07-29 05:51:36 +02:00
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function metat.__index:sendbody(headers, source, step)
|
|
|
|
source = source or ltn12.source.empty()
|
|
|
|
step = step or ltn12.pump.step
|
|
|
|
-- if we don't know the size in advance, send chunked and hope for the best
|
|
|
|
local mode
|
|
|
|
if headers["content-length"] then mode = "keep-open"
|
|
|
|
else mode = "http-chunked" end
|
|
|
|
return socket.try(ltn12.pump.all(source, socket.sink(mode, self.con), step))
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:receivestatusline()
|
|
|
|
local status = socket.try(self.con:receive())
|
|
|
|
local code = socket.skip(2, string.find(status, "HTTP/%d*%.%d* (%d%d%d)"))
|
|
|
|
return socket.try(tonumber(code), status)
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:receiveheaders()
|
2004-05-28 08:16:43 +02:00
|
|
|
local line, name, value
|
2004-03-22 08:45:07 +01:00
|
|
|
local headers = {}
|
2001-01-25 23:01:37 +01:00
|
|
|
-- get first line
|
2004-06-15 08:24:00 +02:00
|
|
|
line = socket.try(self.con:receive())
|
2000-12-29 23:15:09 +01:00
|
|
|
-- headers go until a blank line is found
|
|
|
|
while line ~= "" do
|
|
|
|
-- get field-name and value
|
2004-05-28 08:16:43 +02:00
|
|
|
name, value = socket.skip(2, string.find(line, "^(.-):%s*(.*)"))
|
2004-03-26 07:05:20 +01:00
|
|
|
socket.try(name and value, "malformed reponse headers")
|
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-06-15 08:24:00 +02:00
|
|
|
line = socket.try(self.con:receive())
|
2000-12-29 23:15:09 +01:00
|
|
|
-- unfold any folded values
|
2004-03-21 08:50:15 +01:00
|
|
|
while string.find(line, "^%s") do
|
2000-12-29 23:15:09 +01:00
|
|
|
value = value .. line
|
2004-06-15 08:24:00 +02:00
|
|
|
line = socket.try(self.con:receive())
|
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
|
2004-06-15 08:24:00 +02:00
|
|
|
return headers
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function metat.__index:receivebody(headers, sink, step)
|
|
|
|
sink = sink or ltn12.sink.null()
|
|
|
|
step = step or ltn12.pump.step
|
|
|
|
local length = tonumber(headers["content-length"])
|
|
|
|
local TE = headers["transfer-encoding"]
|
|
|
|
local mode
|
|
|
|
if TE and TE ~= "identity" then mode = "http-chunked"
|
|
|
|
elseif tonumber(headers["content-length"]) then mode = "by-length"
|
|
|
|
else mode = "default" end
|
|
|
|
return socket.try(ltn12.pump.all(socket.source(mode, self.con, length),
|
|
|
|
sink, step))
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function metat.__index:close()
|
|
|
|
return self.con:close()
|
2001-09-12 20:16:09 +02:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- High level HTTP API
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
local function uri(reqt)
|
|
|
|
local u = reqt
|
|
|
|
if not reqt.proxy and not PROXY then
|
|
|
|
u = {
|
|
|
|
path = reqt.path,
|
|
|
|
params = reqt.params,
|
|
|
|
query = reqt.query,
|
|
|
|
fragment = reqt.fragment
|
2004-03-21 08:50:15 +01:00
|
|
|
}
|
2004-03-22 08:45:07 +01:00
|
|
|
end
|
2004-06-04 17:15:45 +02:00
|
|
|
return url.build(u)
|
2004-03-21 08:50:15 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local function adjustheaders(headers, host)
|
2001-01-25 23:01:37 +01:00
|
|
|
local lower = {}
|
2001-07-29 05:51:36 +02:00
|
|
|
-- override with user values
|
2004-06-15 08:24:00 +02:00
|
|
|
for i,v in (headers or lower) do
|
2002-12-03 00:34:41 +01:00
|
|
|
lower[string.lower(i)] = v
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
2004-06-04 17:15:45 +02:00
|
|
|
lower["user-agent"] = lower["user-agent"] or USERAGENT
|
|
|
|
-- these cannot be overriden
|
2004-06-15 08:24:00 +02:00
|
|
|
lower["host"] = host
|
|
|
|
return lower
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local function adjustrequest(reqt)
|
2004-03-21 08:50:15 +01:00
|
|
|
-- parse url with default fields
|
2004-06-04 17:15:45 +02:00
|
|
|
local parsed = url.parse(reqt.url, {
|
2004-03-21 08:50:15 +01:00
|
|
|
host = "",
|
2004-06-15 08:24:00 +02:00
|
|
|
port = PORT,
|
2004-03-21 08:50:15 +01:00
|
|
|
path ="/",
|
2004-06-15 08:24:00 +02:00
|
|
|
scheme = "http"
|
2004-03-21 08:50:15 +01:00
|
|
|
})
|
2004-06-15 08:24:00 +02:00
|
|
|
-- explicit info in reqt overrides that given by the URL
|
|
|
|
for i,v in reqt do parsed[i] = v end
|
|
|
|
-- compute uri if user hasn't overriden
|
|
|
|
parsed.uri = parsed.uri or uri(parsed)
|
|
|
|
-- adjust headers in request
|
|
|
|
parsed.headers = adjustheaders(parsed.headers, parsed.host)
|
|
|
|
return parsed
|
2004-03-21 08:50:15 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local function shouldredirect(reqt, respt)
|
|
|
|
return (reqt.redirect ~= false) and
|
|
|
|
(respt.code == 301 or respt.code == 302) and
|
|
|
|
(not reqt.method or reqt.method == "GET" or reqt.method == "HEAD")
|
|
|
|
and (not reqt.nredirects or reqt.nredirects < 5)
|
|
|
|
end
|
2004-03-22 05:15:03 +01:00
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local function shouldauthorize(reqt, respt)
|
2001-07-29 05:51:36 +02:00
|
|
|
-- if there has been an authorization attempt, it must have failed
|
2004-03-21 08:50:15 +01:00
|
|
|
if reqt.headers and reqt.headers["authorization"] then return nil end
|
2004-03-22 05:15:03 +01:00
|
|
|
-- if last attempt didn't fail due to lack of authentication,
|
|
|
|
-- or we don't have authorization information, we can't retry
|
2004-06-15 08:24:00 +02:00
|
|
|
return respt.code == 401 and reqt.user and reqt.password
|
2001-05-21 20:12:20 +02:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local function shouldreceivebody(reqt, respt)
|
|
|
|
if reqt.method == "HEAD" then return nil end
|
|
|
|
local code = respt.code
|
|
|
|
if code == 204 or code == 304 then return nil end
|
|
|
|
if code >= 100 and code < 200 then return nil end
|
|
|
|
return 1
|
2004-03-21 08:50:15 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
local requestp, authorizep, redirectp
|
|
|
|
|
|
|
|
function requestp(reqt)
|
|
|
|
local reqt = adjustrequest(reqt)
|
|
|
|
local respt = {}
|
|
|
|
local con = open(reqt.host, reqt.port)
|
|
|
|
con:sendrequestline(reqt.method, reqt.uri)
|
|
|
|
con:sendheaders(reqt.headers)
|
|
|
|
con:sendbody(reqt.headers, reqt.source, reqt.step)
|
|
|
|
respt.code, respt.status = con:receivestatusline()
|
|
|
|
respt.headers = con:receiveheaders()
|
|
|
|
if shouldredirect(reqt, respt) then
|
|
|
|
con:close()
|
|
|
|
return redirectp(reqt, respt)
|
|
|
|
elseif shouldauthorize(reqt, respt) then
|
|
|
|
con:close()
|
|
|
|
return authorizep(reqt, respt)
|
|
|
|
elseif shouldreceivebody(reqt, respt) then
|
|
|
|
con:receivebody(respt.headers, reqt.sink, reqt.step)
|
|
|
|
end
|
|
|
|
con:close()
|
|
|
|
return respt
|
2001-07-29 05:51:36 +02:00
|
|
|
end
|
2001-06-06 22:55:45 +02:00
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function authorizep(reqt, respt)
|
|
|
|
local auth = "Basic " .. (mime.b64(reqt.user .. ":" .. reqt.password))
|
|
|
|
reqt.headers["authorization"] = auth
|
|
|
|
return requestp(reqt)
|
2001-01-25 23:01:37 +01:00
|
|
|
end
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
function redirectp(reqt, respt)
|
|
|
|
-- we create a new table to get rid of anything we don't
|
|
|
|
-- absolutely need, including authentication info
|
2004-01-16 08:06:31 +01:00
|
|
|
local redirt = {
|
|
|
|
method = reqt.method,
|
2001-08-07 21:50:04 +02:00
|
|
|
-- the RFC says the redirect URL has to be absolute, but some
|
2004-03-21 08:50:15 +01:00
|
|
|
-- servers do not respect that
|
2004-06-04 17:15:45 +02:00
|
|
|
url = url.absolute(reqt.url, respt.headers["location"]),
|
2004-03-16 07:42:53 +01:00
|
|
|
source = reqt.source,
|
|
|
|
sink = reqt.sink,
|
2004-01-19 01:24:41 +01:00
|
|
|
headers = reqt.headers,
|
2004-06-15 08:24:00 +02:00
|
|
|
proxy = reqt.proxy,
|
|
|
|
nredirects = (reqt.nredirects or 0) + 1
|
2001-07-29 05:51:36 +02:00
|
|
|
}
|
2004-06-15 08:24:00 +02:00
|
|
|
respt = requestp(redirt)
|
2004-03-21 08:50:15 +01:00
|
|
|
-- we pass the location header as a clue we redirected
|
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
|
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
request = socket.protect(requestp)
|
|
|
|
|
|
|
|
get = socket.protect(function(u)
|
2004-03-21 08:50:15 +01:00
|
|
|
local t = {}
|
2004-06-15 08:24:00 +02:00
|
|
|
local respt = requestp {
|
|
|
|
url = u,
|
|
|
|
sink = ltn12.sink.table(t)
|
2004-03-21 08:50:15 +01:00
|
|
|
}
|
2004-06-15 08:24:00 +02:00
|
|
|
return (table.getn(t) > 0 or nil) and table.concat(t), respt.headers,
|
|
|
|
respt.code
|
|
|
|
end)
|
2001-06-06 22:55:45 +02:00
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
post = socket.protect(function(u, body)
|
2004-03-21 08:50:15 +01:00
|
|
|
local t = {}
|
2004-06-15 08:24:00 +02:00
|
|
|
local respt = requestp {
|
|
|
|
url = u,
|
|
|
|
method = "POST",
|
2004-03-21 08:50:15 +01:00
|
|
|
source = ltn12.source.string(body),
|
|
|
|
sink = ltn12.sink.table(t),
|
2004-06-15 08:24:00 +02:00
|
|
|
headers = { ["content-length"] = string.len(body) }
|
2004-03-21 08:50:15 +01:00
|
|
|
}
|
2004-06-15 08:24:00 +02:00
|
|
|
return (table.getn(t) > 0 or nil) and table.concat(t),
|
|
|
|
respt.headers, respt.code
|
|
|
|
end)
|
2004-06-04 17:15:45 +02:00
|
|
|
|
|
|
|
return http
|