- 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 121 def extract_domain(host, tld_length) extract_domain_from(host, tld_length) if named_host?(host) end
extract_subdomain(host, tld_length) 链接
给定域名级别,将主机的子域名作为 String 返回。
# 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 145 def extract_subdomain(host, tld_length) extract_subdomains(host, tld_length).join(".") end
extract_subdomains(host, tld_length) 链接
给定域名级别,将主机的子域名作为 Array 返回。
# 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 131 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 157 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 277 def initialize super @protocol = nil @port = nil end
path_for(options) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/url.rb, line 169 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 149 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 来捕获 “rubyonrails.co.uk” 在 “www.rubyonrails.co.uk” 中。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/url.rb, line 420 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 324 def host raw_host_with_port.sub(/:\d+$/, "") end
host_with_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 340 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 390 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 351 def port @port ||= if raw_host_with_port =~ /:(\d+)$/ $1.to_i else standard_port end end
port_string() 链接
返回一个字符串端口后缀,包括冒号,例如 “:8080”,如果此请求的端口号不是默认的 HTTP 端口 80 或 HTTPS 端口 443。
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 402 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 298 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 312 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 413 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 363 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 378 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 435 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 428 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 287 def url protocol + host_with_port + fullpath end