跳至內容 跳至搜尋
方法
D
E
F
H
N
O
P
R
S
U

常數

HOST_REGEXP = /(^[^:]+:\/\/)?(\[[^\]]+\]|[^:]+)(?::(\d+$))?/
 
IP_HOST_REGEXP = /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/
 
PROTOCOL_REGEXP = /^([^:]+)(:)?(\/\/)?$/
 

類別公開方法

extract_domain(host, tld_length)

在給定網域層級的情況下,返回主機的網域名稱部分。

# Top-level domain example
extract_domain('www.example.com', 1) # => "example.com"
# Second-level domain example
extract_domain('dev.www.example.co.uk', 2) # => "example.co.uk"
# File actionpack/lib/action_dispatch/http/url.rb, line 24
def extract_domain(host, tld_length)
  extract_domain_from(host, tld_length) if named_host?(host)
end

extract_subdomain(host, tld_length)

在給定網域層級的情況下,將主機的子網域作為 字串 返回。

# Top-level domain example
extract_subdomain('www.example.com', 1) # => "www"
# Second-level domain example
extract_subdomain('dev.www.example.co.uk', 2) # => "dev.www"
# File actionpack/lib/action_dispatch/http/url.rb, line 48
def extract_subdomain(host, tld_length)
  extract_subdomains(host, tld_length).join(".")
end

extract_subdomains(host, tld_length)

在給定網域層級的情況下,將主機的子網域作為 陣列 返回。

# Top-level domain example
extract_subdomains('www.example.com', 1) # => ["www"]
# Second-level domain example
extract_subdomains('dev.www.example.co.uk', 2) # => ["dev", "www"]
# File actionpack/lib/action_dispatch/http/url.rb, line 34
def extract_subdomains(host, tld_length)
  if named_host?(host)
    extract_subdomains_from(host, tld_length)
  else
    []
  end
end

full_url_for(options)

# File actionpack/lib/action_dispatch/http/url.rb, line 60
def full_url_for(options)
  host     = options[:host]
  protocol = options[:protocol]
  port     = options[:port]

  unless host
    raise ArgumentError, "Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true"
  end

  build_host_url(host, port, protocol, options, path_for(options))
end

new()

# File actionpack/lib/action_dispatch/http/url.rb, line 181
def initialize
  super
  @protocol = nil
  @port     = nil
end

path_for(options)

# File actionpack/lib/action_dispatch/http/url.rb, line 72
def path_for(options)
  path = options[:script_name].to_s.chomp("/")
  path << options[:path] if options.key?(:path)

  path = "/" if options[:trailing_slash] && path.blank?

  add_params(path, options[:params]) if options.key?(:params)
  add_anchor(path, options[:anchor]) if options.key?(:anchor)

  path
end

url_for(options)

# File actionpack/lib/action_dispatch/http/url.rb, line 52
def url_for(options)
  if options[:only_path]
    path_for options
  else
    full_url_for options
  end
end

實例公開方法

domain(tld_length = @@tld_length)

返回主機的網域名稱部分,例如 “www.rubyonrails.org” 中的 “rubyonrails.org”。您可以指定不同的 `tld_length`,例如 2,以便在 “www.rubyonrails.co.uk” 中擷取 rubyonrails.co.uk。

# File actionpack/lib/action_dispatch/http/url.rb, line 324
def domain(tld_length = @@tld_length)
  ActionDispatch::Http::URL.extract_domain(host, tld_length)
end

host()

返回此請求的主機,例如 “example.com”。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.host # => "example.com"
# File actionpack/lib/action_dispatch/http/url.rb, line 228
def host
  raw_host_with_port.sub(/:\d+$/, "")
end

host_with_port()

返回此請求的 host:port 字串,例如 “example.com” 或 “example.com:8080”。僅當埠號不是預設埠號(80 或 443)時才包含埠號。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.host_with_port # => "example.com"

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:80'
req.host_with_port # => "example.com"

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.host_with_port # => "example.com:8080"
# File actionpack/lib/action_dispatch/http/url.rb, line 244
def host_with_port
  "#{host}#{port_string}"
end

optional_port()

