class Gem::URI::HTTP

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

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

常量

COMPONENT

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

DEFAULT_PORT

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

公共类方法

build(args) 单击以切换源代码

描述

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

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

这些组件应该以数组形式提供,或者以键为组件名称前加冒号的 Hash 形式提供。

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

示例

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

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

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

调用超类方法 Gem::URI::Generic::build
# File rubygems/vendor/uri/lib/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 中定义。

示例

Gem::URI::HTTP.build(host: 'www.example.com', path: '/foo/bar').authority #=> "www.example.com"
Gem::URI::HTTP.build(host: 'www.example.com', port: 8000, path: '/foo/bar').authority #=> "www.example.com:8000"
Gem::URI::HTTP.build(host: 'www.example.com', port: 80, path: '/foo/bar').authority #=> "www.example.com"
# File rubygems/vendor/uri/lib/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 中定义。

示例

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

描述

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

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

示例

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

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