类 URI::FTP

FTP URI 语法由 RFC1738 第 3.2 节定义。

由于实现方式不同,此类将被重新设计;其路径的结构。draft-hoffman-ftp-uri-04 只是一个草案,但它很好地总结了事实上的规范。 tools.ietf.org/html/draft-hoffman-ftp-uri-04

常量

COMPONENT

一个 Array,包含 URI::FTP 可用的组件。

DEFAULT_PORT

URI::FTP 的默认端口为 21。

TYPECODE

类型代码为“a”、“i”或“d”。

  • “a”表示文本文件(FTP 命令为 ASCII)

  • “i”表示二进制文件(FTP 命令 IMAGE)

  • “d”表示应显示目录的内容

TYPECODE_PREFIX

类型代码前缀“;type=”。

属性

typecode[R]

类型代码访问器。

参见 URI::FTP::COMPONENT.

公共类方法

build(args) 点击切换源代码

描述

从组件创建新的 URI::FTP 对象,并进行语法检查。

接受的组件为 userinfohostportpathtypecode

组件应作为 Array 提供,或作为 Hash 提供,其键由在组件名称前加上冒号形成。

如果使用 Array,则必须按 [userinfo, host, port, path, typecode] 的顺序传递组件。

如果提供的路径是绝对路径,则将对其进行转义,以使其在 URI 中成为绝对路径。

示例

require 'uri'

uri1 = URI::FTP.build(['user:password', 'ftp.example.com', nil,
  '/path/file.zip', 'i'])
uri1.to_s  # => "ftp://user:[email protected]/%2Fpath/file.zip;type=i"

uri2 = URI::FTP.build({:host => 'ftp.example.com',
  :path => 'ruby/src'})
uri2.to_s  # => "ftp://ftp.example.com/ruby/src"
调用超类方法
# File lib/uri/ftp.rb, line 96
def self.build(args)

  # Fix the incoming path to be generic URL syntax
  # FTP path  ->  URL path
  # foo/bar       /foo/bar
  # /foo/bar      /%2Ffoo/bar
  #
  if args.kind_of?(Array)
    args[3] = '/' + args[3].sub(/^\//, '%2F')
  else
    args[:path] = '/' + args[:path].sub(/^\//, '%2F')
  end

  tmp = Util::make_components_hash(self, args)

  if tmp[:typecode]
    if tmp[:typecode].size == 1
      tmp[:typecode] = TYPECODE_PREFIX + tmp[:typecode]
    end
    tmp[:path] << tmp[:typecode]
  end

  return super(tmp)
end
new(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser = nil, arg_check = false) 点击切换源代码

描述

从通用 URL 组件创建新的 URI::FTP 对象,不进行语法检查。

与 build() 不同,此方法不会像 RFC1738 所要求的那样转义路径组件;而是根据 RFC2396 进行处理。

参数依次为 schemeuserinfohostportregistrypathopaquequeryfragment

调用超类方法
# File lib/uri/ftp.rb, line 133
def initialize(scheme,
               userinfo, host, port, registry,
               path, opaque,
               query,
               fragment,
               parser = nil,
               arg_check = false)
  raise InvalidURIError unless path
  path = path.sub(/^\//,'')
  path.sub!(/^%2F/,'/')
  super(scheme, userinfo, host, port, registry, path, opaque,
        query, fragment, parser, arg_check)
  @typecode = nil
  if tmp = @path.index(TYPECODE_PREFIX)
    typecode = @path[tmp + TYPECODE_PREFIX.size..-1]
    @path = @path[0..tmp - 1]

    if arg_check
      self.typecode = typecode
    else
      self.set_typecode(typecode)
    end
  end
end

公共实例方法

path() 点击切换源代码

返回 FTP URI 的路径。

RFC 1738 明确指出,FTP URI 的路径不包括将 URI 路径与 URI 主机分隔的 /。示例

ftp://ftp.example.com/pub/ruby

上面的 URI 指示客户端应连接到 ftp.example.com,然后从初始登录目录 cd 到 pub/ruby。

如果要 cd 到绝对目录,则必须在路径中包含转义的 / (%2F)。示例

ftp://ftp.example.com/%2Fpub/ruby

然后此方法将返回“/pub/ruby”。

# File lib/uri/ftp.rb, line 240
def path
  return @path.sub(/^\//,'').sub(/^%2F/,'/')
end
to_s() 点击切换源代码

返回 URI::FTPString 表示形式。

调用超类方法
# File lib/uri/ftp.rb, line 251
def to_s
  save_path = nil
  if @typecode
    save_path = @path
    @path = @path + TYPECODE_PREFIX + @typecode
  end
  str = super
  if @typecode
    @path = save_path
  end

  return str
end
typecode=(typecode) 点击切换源代码

参数

v

String

描述

typecode v 的公共设置器(带验证)。

另请参见 URI::FTP.check_typecode

用法

require 'uri'

uri = URI.parse("ftp://[email protected]/my_file.img")
#=> #<URI::FTP ftp://[email protected]/my_file.img>
uri.typecode = "i"
uri
#=> #<URI::FTP ftp://[email protected]/my_file.img;type=i>
# File lib/uri/ftp.rb, line 208
def typecode=(typecode)
  check_typecode(typecode)
  set_typecode(typecode)
  typecode
end

受保护的实例方法

set_path(v) 点击切换源代码

URI::FTP 路径的私有设置器。

调用超类方法
# File lib/uri/ftp.rb, line 245
def set_path(v)
  super("/" + v.sub(/^\//, "%2F"))
end
set_typecode(v) 点击切换源代码

typecode v 的私有设置器。

另请参见 URI::FTP.typecode=

# File lib/uri/ftp.rb, line 180
def set_typecode(v)
  @typecode = v
end

私有实例方法

check_typecode(v) 点击切换源代码

验证 typecode v,返回 truefalse

# File lib/uri/ftp.rb, line 166
def check_typecode(v)
  if TYPECODE.include?(v)
    return true
  else
    raise InvalidComponentError,
      "bad typecode(expected #{TYPECODE.join(', ')}): #{v}"
  end
end