class URI::HTTP

HTTP URI 的语法在 RFC1738 第 3.3 节中定义。

请注意,Ruby URI 库允许 HTTP URL 包含用户名和密码。这不符合 RFC 的规定,但曾经在 MS04-004 安全更新之前的 Internet Explorer 5 和 6 中得到支持。请参阅 <URL:support.microsoft.com/kb/834489>。

常量

COMPONENT

URI::HTTP 可用组件的数组。

DEFAULT_PORT

URI::HTTP 的默认端口为 80。

公共类方法

build(args) 点击切换源代码

描述

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

接受的组件包括 userinfo、host、port、path、query 和 fragment。

组件应该以数组或哈希的形式提供,哈希的键是由组件名称前面加上冒号构成的。

如果使用数组,则组件必须按照 [userinfo, host, port, path, query, fragment] 的顺序传递。

示例

uri = URI::HTTP.build(host: 'www.example.com', path: '/foo/bar')

uri = URI::HTTP.build([nil, "www.example.com", nil, "/path",
  "query", 'fragment'])

目前,如果传递 userinfo 组件,此方法会生成不符合 RFC 1738 规定的无效 HTTP URI。

调用超类方法 URI::Generic::build
# File uri/http.rb, line 59
def self.build(args)
  tmp = Util.make_components_hash(self, args)
  super(tmp)
end

公共实例方法

authority() 点击切换源代码

描述

返回 HTTP uri 的 authority,如 www.rfc-editor.org/rfc/rfc3986#section-3.2 中定义。

示例

URI::HTTP.build(host: 'www.example.com', path: '/foo/bar').authority #=> "www.example.com"
URI::HTTP.build(host: 'www.example.com', port: 8000, path: '/foo/bar').authority #=> "www.example.com:8000"
URI::HTTP.build(host: 'www.example.com', port: 80, path: '/foo/bar').authority #=> "www.example.com"
# File uri/http.rb, line 97
def authority
  if port == default_port
    host
  else
    "#{host}:#{port}"
  end
end
origin() 点击切换源代码

描述

返回 HTTP uri 的 origin,如 www.rfc-editor.org/rfc/rfc6454 中定义。

示例

URI::HTTP.build(host: 'www.example.com', path: '/foo/bar').origin #=> "http://www.example.com"
URI::HTTP.build(host: 'www.example.com', port: 8000, path: '/foo/bar').origin #=> "http://www.example.com:8000"
URI::HTTP.build(host: 'www.example.com', port: 80, path: '/foo/bar').origin #=> "http://www.example.com"
URI::HTTPS.build(host: 'www.example.com', path: '/foo/bar').origin #=> "https://www.example.com"
# File uri/http.rb, line 119
def origin
  "#{scheme}://#{authority}"
end
request_uri() 点击切换源代码

描述

返回 Net::HTTP::Get 所需的 HTTP 请求的完整路径。

如果 URI 包含查询,则完整路径为 URI#path + '?' + URI#query。否则,路径仅为 URI#path。

示例

uri = URI::HTTP.build(path: '/foo/bar', query: 'test=true')
uri.request_uri #  => "/foo/bar?test=true"
# File uri/http.rb, line 77
def request_uri
  return unless @path

  url = @query ? "#@path?#@query" : @path.dup
  url.start_with?(?/.freeze) ? url : ?/ + url
end