2009-03-06 06:56:38 +03:00
|
|
|
#
|
2004-05-09 18:42:43 +04:00
|
|
|
# = net/ftp.rb - FTP Client Library
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-01-31 17:33:42 +03:00
|
|
|
# Written by Shugo Maeda <shugo@ruby-lang.org>.
|
2003-08-21 13:56:21 +04:00
|
|
|
#
|
|
|
|
# Documentation by Gavin Sinclair, sourced from "Programming Ruby" (Hunt/Thomas)
|
|
|
|
# and "Ruby In a Nutshell" (Matsumoto), used with permission.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-01-31 17:33:42 +03:00
|
|
|
# This library is distributed under the terms of the Ruby license.
|
|
|
|
# You can freely distribute/modify this library.
|
|
|
|
#
|
|
|
|
# It is included in the Ruby standard library.
|
|
|
|
#
|
|
|
|
# See the Net::FTP class for an overview.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
|
|
|
|
require "socket"
|
|
|
|
require "monitor"
|
|
|
|
|
2004-05-09 18:42:43 +04:00
|
|
|
module Net
|
2000-02-08 09:03:42 +03:00
|
|
|
|
2003-08-21 13:07:57 +04:00
|
|
|
# :stopdoc:
|
2000-02-08 09:03:42 +03:00
|
|
|
class FTPError < StandardError; end
|
|
|
|
class FTPReplyError < FTPError; end
|
2009-03-06 06:56:38 +03:00
|
|
|
class FTPTempError < FTPError; end
|
|
|
|
class FTPPermError < FTPError; end
|
2000-02-08 09:03:42 +03:00
|
|
|
class FTPProtoError < FTPError; end
|
2010-02-06 18:26:20 +03:00
|
|
|
class FTPConnectionError < FTPError; end
|
2003-08-21 13:07:57 +04:00
|
|
|
# :startdoc:
|
2000-02-08 09:03:42 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# This class implements the File Transfer Protocol. If you have used a
|
|
|
|
# command-line FTP program, and are familiar with the commands, you will be
|
|
|
|
# able to use this class easily. Some extra features are included to take
|
|
|
|
# advantage of Ruby's style and strengths.
|
|
|
|
#
|
|
|
|
# == Example
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-01-31 17:33:42 +03:00
|
|
|
# require 'net/ftp'
|
2003-08-21 13:07:57 +04:00
|
|
|
#
|
|
|
|
# === Example 1
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2003-01-31 17:33:42 +03:00
|
|
|
# ftp = Net::FTP.new('ftp.netlab.co.jp')
|
|
|
|
# ftp.login
|
|
|
|
# files = ftp.chdir('pub/lang/ruby/contrib')
|
|
|
|
# files = ftp.list('n*')
|
|
|
|
# ftp.getbinaryfile('nif.rb-0.91.gz', 'nif.gz', 1024)
|
|
|
|
# ftp.close
|
|
|
|
#
|
2003-08-21 13:07:57 +04:00
|
|
|
# === Example 2
|
|
|
|
#
|
|
|
|
# Net::FTP.open('ftp.netlab.co.jp') do |ftp|
|
|
|
|
# ftp.login
|
|
|
|
# files = ftp.chdir('pub/lang/ruby/contrib')
|
|
|
|
# files = ftp.list('n*')
|
|
|
|
# ftp.getbinaryfile('nif.rb-0.91.gz', 'nif.gz', 1024)
|
|
|
|
# end
|
|
|
|
#
|
2003-01-31 17:33:42 +03:00
|
|
|
# == Major Methods
|
|
|
|
#
|
|
|
|
# The following are the methods most likely to be useful to users:
|
2004-05-09 18:42:43 +04:00
|
|
|
# - FTP.open
|
2003-01-31 17:33:42 +03:00
|
|
|
# - #getbinaryfile
|
|
|
|
# - #gettextfile
|
|
|
|
# - #putbinaryfile
|
|
|
|
# - #puttextfile
|
|
|
|
# - #chdir
|
2003-08-21 13:56:21 +04:00
|
|
|
# - #nlst
|
2003-01-31 17:33:42 +03:00
|
|
|
# - #size
|
|
|
|
# - #rename
|
|
|
|
# - #delete
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
class FTP
|
|
|
|
include MonitorMixin
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-08-21 13:07:57 +04:00
|
|
|
# :stopdoc:
|
2000-02-08 09:03:42 +03:00
|
|
|
FTP_PORT = 21
|
|
|
|
CRLF = "\r\n"
|
2000-08-17 07:14:22 +04:00
|
|
|
DEFAULT_BLOCKSIZE = 4096
|
2003-08-21 13:07:57 +04:00
|
|
|
# :startdoc:
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
# When +true+, transfers are performed in binary mode. Default: +true+.
|
2004-06-20 16:15:07 +04:00
|
|
|
attr_reader :binary
|
2003-01-31 17:33:42 +03:00
|
|
|
|
2004-05-09 18:42:43 +04:00
|
|
|
# When +true+, the connection is in passive mode. Default: +false+.
|
2003-01-31 17:33:42 +03:00
|
|
|
attr_accessor :passive
|
|
|
|
|
|
|
|
# When +true+, all traffic to and from the server is written
|
|
|
|
# to +$stdout+. Default: +false+.
|
|
|
|
attr_accessor :debug_mode
|
|
|
|
|
|
|
|
# Sets or retrieves the +resume+ status, which decides whether incomplete
|
|
|
|
# transfers are resumed or restarted. Default: +false+.
|
|
|
|
attr_accessor :resume
|
|
|
|
|
|
|
|
# The server's welcome message.
|
|
|
|
attr_reader :welcome
|
|
|
|
|
2003-07-30 19:28:20 +04:00
|
|
|
# The server's last response code.
|
|
|
|
attr_reader :last_response_code
|
|
|
|
alias lastresp last_response_code
|
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
# The server's last response.
|
2003-07-30 19:28:20 +04:00
|
|
|
attr_reader :last_response
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2004-05-09 18:42:43 +04:00
|
|
|
# A synonym for <tt>FTP.new</tt>, but with a mandatory host parameter.
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2003-07-19 21:26:04 +04:00
|
|
|
# If a block is given, it is passed the +FTP+ object, which will be closed
|
|
|
|
# when the block finishes, or when an exception is raised.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def FTP.open(host, user = nil, passwd = nil, acct = nil)
|
2003-07-19 21:26:04 +04:00
|
|
|
if block_given?
|
|
|
|
ftp = new(host, user, passwd, acct)
|
|
|
|
begin
|
|
|
|
yield ftp
|
|
|
|
ensure
|
|
|
|
ftp.close
|
|
|
|
end
|
|
|
|
else
|
|
|
|
new(host, user, passwd, acct)
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Creates and returns a new +FTP+ object. If a +host+ is given, a connection
|
|
|
|
# is made. Additionally, if the +user+ is given, the given user name,
|
|
|
|
# password, and (optionally) account are used to log in. See #login.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def initialize(host = nil, user = nil, passwd = nil, acct = nil)
|
2000-03-06 09:32:08 +03:00
|
|
|
super()
|
2009-10-28 07:09:20 +03:00
|
|
|
@binary = true
|
2000-02-08 09:03:42 +03:00
|
|
|
@passive = false
|
|
|
|
@debug_mode = false
|
2000-06-22 09:37:12 +04:00
|
|
|
@resume = false
|
2010-02-06 18:26:20 +03:00
|
|
|
@sock = NullSocket.new
|
2009-10-28 07:09:20 +03:00
|
|
|
@logged_in = false
|
2000-02-08 09:03:42 +03:00
|
|
|
if host
|
|
|
|
connect(host)
|
|
|
|
if user
|
|
|
|
login(user, passwd, acct)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2002-07-03 09:28:01 +04:00
|
|
|
|
2004-06-20 16:15:07 +04:00
|
|
|
def binary=(newmode)
|
|
|
|
if newmode != @binary
|
|
|
|
@binary = newmode
|
2009-10-28 07:09:20 +03:00
|
|
|
send_type_command if @logged_in
|
2004-06-20 16:15:07 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-28 07:09:20 +03:00
|
|
|
def send_type_command
|
|
|
|
if @binary
|
|
|
|
voidcmd("TYPE I")
|
|
|
|
else
|
|
|
|
voidcmd("TYPE A")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :send_type_command
|
|
|
|
|
2004-06-20 16:15:07 +04:00
|
|
|
def with_binary(newmode)
|
|
|
|
oldmode = binary
|
|
|
|
self.binary = newmode
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
self.binary = oldmode
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :with_binary
|
|
|
|
|
2003-08-21 13:07:57 +04:00
|
|
|
# Obsolete
|
2003-07-30 19:28:20 +04:00
|
|
|
def return_code
|
|
|
|
$stderr.puts("warning: Net::FTP#return_code is obsolete and do nothing")
|
|
|
|
return "\n"
|
|
|
|
end
|
|
|
|
|
2003-08-21 13:07:57 +04:00
|
|
|
# Obsolete
|
2003-07-30 19:28:20 +04:00
|
|
|
def return_code=(s)
|
|
|
|
$stderr.puts("warning: Net::FTP#return_code= is obsolete and do nothing")
|
|
|
|
end
|
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def open_socket(host, port)
|
2008-11-18 15:29:25 +03:00
|
|
|
if defined? SOCKSSocket and ENV["SOCKS_SERVER"]
|
2000-02-08 09:03:42 +03:00
|
|
|
@passive = true
|
2008-11-18 15:29:25 +03:00
|
|
|
return SOCKSSocket.open(host, port)
|
2000-02-08 09:03:42 +03:00
|
|
|
else
|
2002-07-11 12:22:18 +04:00
|
|
|
return TCPSocket.open(host, port)
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
private :open_socket
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Establishes an FTP connection to host, optionally overriding the default
|
|
|
|
# port. If the environment variable +SOCKS_SERVER+ is set, sets up the
|
|
|
|
# connection through a SOCKS proxy. Raises an exception (typically
|
2004-05-09 18:42:43 +04:00
|
|
|
# <tt>Errno::ECONNREFUSED</tt>) if the connection cannot be established.
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def connect(host, port = FTP_PORT)
|
|
|
|
if @debug_mode
|
|
|
|
print "connect: ", host, ", ", port, "\n"
|
|
|
|
end
|
|
|
|
synchronize do
|
|
|
|
@sock = open_socket(host, port)
|
|
|
|
voidresp
|
|
|
|
end
|
|
|
|
end
|
2002-07-18 06:52:48 +04:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# WRITEME or make private
|
|
|
|
#
|
2002-07-18 06:52:48 +04:00
|
|
|
def set_socket(sock, get_greeting = true)
|
|
|
|
synchronize do
|
|
|
|
@sock = sock
|
|
|
|
if get_greeting
|
|
|
|
voidresp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def sanitize(s)
|
|
|
|
if s =~ /^PASS /i
|
|
|
|
return s[0, 5] + "*" * (s.length - 5)
|
|
|
|
else
|
|
|
|
return s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :sanitize
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def putline(line)
|
|
|
|
if @debug_mode
|
|
|
|
print "put: ", sanitize(line), "\n"
|
|
|
|
end
|
|
|
|
line = line + CRLF
|
|
|
|
@sock.write(line)
|
|
|
|
end
|
|
|
|
private :putline
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def getline
|
|
|
|
line = @sock.readline # if get EOF, raise EOFError
|
2003-07-30 19:28:20 +04:00
|
|
|
line.sub!(/(\r\n|\n|\r)\z/n, "")
|
2000-02-08 09:03:42 +03:00
|
|
|
if @debug_mode
|
|
|
|
print "get: ", sanitize(line), "\n"
|
|
|
|
end
|
|
|
|
return line
|
|
|
|
end
|
|
|
|
private :getline
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def getmultiline
|
|
|
|
line = getline
|
|
|
|
buff = line
|
|
|
|
if line[3] == ?-
|
|
|
|
code = line[0, 3]
|
|
|
|
begin
|
|
|
|
line = getline
|
|
|
|
buff << "\n" << line
|
|
|
|
end until line[0, 3] == code and line[3] != ?-
|
|
|
|
end
|
|
|
|
return buff << "\n"
|
|
|
|
end
|
|
|
|
private :getmultiline
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def getresp
|
2003-07-30 19:28:20 +04:00
|
|
|
@last_response = getmultiline
|
|
|
|
@last_response_code = @last_response[0, 3]
|
|
|
|
case @last_response_code
|
|
|
|
when /\A[123]/
|
|
|
|
return @last_response
|
|
|
|
when /\A4/
|
|
|
|
raise FTPTempError, @last_response
|
|
|
|
when /\A5/
|
|
|
|
raise FTPPermError, @last_response
|
2000-02-08 09:03:42 +03:00
|
|
|
else
|
2003-07-30 19:28:20 +04:00
|
|
|
raise FTPProtoError, @last_response
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
private :getresp
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def voidresp
|
|
|
|
resp = getresp
|
|
|
|
if resp[0] != ?2
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :voidresp
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2003-07-30 19:28:20 +04:00
|
|
|
# Sends a command and returns the response.
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def sendcmd(cmd)
|
|
|
|
synchronize do
|
|
|
|
putline(cmd)
|
|
|
|
return getresp
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2003-07-30 19:28:20 +04:00
|
|
|
# Sends a command and expect a response beginning with '2'.
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def voidcmd(cmd)
|
|
|
|
synchronize do
|
|
|
|
putline(cmd)
|
|
|
|
voidresp
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def sendport(host, port)
|
|
|
|
af = (@sock.peeraddr)[0]
|
|
|
|
if af == "AF_INET"
|
2008-07-04 09:17:25 +04:00
|
|
|
cmd = "PORT " + (host.split(".") + port.divmod(256)).join(",")
|
2000-02-08 09:03:42 +03:00
|
|
|
elsif af == "AF_INET6"
|
2008-07-04 09:17:25 +04:00
|
|
|
cmd = sprintf("EPRT |2|%s|%d|", host, port)
|
2000-02-08 09:03:42 +03:00
|
|
|
else
|
|
|
|
raise FTPProtoError, host
|
|
|
|
end
|
|
|
|
voidcmd(cmd)
|
|
|
|
end
|
|
|
|
private :sendport
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def makeport
|
2002-07-11 12:22:18 +04:00
|
|
|
sock = TCPServer.open(@sock.addr[3], 0)
|
2000-02-08 09:03:42 +03:00
|
|
|
port = sock.addr[1]
|
2000-12-21 09:35:05 +03:00
|
|
|
host = sock.addr[3]
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = sendport(host, port)
|
|
|
|
return sock
|
|
|
|
end
|
|
|
|
private :makeport
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def makepasv
|
|
|
|
if @sock.peeraddr[0] == "AF_INET"
|
|
|
|
host, port = parse227(sendcmd("PASV"))
|
|
|
|
else
|
|
|
|
host, port = parse229(sendcmd("EPSV"))
|
|
|
|
# host, port = parse228(sendcmd("LPSV"))
|
|
|
|
end
|
|
|
|
return host, port
|
|
|
|
end
|
|
|
|
private :makepasv
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-06-22 09:37:12 +04:00
|
|
|
def transfercmd(cmd, rest_offset = nil)
|
2000-02-08 09:03:42 +03:00
|
|
|
if @passive
|
|
|
|
host, port = makepasv
|
|
|
|
conn = open_socket(host, port)
|
2000-06-22 09:37:12 +04:00
|
|
|
if @resume and rest_offset
|
2009-03-06 06:56:38 +03:00
|
|
|
resp = sendcmd("REST " + rest_offset.to_s)
|
2000-06-22 09:37:12 +04:00
|
|
|
if resp[0] != ?3
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = sendcmd(cmd)
|
2007-05-30 08:25:32 +04:00
|
|
|
# skip 2XX for some ftp servers
|
|
|
|
resp = getresp if resp[0] == ?2
|
2000-02-08 09:03:42 +03:00
|
|
|
if resp[0] != ?1
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
else
|
|
|
|
sock = makeport
|
2000-06-22 09:37:12 +04:00
|
|
|
if @resume and rest_offset
|
2009-03-06 06:56:38 +03:00
|
|
|
resp = sendcmd("REST " + rest_offset.to_s)
|
2000-06-22 09:37:12 +04:00
|
|
|
if resp[0] != ?3
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = sendcmd(cmd)
|
2007-05-30 08:25:32 +04:00
|
|
|
# skip 2XX for some ftp servers
|
|
|
|
resp = getresp if resp[0] == ?2
|
2000-02-08 09:03:42 +03:00
|
|
|
if resp[0] != ?1
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
conn = sock.accept
|
2000-08-15 13:04:32 +04:00
|
|
|
sock.close
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
return conn
|
|
|
|
end
|
|
|
|
private :transfercmd
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Logs in to the remote host. The session must have been previously
|
|
|
|
# connected. If +user+ is the string "anonymous" and the +password+ is
|
|
|
|
# +nil+, a password of <tt>user@host</tt> is synthesized. If the +acct+
|
|
|
|
# parameter is not +nil+, an FTP ACCT command is sent following the
|
|
|
|
# successful login. Raises an exception on error (typically
|
|
|
|
# <tt>Net::FTPPermError</tt>).
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def login(user = "anonymous", passwd = nil, acct = nil)
|
|
|
|
if user == "anonymous" and passwd == nil
|
2009-10-12 18:29:05 +04:00
|
|
|
passwd = "anonymous@"
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = ""
|
|
|
|
synchronize do
|
|
|
|
resp = sendcmd('USER ' + user)
|
|
|
|
if resp[0] == ?3
|
2008-08-07 15:55:13 +04:00
|
|
|
raise FTPReplyError, resp if passwd.nil?
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = sendcmd('PASS ' + passwd)
|
|
|
|
end
|
|
|
|
if resp[0] == ?3
|
2008-08-07 15:55:13 +04:00
|
|
|
raise FTPReplyError, resp if acct.nil?
|
2000-02-08 09:03:42 +03:00
|
|
|
resp = sendcmd('ACCT ' + acct)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if resp[0] != ?2
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
@welcome = resp
|
2009-10-28 07:09:20 +03:00
|
|
|
send_type_command
|
|
|
|
@logged_in = true
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Puts the connection into binary (image) mode, issues the given command,
|
|
|
|
# and fetches the data returned, passing it to the associated block in
|
|
|
|
# chunks of +blocksize+ characters. Note that +cmd+ is a server command
|
|
|
|
# (such as "RETR myfile").
|
|
|
|
#
|
|
|
|
def retrbinary(cmd, blocksize, rest_offset = nil) # :yield: data
|
2000-02-08 09:03:42 +03:00
|
|
|
synchronize do
|
2004-06-20 16:15:07 +04:00
|
|
|
with_binary(true) do
|
|
|
|
conn = transfercmd(cmd, rest_offset)
|
|
|
|
loop do
|
|
|
|
data = conn.read(blocksize)
|
|
|
|
break if data == nil
|
|
|
|
yield(data)
|
|
|
|
end
|
|
|
|
conn.close
|
|
|
|
voidresp
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Puts the connection into ASCII (text) mode, issues the given command, and
|
|
|
|
# passes the resulting data, one line at a time, to the associated block. If
|
|
|
|
# no block is given, prints the lines. Note that +cmd+ is a server command
|
|
|
|
# (such as "RETR myfile").
|
|
|
|
#
|
|
|
|
def retrlines(cmd) # :yield: line
|
2000-02-08 09:03:42 +03:00
|
|
|
synchronize do
|
2004-06-20 16:15:07 +04:00
|
|
|
with_binary(false) do
|
|
|
|
conn = transfercmd(cmd)
|
|
|
|
loop do
|
|
|
|
line = conn.gets
|
|
|
|
break if line == nil
|
2009-10-12 17:52:37 +04:00
|
|
|
yield(line.sub(/\r?\n\z/, ""), !line.match(/\n\z/).nil?)
|
2004-06-20 16:15:07 +04:00
|
|
|
end
|
|
|
|
conn.close
|
|
|
|
voidresp
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Puts the connection into binary (image) mode, issues the given server-side
|
|
|
|
# command (such as "STOR myfile"), and sends the contents of the file named
|
|
|
|
# +file+ to the server. If the optional block is given, it also passes it
|
|
|
|
# the data, in chunks of +blocksize+ characters.
|
|
|
|
#
|
|
|
|
def storbinary(cmd, file, blocksize, rest_offset = nil, &block) # :yield: data
|
2003-06-13 04:26:51 +04:00
|
|
|
if rest_offset
|
|
|
|
file.seek(rest_offset, IO::SEEK_SET)
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
synchronize do
|
2004-06-20 16:15:07 +04:00
|
|
|
with_binary(true) do
|
2009-11-19 17:21:05 +03:00
|
|
|
conn = transfercmd(cmd)
|
2004-06-20 16:15:07 +04:00
|
|
|
loop do
|
|
|
|
buf = file.read(blocksize)
|
|
|
|
break if buf == nil
|
|
|
|
conn.write(buf)
|
|
|
|
yield(buf) if block
|
|
|
|
end
|
|
|
|
conn.close
|
|
|
|
voidresp
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2007-02-06 12:45:28 +03:00
|
|
|
rescue Errno::EPIPE
|
|
|
|
# EPIPE, in this case, means that the data connection was unexpectedly
|
|
|
|
# terminated. Rather than just raising EPIPE to the caller, check the
|
|
|
|
# response on the control connection. If getresp doesn't raise a more
|
|
|
|
# appropriate exception, re-raise the original exception.
|
|
|
|
getresp
|
|
|
|
raise
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Puts the connection into ASCII (text) mode, issues the given server-side
|
|
|
|
# command (such as "STOR myfile"), and sends the contents of the file
|
|
|
|
# named +file+ to the server, one line at a time. If the optional block is
|
|
|
|
# given, it also passes it the lines.
|
|
|
|
#
|
|
|
|
def storlines(cmd, file, &block) # :yield: line
|
2000-02-08 09:03:42 +03:00
|
|
|
synchronize do
|
2004-06-20 16:15:07 +04:00
|
|
|
with_binary(false) do
|
|
|
|
conn = transfercmd(cmd)
|
|
|
|
loop do
|
|
|
|
buf = file.gets
|
|
|
|
break if buf == nil
|
|
|
|
if buf[-2, 2] != CRLF
|
|
|
|
buf = buf.chomp + CRLF
|
|
|
|
end
|
|
|
|
conn.write(buf)
|
|
|
|
yield(buf) if block
|
|
|
|
end
|
|
|
|
conn.close
|
|
|
|
voidresp
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2007-02-06 12:45:28 +03:00
|
|
|
rescue Errno::EPIPE
|
|
|
|
# EPIPE, in this case, means that the data connection was unexpectedly
|
|
|
|
# terminated. Rather than just raising EPIPE to the caller, check the
|
|
|
|
# response on the control connection. If getresp doesn't raise a more
|
|
|
|
# appropriate exception, re-raise the original exception.
|
|
|
|
getresp
|
|
|
|
raise
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2002-07-03 09:28:01 +04:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Retrieves +remotefile+ in binary mode, storing the result in +localfile+.
|
2005-10-15 18:54:03 +04:00
|
|
|
# If +localfile+ is nil, returns retrieved data.
|
2003-01-31 17:33:42 +03:00
|
|
|
# If a block is supplied, it is passed the retrieved data in +blocksize+
|
|
|
|
# chunks.
|
|
|
|
#
|
2002-07-03 08:59:24 +04:00
|
|
|
def getbinaryfile(remotefile, localfile = File.basename(remotefile),
|
2005-10-15 18:54:03 +04:00
|
|
|
blocksize = DEFAULT_BLOCKSIZE) # :yield: data
|
|
|
|
result = nil
|
|
|
|
if localfile
|
|
|
|
if @resume
|
|
|
|
rest_offset = File.size?(localfile)
|
|
|
|
f = open(localfile, "a")
|
|
|
|
else
|
|
|
|
rest_offset = nil
|
|
|
|
f = open(localfile, "w")
|
|
|
|
end
|
|
|
|
elsif !block_given?
|
|
|
|
result = ""
|
2000-06-22 09:37:12 +04:00
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
begin
|
2005-10-15 18:54:03 +04:00
|
|
|
f.binmode if localfile
|
2009-10-27 09:47:41 +03:00
|
|
|
retrbinary("RETR " + remotefile.to_s, blocksize, rest_offset) do |data|
|
2005-10-15 18:54:03 +04:00
|
|
|
f.write(data) if localfile
|
|
|
|
yield(data) if block_given?
|
|
|
|
result.concat(data) if result
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2005-10-15 18:54:03 +04:00
|
|
|
return result
|
2000-02-08 09:03:42 +03:00
|
|
|
ensure
|
2005-10-15 18:54:03 +04:00
|
|
|
f.close if localfile
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Retrieves +remotefile+ in ASCII (text) mode, storing the result in
|
2005-10-15 18:54:03 +04:00
|
|
|
# +localfile+.
|
|
|
|
# If +localfile+ is nil, returns retrieved data.
|
|
|
|
# If a block is supplied, it is passed the retrieved data one
|
2003-01-31 17:33:42 +03:00
|
|
|
# line at a time.
|
|
|
|
#
|
2005-10-15 18:54:03 +04:00
|
|
|
def gettextfile(remotefile, localfile = File.basename(remotefile)) # :yield: line
|
|
|
|
result = nil
|
|
|
|
if localfile
|
|
|
|
f = open(localfile, "w")
|
|
|
|
elsif !block_given?
|
|
|
|
result = ""
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
begin
|
2009-10-12 17:52:37 +04:00
|
|
|
retrlines("RETR " + remotefile) do |line, newline|
|
|
|
|
l = newline ? line + "\n" : line
|
|
|
|
f.print(l) if localfile
|
|
|
|
yield(line, newline) if block_given?
|
|
|
|
result.concat(l) if result
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2005-10-15 18:54:03 +04:00
|
|
|
return result
|
2000-02-08 09:03:42 +03:00
|
|
|
ensure
|
2005-10-15 18:54:03 +04:00
|
|
|
f.close if localfile
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
2002-07-03 09:28:01 +04:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Retrieves +remotefile+ in whatever mode the session is set (text or
|
|
|
|
# binary). See #gettextfile and #getbinaryfile.
|
|
|
|
#
|
2003-07-30 05:56:45 +04:00
|
|
|
def get(remotefile, localfile = File.basename(remotefile),
|
2003-01-31 17:33:42 +03:00
|
|
|
blocksize = DEFAULT_BLOCKSIZE, &block) # :yield: data
|
2004-06-20 16:15:07 +04:00
|
|
|
if @binary
|
2003-07-30 05:56:45 +04:00
|
|
|
getbinaryfile(remotefile, localfile, blocksize, &block)
|
2004-06-20 16:15:07 +04:00
|
|
|
else
|
|
|
|
gettextfile(remotefile, localfile, &block)
|
2002-07-03 09:28:01 +04:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Transfers +localfile+ to the server in binary mode, storing the result in
|
|
|
|
# +remotefile+. If a block is supplied, calls it, passing in the transmitted
|
|
|
|
# data in +blocksize+ chunks.
|
|
|
|
#
|
2002-07-03 09:28:01 +04:00
|
|
|
def putbinaryfile(localfile, remotefile = File.basename(localfile),
|
2003-08-21 13:07:57 +04:00
|
|
|
blocksize = DEFAULT_BLOCKSIZE, &block) # :yield: data
|
2000-06-22 09:37:12 +04:00
|
|
|
if @resume
|
2003-06-13 04:26:51 +04:00
|
|
|
begin
|
|
|
|
rest_offset = size(remotefile)
|
|
|
|
rescue Net::FTPPermError
|
|
|
|
rest_offset = nil
|
|
|
|
end
|
2000-06-22 09:37:12 +04:00
|
|
|
else
|
|
|
|
rest_offset = nil
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
f = open(localfile)
|
|
|
|
begin
|
|
|
|
f.binmode
|
2009-11-19 17:21:05 +03:00
|
|
|
if rest_offset
|
|
|
|
storbinary("APPE " + remotefile, f, blocksize, rest_offset, &block)
|
|
|
|
else
|
|
|
|
storbinary("STOR " + remotefile, f, blocksize, rest_offset, &block)
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
ensure
|
|
|
|
f.close
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Transfers +localfile+ to the server in ASCII (text) mode, storing the result
|
|
|
|
# in +remotefile+. If callback or an associated block is supplied, calls it,
|
|
|
|
# passing in the transmitted data one line at a time.
|
|
|
|
#
|
|
|
|
def puttextfile(localfile, remotefile = File.basename(localfile), &block) # :yield: line
|
2000-02-08 09:03:42 +03:00
|
|
|
f = open(localfile)
|
|
|
|
begin
|
2002-07-03 08:49:54 +04:00
|
|
|
storlines("STOR " + remotefile, f, &block)
|
2000-02-08 09:03:42 +03:00
|
|
|
ensure
|
|
|
|
f.close
|
|
|
|
end
|
|
|
|
end
|
2002-07-03 09:28:01 +04:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# Transfers +localfile+ to the server in whatever mode the session is set
|
2003-01-31 17:33:42 +03:00
|
|
|
# (text or binary). See #puttextfile and #putbinaryfile.
|
|
|
|
#
|
2002-07-03 09:28:01 +04:00
|
|
|
def put(localfile, remotefile = File.basename(localfile),
|
|
|
|
blocksize = DEFAULT_BLOCKSIZE, &block)
|
2004-06-20 16:15:07 +04:00
|
|
|
if @binary
|
2002-07-03 09:28:01 +04:00
|
|
|
putbinaryfile(localfile, remotefile, blocksize, &block)
|
2004-06-20 16:15:07 +04:00
|
|
|
else
|
|
|
|
puttextfile(localfile, remotefile, &block)
|
2002-07-03 09:28:01 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Sends the ACCT command. TODO: more info.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def acct(account)
|
|
|
|
cmd = "ACCT " + account
|
|
|
|
voidcmd(cmd)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns an array of filenames in the remote directory.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def nlst(dir = nil)
|
|
|
|
cmd = "NLST"
|
|
|
|
if dir
|
|
|
|
cmd = cmd + " " + dir
|
|
|
|
end
|
|
|
|
files = []
|
|
|
|
retrlines(cmd) do |line|
|
|
|
|
files.push(line)
|
|
|
|
end
|
|
|
|
return files
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns an array of file information in the directory (the output is like
|
|
|
|
# `ls -l`). If a block is given, it iterates through the listing.
|
|
|
|
#
|
|
|
|
def list(*args, &block) # :yield: line
|
2000-02-08 09:03:42 +03:00
|
|
|
cmd = "LIST"
|
|
|
|
args.each do |arg|
|
2009-10-27 09:47:41 +03:00
|
|
|
cmd = cmd + " " + arg.to_s
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
if block
|
|
|
|
retrlines(cmd, &block)
|
|
|
|
else
|
|
|
|
lines = []
|
|
|
|
retrlines(cmd) do |line|
|
|
|
|
lines << line
|
|
|
|
end
|
|
|
|
return lines
|
|
|
|
end
|
|
|
|
end
|
|
|
|
alias ls list
|
|
|
|
alias dir list
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Renames a file on the server.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def rename(fromname, toname)
|
|
|
|
resp = sendcmd("RNFR " + fromname)
|
|
|
|
if resp[0] != ?3
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
voidcmd("RNTO " + toname)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Deletes a file on the server.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def delete(filename)
|
|
|
|
resp = sendcmd("DELE " + filename)
|
|
|
|
if resp[0, 3] == "250"
|
|
|
|
return
|
|
|
|
elsif resp[0] == ?5
|
|
|
|
raise FTPPermError, resp
|
|
|
|
else
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Changes the (remote) directory.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def chdir(dirname)
|
|
|
|
if dirname == ".."
|
|
|
|
begin
|
|
|
|
voidcmd("CDUP")
|
|
|
|
return
|
2008-08-05 11:42:45 +04:00
|
|
|
rescue FTPPermError => e
|
|
|
|
if e.message[0, 3] != "500"
|
|
|
|
raise e
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
cmd = "CWD " + dirname
|
|
|
|
voidcmd(cmd)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns the size of the given (remote) filename.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def size(filename)
|
2004-06-20 16:15:07 +04:00
|
|
|
with_binary(true) do
|
|
|
|
resp = sendcmd("SIZE " + filename)
|
2009-03-06 06:56:38 +03:00
|
|
|
if resp[0, 3] != "213"
|
2004-06-20 16:15:07 +04:00
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
return resp[3..-1].strip.to_i
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2004-05-27 10:56:23 +04:00
|
|
|
MDTM_REGEXP = /^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)/ # :nodoc:
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns the last modification time of the (remote) file. If +local+ is
|
|
|
|
# +true+, it is returned as a local time, otherwise it's a UTC time.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def mtime(filename, local = false)
|
|
|
|
str = mdtm(filename)
|
|
|
|
ary = str.scan(MDTM_REGEXP)[0].collect {|i| i.to_i}
|
|
|
|
return local ? Time.local(*ary) : Time.gm(*ary)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Creates a remote directory.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def mkdir(dirname)
|
|
|
|
resp = sendcmd("MKD " + dirname)
|
|
|
|
return parse257(resp)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Removes a remote directory.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def rmdir(dirname)
|
|
|
|
voidcmd("RMD " + dirname)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns the current remote directory.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def pwd
|
|
|
|
resp = sendcmd("PWD")
|
|
|
|
return parse257(resp)
|
|
|
|
end
|
|
|
|
alias getdir pwd
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns system information.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def system
|
|
|
|
resp = sendcmd("SYST")
|
|
|
|
if resp[0, 3] != "215"
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
return resp[4 .. -1]
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Aborts the previous command (ABOR command).
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def abort
|
|
|
|
line = "ABOR" + CRLF
|
|
|
|
print "put: ABOR\n" if @debug_mode
|
|
|
|
@sock.send(line, Socket::MSG_OOB)
|
|
|
|
resp = getmultiline
|
|
|
|
unless ["426", "226", "225"].include?(resp[0, 3])
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
return resp
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns the status (STAT command).
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def status
|
|
|
|
line = "STAT" + CRLF
|
|
|
|
print "put: STAT\n" if @debug_mode
|
|
|
|
@sock.send(line, Socket::MSG_OOB)
|
|
|
|
return getresp
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Issues the MDTM command. TODO: more info.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def mdtm(filename)
|
|
|
|
resp = sendcmd("MDTM " + filename)
|
|
|
|
if resp[0, 3] == "213"
|
|
|
|
return resp[3 .. -1].strip
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Issues the HELP command.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def help(arg = nil)
|
|
|
|
cmd = "HELP"
|
|
|
|
if arg
|
|
|
|
cmd = cmd + " " + arg
|
|
|
|
end
|
|
|
|
sendcmd(cmd)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Exits the FTP session.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def quit
|
|
|
|
voidcmd("QUIT")
|
|
|
|
end
|
2002-06-11 08:20:11 +04:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Issues a NOOP command.
|
|
|
|
#
|
2002-06-11 08:20:11 +04:00
|
|
|
def noop
|
|
|
|
voidcmd("NOOP")
|
|
|
|
end
|
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Issues a SITE command.
|
|
|
|
#
|
2002-06-11 08:20:11 +04:00
|
|
|
def site(arg)
|
|
|
|
cmd = "SITE " + arg
|
|
|
|
voidcmd(cmd)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Closes the connection. Further operations are impossible until you open
|
|
|
|
# a new connection with #connect.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def close
|
|
|
|
@sock.close if @sock and not @sock.closed?
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-31 17:33:42 +03:00
|
|
|
#
|
|
|
|
# Returns +true+ iff the connection is closed.
|
|
|
|
#
|
2000-02-08 09:03:42 +03:00
|
|
|
def closed?
|
|
|
|
@sock == nil or @sock.closed?
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def parse227(resp)
|
|
|
|
if resp[0, 3] != "227"
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
left = resp.index("(")
|
|
|
|
right = resp.index(")")
|
|
|
|
if left == nil or right == nil
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
numbers = resp[left + 1 .. right - 1].split(",")
|
|
|
|
if numbers.length != 6
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
host = numbers[0, 4].join(".")
|
|
|
|
port = (numbers[4].to_i << 8) + numbers[5].to_i
|
|
|
|
return host, port
|
|
|
|
end
|
|
|
|
private :parse227
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def parse228(resp)
|
|
|
|
if resp[0, 3] != "228"
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
left = resp.index("(")
|
|
|
|
right = resp.index(")")
|
|
|
|
if left == nil or right == nil
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
numbers = resp[left + 1 .. right - 1].split(",")
|
|
|
|
if numbers[0] == "4"
|
|
|
|
if numbers.length != 9 || numbers[1] != "4" || numbers[2 + 4] != "2"
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
host = numbers[2, 4].join(".")
|
|
|
|
port = (numbers[7].to_i << 8) + numbers[8].to_i
|
|
|
|
elsif numbers[0] == "6"
|
|
|
|
if numbers.length != 21 || numbers[1] != "16" || numbers[2 + 16] != "2"
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
v6 = ["", "", "", "", "", "", "", ""]
|
|
|
|
for i in 0 .. 7
|
|
|
|
v6[i] = sprintf("%02x%02x", numbers[(i * 2) + 2].to_i,
|
|
|
|
numbers[(i * 2) + 3].to_i)
|
|
|
|
end
|
|
|
|
host = v6[0, 8].join(":")
|
|
|
|
port = (numbers[19].to_i << 8) + numbers[20].to_i
|
2009-03-06 06:56:38 +03:00
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
return host, port
|
|
|
|
end
|
|
|
|
private :parse228
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def parse229(resp)
|
|
|
|
if resp[0, 3] != "229"
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
left = resp.index("(")
|
|
|
|
right = resp.index(")")
|
|
|
|
if left == nil or right == nil
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
numbers = resp[left + 1 .. right - 1].split(resp[left + 1, 1])
|
|
|
|
if numbers.length != 4
|
|
|
|
raise FTPProtoError, resp
|
|
|
|
end
|
|
|
|
port = numbers[3].to_i
|
|
|
|
host = (@sock.peeraddr())[3]
|
|
|
|
return host, port
|
|
|
|
end
|
2000-07-10 08:49:24 +04:00
|
|
|
private :parse229
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2000-02-08 09:03:42 +03:00
|
|
|
def parse257(resp)
|
|
|
|
if resp[0, 3] != "257"
|
|
|
|
raise FTPReplyError, resp
|
|
|
|
end
|
|
|
|
if resp[3, 2] != ' "'
|
|
|
|
return ""
|
|
|
|
end
|
|
|
|
dirname = ""
|
|
|
|
i = 5
|
|
|
|
n = resp.length
|
|
|
|
while i < n
|
|
|
|
c = resp[i, 1]
|
|
|
|
i = i + 1
|
|
|
|
if c == '"'
|
|
|
|
if i > n or resp[i, 1] != '"'
|
|
|
|
break
|
|
|
|
end
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
dirname = dirname + c
|
|
|
|
end
|
|
|
|
return dirname
|
|
|
|
end
|
|
|
|
private :parse257
|
|
|
|
|
2010-02-06 18:26:20 +03:00
|
|
|
# :stopdoc:
|
|
|
|
class NullSocket
|
|
|
|
def method_missing(mid, *args)
|
|
|
|
raise FTPConnectionError, "not connected"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# :startdoc:
|
|
|
|
end
|
2000-02-08 09:03:42 +03:00
|
|
|
end
|
2003-01-31 17:33:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Documentation comments:
|
|
|
|
# - sourced from pickaxe and nutshell, with improvements (hopefully)
|
|
|
|
# - three methods should be private (search WRITEME)
|
|
|
|
# - two methods need more information (search TODO)
|