如果此請求的埠號不是預設 HTTP 埠號 80 或 HTTPS 埠號 443,則返回數字埠號後綴,例如 8080。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:80'
req.optional_port # => nil

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.optional_port # => 8080
# File actionpack/lib/action_dispatch/http/url.rb, line 294
def optional_port
  standard_port? ? nil : port
end

port()

將此請求的埠號作為整數返回。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.port # => 80

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.port # => 8080
# File actionpack/lib/action_dispatch/http/url.rb, line 255
def port
  @port ||= if raw_host_with_port =~ /:(\d+)$/
    $1.to_i
  else
    standard_port
  end
end

port_string()

如果此請求的埠號不是預設 HTTP 埠號 80 或 HTTPS 埠號 443,則返回字串埠號後綴(包含冒號),例如 “:8080”。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:80'
req.port_string # => ""

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.port_string # => ":8080"
# File actionpack/lib/action_dispatch/http/url.rb, line 306
def port_string
  standard_port? ? "" : ":#{port}"
end

protocol()

如果這是 SSL 請求,則返回 ‘https://’;否則返回 ‘http://’。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.protocol # => "http://"

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com', 'HTTPS' => 'on'
req.protocol # => "https://"
# File actionpack/lib/action_dispatch/http/url.rb, line 202
def protocol
  @protocol ||= ssl? ? "https://" : "http://"
end

raw_host_with_port()

返回此請求的主機和埠號,例如 “example.com:8080”。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.raw_host_with_port # => "example.com"

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:80'
req.raw_host_with_port # => "example.com:80"

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.raw_host_with_port # => "example.com:8080"
# File actionpack/lib/action_dispatch/http/url.rb, line 216
def raw_host_with_port
  if forwarded = x_forwarded_host.presence
    forwarded.split(/,\s?/).last
  else
    get_header("HTTP_HOST") || "#{server_name}:#{get_header('SERVER_PORT')}"
  end
end

server_port()

根據 SERVER_PORT 返回請求的埠號,例如 8080。

req = ActionDispatch::Request.new 'SERVER_PORT' => '80'
req.server_port # => 80

req = ActionDispatch::Request.new 'SERVER_PORT' => '8080'
req.server_port # => 8080
# File actionpack/lib/action_dispatch/http/url.rb, line 317
def server_port
  get_header("SERVER_PORT").to_i
end

standard_port()

返回此請求協定的標準埠號。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.standard_port # => 80
# File actionpack/lib/action_dispatch/http/url.rb, line 267
def standard_port
  if "https://" == protocol
    443
  else
    80
  end
end

standard_port?()

返回此請求是否使用標準埠號。

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:80'
req.standard_port? # => true

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com:8080'
req.standard_port? # => false
# File actionpack/lib/action_dispatch/http/url.rb, line 282
def standard_port?
  port == standard_port
end

subdomain(tld_length = @@tld_length)

將所有子網域作為字串返回,因此 “dev.www.rubyonrails.org” 將返回 `“dev.www”`。您可以指定不同的 `tld_length`,例如 2,以便在 “www.rubyonrails.co.uk” 中擷取 `“www”` 而不是 `“www.rubyonrails”`。

# File actionpack/lib/action_dispatch/http/url.rb, line 339
def subdomain(tld_length = @@tld_length)
  ActionDispatch::Http::URL.extract_subdomain(host, tld_length)
end

subdomains(tld_length = @@tld_length)

將所有子網域作為陣列返回,因此 “dev.www.rubyonrails.org” 將返回 `[“dev”, “www”]`。您可以指定不同的 `tld_length`,例如 2,以便在 “www.rubyonrails.co.uk” 中擷取 `[“www”]` 而不是 `[“www”, “rubyonrails”]`。

# File actionpack/lib/action_dispatch/http/url.rb, line 332
def subdomains(tld_length = @@tld_length)
  ActionDispatch::Http::URL.extract_subdomains(host, tld_length)
end

url()

返回此請求使用的完整 網址

req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.url # => "http://example.com"
# File actionpack/lib/action_dispatch/http/url.rb, line 191
def url
  protocol + host_with_port + fullpath
end