2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2001-09-12 20:27:55 +02:00
|
|
|
-- FTP 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-09-12 20:27:55 +02:00
|
|
|
-- Conforming to: RFC 959, LTN7
|
|
|
|
-- RCS ID: $Id$
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-03-16 07:42:53 +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 namespace inside LuaSocket namespace
|
|
|
|
socket.ftp = socket.ftp or {}
|
|
|
|
-- make all module globals fall into namespace
|
|
|
|
setmetatable(socket.ftp, { __index = _G })
|
|
|
|
setfenv(1, socket.ftp)
|
2001-09-12 20:27:55 +02:00
|
|
|
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Program constants
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- timeout in seconds before the program gives up on a connection
|
2004-03-16 07:42:53 +01:00
|
|
|
TIMEOUT = 60
|
2000-12-29 23:15:09 +01:00
|
|
|
-- default port for ftp service
|
2004-03-16 07:42:53 +01:00
|
|
|
PORT = 21
|
2000-12-29 23:15:09 +01:00
|
|
|
-- this is the default anonymous password. used when no password is
|
2001-09-12 20:27:55 +02:00
|
|
|
-- provided in url. should be changed to your e-mail.
|
2004-03-16 07:42:53 +01:00
|
|
|
EMAIL = "anonymous@anonymous.org"
|
2001-06-06 22:55:45 +02:00
|
|
|
-- block size used in transfers
|
2004-03-16 07:42:53 +01:00
|
|
|
BLOCKSIZE = 2048
|
2000-12-29 23:15:09 +01:00
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2004-05-25 07:27:44 +02:00
|
|
|
-- Low level FTP API
|
2000-12-29 23:15:09 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-05-25 07:27:44 +02:00
|
|
|
local metat = { __index = {} }
|
2000-12-29 23:15:09 +01:00
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function open(server, port)
|
|
|
|
local tp = socket.try(socket.tp.connect(server, port or PORT))
|
|
|
|
return setmetatable({tp = tp}, metat)
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
local function port(portt)
|
|
|
|
return portt.server:accept()
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
local function pasv(pasvt)
|
|
|
|
return socket.connect(pasvt.ip, pasvt.port)
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:login(user, password)
|
|
|
|
socket.try(self.tp:command("USER", user))
|
|
|
|
local code, reply = socket.try(self.tp:check{"2..", 331})
|
|
|
|
if code == 331 then
|
|
|
|
socket.try(password, reply)
|
|
|
|
socket.try(self.tp:command("PASS", password))
|
|
|
|
socket.try(self.tp:check("2.."))
|
|
|
|
end
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:pasv()
|
|
|
|
socket.try(self.tp:command("PASV"))
|
|
|
|
local code, reply = socket.try(self.tp:check("2.."))
|
|
|
|
local _, _, a, b, c, d, p1, p2 =
|
|
|
|
string.find(reply, "(%d+)%D(%d+)%D(%d+)%D(%d+)%D(%d+)%D(%d+)")
|
|
|
|
socket.try(a and b and c and d and p1 and p2, reply)
|
|
|
|
self.pasvt = {
|
|
|
|
ip = string.format("%d.%d.%d.%d", a, b, c, d),
|
|
|
|
port = p1*256 + p2
|
|
|
|
}
|
|
|
|
if self.portt then
|
|
|
|
self.portt.server:close()
|
|
|
|
self.portt = nil
|
|
|
|
end
|
|
|
|
return self.pasvt.ip, self.pasvt.port
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:port(ip, port)
|
|
|
|
self.pasvt = nil
|
|
|
|
local server
|
|
|
|
if not ip then
|
|
|
|
ip, port = socket.try(self.tp:getcontrol():getsockname())
|
|
|
|
server = socket.try(socket.bind(ip, 0))
|
|
|
|
ip, port = socket.try(server:getsockname())
|
|
|
|
socket.try(server:settimeout(TIMEOUT))
|
|
|
|
end
|
|
|
|
local pl = math.mod(port, 256)
|
|
|
|
local ph = (port - pl)/256
|
|
|
|
local arg = string.gsub(string.format("%s,%d,%d", ip, ph, pl), "%.", ",")
|
|
|
|
socket.try(self.tp:command("port", arg))
|
|
|
|
socket.try(self.tp:check("2.."))
|
|
|
|
self.portt = server and {ip = ip, port = port, server = server}
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:send(sendt)
|
|
|
|
local data
|
|
|
|
socket.try(self.pasvt or self.portt, "need port or pasv first")
|
|
|
|
if self.pasvt then data = socket.try(pasv(self.pasvt)) end
|
|
|
|
socket.try(self.tp:command(sendt.command, sendt.argument))
|
2004-05-25 07:49:07 +02:00
|
|
|
local code, reply = socket.try(self.tp:check{"2..", "1.."})
|
2004-05-25 07:27:44 +02:00
|
|
|
if self.portt then data = socket.try(port(self.portt)) end
|
|
|
|
local step = sendt.step or ltn12.pump.step
|
|
|
|
local checkstep = function(src, snk)
|
|
|
|
local readyt = socket.select(readt, nil, 0)
|
|
|
|
if readyt[tp] then
|
2004-05-25 07:49:07 +02:00
|
|
|
code, reply = self.tp:check("2..")
|
2004-05-25 07:27:44 +02:00
|
|
|
if not code then
|
|
|
|
data:close()
|
|
|
|
return nil, reply
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local ret, err = step(src, snk)
|
|
|
|
if err then data:close() end
|
|
|
|
return ret, err
|
2004-03-16 07:42:53 +01:00
|
|
|
end
|
2004-05-26 06:58:32 +02:00
|
|
|
local sink = socket.sink("close-when-done", data)
|
2004-05-25 07:27:44 +02:00
|
|
|
socket.try(ltn12.pump.all(sendt.source, sink, checkstep))
|
|
|
|
if string.find(code, "1..") then socket.try(self.tp:check("2..")) end
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
function metat.__index:receive(recvt)
|
|
|
|
local data
|
|
|
|
socket.try(self.pasvt or self.portt, "need port or pasv first")
|
|
|
|
if self.pasvt then data = socket.try(pasv(self.pasvt)) end
|
|
|
|
socket.try(self.tp:command(recvt.command, recvt.argument))
|
2004-05-25 07:49:07 +02:00
|
|
|
local code = socket.try(self.tp:check{"1..", "2.."})
|
2004-05-25 07:27:44 +02:00
|
|
|
if self.portt then data = socket.try(port(self.portt)) end
|
|
|
|
local source = socket.source("until-closed", data)
|
|
|
|
local step = recvt.step or ltn12.pump.step
|
|
|
|
local checkstep = function(src, snk)
|
|
|
|
local ret, err = step(src, snk)
|
|
|
|
if err then data:close() end
|
|
|
|
return ret, err
|
2004-03-16 07:42:53 +01:00
|
|
|
end
|
2004-05-25 07:27:44 +02:00
|
|
|
socket.try(ltn12.pump.all(source, recvt.sink, checkstep))
|
|
|
|
if string.find(code, "1..") then socket.try(self.tp:check("2..")) end
|
|
|
|
return 1
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:cwd(dir)
|
|
|
|
socket.try(self.tp:command("CWD", dir))
|
|
|
|
socket.try(self.tp:check(250))
|
|
|
|
return 1
|
2000-12-29 23:15:09 +01:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:type(type)
|
|
|
|
socket.try(self.tp:command("TYPE", type))
|
|
|
|
socket.try(self.tp:check(200))
|
|
|
|
return 1
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:greet()
|
|
|
|
local code = socket.try(self.tp:check{"1..", "2.."})
|
|
|
|
if string.find(code, "1..") then socket.try(self.tp:check("2..")) end
|
|
|
|
return 1
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:quit()
|
|
|
|
socket.try(self.tp:command("QUIT"))
|
|
|
|
socket.try(self.tp:check("2.."))
|
|
|
|
return 1
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function metat.__index:close()
|
|
|
|
socket.try(self.tp:close())
|
|
|
|
return 1
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2004-05-25 07:27:44 +02:00
|
|
|
-- High level FTP API
|
2001-09-12 20:27:55 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function put(putt)
|
2001-09-12 20:27:55 +02:00
|
|
|
end
|
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
function get(gett)
|
2001-06-06 22:55:45 +02:00
|
|
|
end
|
2004-02-04 15:29:11 +01:00
|
|
|
|
2004-05-25 07:27:44 +02:00
|
|
|
return ftp
|