- 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"
来源:显示 | 在 GitHub 上
# 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"
来源:显示 | 在 GitHub 上
# 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"]
来源:显示 | 在 GitHub 上
# 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) 链接
来源:显示 | 在 GitHub 上
# 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() 链接
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/url.rb, line 181 def initialize super @protocol = nil @port = nil end
path_for(options) 链接
来源:显示 | 在 GitHub 上
# 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) 链接
来源:显示 | 在 GitHub 上
# 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) 链接
返回主机的域名部分,例如 “rubyonrails.org” 在 “www.rubyonrails.org” 中。您可以指定不同的 tld_length
,例如 2 来捕获 “www.rubyonrails.co.uk” 中的 rubyonrails.co.uk。
来源:显示 | 在 GitHub 上
# 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"
来源:显示 | 在 GitHub 上
# 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"
来源:显示 | 在 GitHub 上
# 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
来源:显示 | 在 GitHub 上
# 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
来源:显示 | 在 GitHub 上
# 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"
来源:显示 | 在 GitHub 上
# 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://"
来源:显示 | 在 GitHub 上
# 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"
来源:显示 | 在 GitHub 上
# 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
来源:显示 | 在 GitHub 上
# 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
来源:显示 | 在 GitHub 上
# 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
来源:显示 | 在 GitHub 上
# 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"
。
来源:显示 | 在 GitHub 上
# 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"]
。
来源:显示 | 在 GitHub 上
# 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() 链接
返回用于此请求的完整 URL
。
req = ActionDispatch::Request.new 'HTTP_HOST' => 'example.com'
req.url # => "http://example.com"
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/url.rb, line 191 def url protocol + host_with_port + fullpath end