class Bundler::URI::HTTP

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

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

常量

COMPONENT

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

DEFAULT_PORT

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

公共类方法

build(args) 点击切换源代码

描述

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

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

组件应以数组形式或以哈希形式提供,其中键由在组件名称前加上冒号构成。

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

示例

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

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

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

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

公共实例方法

authority() 点击切换源代码

描述

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

示例

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

描述

根据 www.rfc-editor.org/rfc/rfc6454 中的定义,返回 HTTP URI 的 origin。

示例

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

描述

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

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

示例

uri = Bundler::URI::HTTP.build(path: '/foo/bar', query: 'test=true')
uri.request_uri #  => "/foo/bar?test=true"
# File bundler/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