2013-02-19 04:53:05 -05:00
|
|
|
require 'active_support/core_ext/module/attribute_accessors'
|
|
|
|
require 'active_support/core_ext/hash/slice'
|
|
|
|
|
2010-01-16 07:17:03 -05:00
|
|
|
module ActionDispatch
|
|
|
|
module Http
|
|
|
|
module URL
|
2013-04-18 12:02:21 -04:00
|
|
|
IP_HOST_REGEXP = /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/
|
|
|
|
HOST_REGEXP = /(^.*:\/\/)?([^:]+)(?::(\d+$))?/
|
|
|
|
PROTOCOL_REGEXP = /^([^:]+)(:)?(\/\/)?$/
|
2012-01-12 11:35:43 -05:00
|
|
|
|
2010-07-27 10:39:28 -04:00
|
|
|
mattr_accessor :tld_length
|
2010-11-16 05:49:08 -05:00
|
|
|
self.tld_length = 1
|
2010-07-27 10:39:28 -04:00
|
|
|
|
2010-12-03 07:27:43 -05:00
|
|
|
class << self
|
|
|
|
def extract_domain(host, tld_length = @@tld_length)
|
2012-11-16 06:35:26 -05:00
|
|
|
host.split('.').last(1 + tld_length).join('.') if named_host?(host)
|
2010-12-03 07:27:43 -05:00
|
|
|
end
|
2010-11-22 18:31:03 -05:00
|
|
|
|
2010-12-03 07:27:43 -05:00
|
|
|
def extract_subdomains(host, tld_length = @@tld_length)
|
2012-11-16 06:35:26 -05:00
|
|
|
if named_host?(host)
|
|
|
|
parts = host.split('.')
|
|
|
|
parts[0..-(tld_length + 2)]
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
2010-12-03 07:27:43 -05:00
|
|
|
end
|
2010-11-22 18:31:03 -05:00
|
|
|
|
2010-12-03 07:27:43 -05:00
|
|
|
def extract_subdomain(host, tld_length = @@tld_length)
|
|
|
|
extract_subdomains(host, tld_length).join('.')
|
2010-11-30 10:36:01 -05:00
|
|
|
end
|
|
|
|
|
2014-05-09 20:12:08 -04:00
|
|
|
def url_for(options)
|
2014-05-20 18:23:38 -04:00
|
|
|
unless options[:host] || options[:only_path]
|
|
|
|
raise ArgumentError, 'Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true'
|
|
|
|
end
|
|
|
|
|
2014-05-09 20:12:08 -04:00
|
|
|
path = options[:script_name].to_s.chomp("/")
|
|
|
|
path << options[:path].to_s
|
2010-11-30 10:36:01 -05:00
|
|
|
|
2012-04-24 10:09:34 -04:00
|
|
|
result = build_host_url(options)
|
2014-05-09 20:31:13 -04:00
|
|
|
|
2013-01-02 15:37:56 -05:00
|
|
|
if options[:trailing_slash]
|
|
|
|
if path.include?('?')
|
|
|
|
result << path.sub(/\?/, '/\&')
|
|
|
|
else
|
|
|
|
result << path.sub(/[^\/]\z|\A\z/, '\&/')
|
|
|
|
end
|
2013-01-02 15:11:16 -05:00
|
|
|
else
|
|
|
|
result << path
|
|
|
|
end
|
2014-05-09 20:31:13 -04:00
|
|
|
|
|
|
|
if options.key? :params
|
|
|
|
params = options[:params].is_a?(Hash) ?
|
|
|
|
options[:params] :
|
|
|
|
{ params: options[:params] }
|
|
|
|
|
|
|
|
params.reject! { |_,v| v.to_param.nil? }
|
|
|
|
result << "?#{params.to_query}" unless params.empty?
|
|
|
|
end
|
|
|
|
|
2012-04-24 10:09:34 -04:00
|
|
|
result << "##{Journey::Router::Utils.escape_fragment(options[:anchor].to_param.to_s)}" if options[:anchor]
|
|
|
|
result
|
2010-12-03 07:27:43 -05:00
|
|
|
end
|
2010-11-30 10:36:01 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2012-04-24 10:09:34 -04:00
|
|
|
def build_host_url(options)
|
|
|
|
result = ""
|
|
|
|
|
|
|
|
unless options[:only_path]
|
2013-04-18 12:02:21 -04:00
|
|
|
if match = options[:host].match(HOST_REGEXP)
|
|
|
|
options[:protocol] ||= match[1] unless options[:protocol] == false
|
|
|
|
options[:host] = match[2]
|
|
|
|
options[:port] = match[3] unless options.key?(:port)
|
2012-04-24 10:09:34 -04:00
|
|
|
end
|
2013-04-18 12:02:21 -04:00
|
|
|
|
|
|
|
options[:protocol] = normalize_protocol(options)
|
|
|
|
options[:host] = normalize_host(options)
|
|
|
|
options[:port] = normalize_port(options)
|
|
|
|
|
|
|
|
result << options[:protocol]
|
2014-05-20 18:20:16 -04:00
|
|
|
|
|
|
|
if options[:user] && options[:password]
|
|
|
|
result << "#{Rack::Utils.escape(options[:user])}:#{Rack::Utils.escape(options[:password])}@"
|
|
|
|
end
|
|
|
|
|
2013-04-18 12:02:21 -04:00
|
|
|
result << options[:host]
|
|
|
|
result << ":#{options[:port]}" if options[:port]
|
2012-04-24 10:09:34 -04:00
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2010-12-03 07:27:43 -05:00
|
|
|
def named_host?(host)
|
2012-01-12 11:36:05 -05:00
|
|
|
host && IP_HOST_REGEXP !~ host
|
2010-12-03 07:27:43 -05:00
|
|
|
end
|
|
|
|
|
2013-04-18 12:02:21 -04:00
|
|
|
def same_host?(options)
|
|
|
|
(options[:subdomain] == true || !options.key?(:subdomain)) && options[:domain].nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def normalize_protocol(options)
|
|
|
|
case options[:protocol]
|
|
|
|
when nil
|
|
|
|
"http://"
|
|
|
|
when false, "//"
|
|
|
|
"//"
|
|
|
|
when PROTOCOL_REGEXP
|
|
|
|
"#{$1}://"
|
|
|
|
else
|
|
|
|
raise ArgumentError, "Invalid :protocol option: #{options[:protocol].inspect}"
|
2013-03-18 17:09:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-18 12:02:21 -04:00
|
|
|
def normalize_host(options)
|
|
|
|
return options[:host] if !named_host?(options[:host]) || same_host?(options)
|
2010-11-30 10:36:01 -05:00
|
|
|
|
|
|
|
tld_length = options[:tld_length] || @@tld_length
|
|
|
|
|
|
|
|
host = ""
|
2013-04-18 12:02:21 -04:00
|
|
|
if options[:subdomain] == true || !options.key?(:subdomain)
|
|
|
|
host << extract_subdomain(options[:host], tld_length).to_param
|
|
|
|
elsif options[:subdomain].present?
|
|
|
|
host << options[:subdomain].to_param
|
2011-10-04 04:16:34 -04:00
|
|
|
end
|
2013-04-18 12:02:21 -04:00
|
|
|
host << "." unless host.empty?
|
2011-10-04 05:31:47 -04:00
|
|
|
host << (options[:domain] || extract_domain(options[:host], tld_length))
|
2010-11-30 10:36:01 -05:00
|
|
|
host
|
|
|
|
end
|
2013-04-18 12:02:21 -04:00
|
|
|
|
|
|
|
def normalize_port(options)
|
|
|
|
return nil if options[:port].nil? || options[:port] == false
|
|
|
|
|
|
|
|
case options[:protocol]
|
2014-05-11 07:56:33 -04:00
|
|
|
when "//"
|
|
|
|
options[:port]
|
2013-04-18 12:02:21 -04:00
|
|
|
when "https://"
|
|
|
|
options[:port].to_i == 443 ? nil : options[:port]
|
|
|
|
else
|
|
|
|
options[:port].to_i == 80 ? nil : options[:port]
|
|
|
|
end
|
|
|
|
end
|
2010-11-30 10:36:01 -05:00
|
|
|
end
|
|
|
|
|
2012-08-09 14:21:58 -04:00
|
|
|
def initialize(env)
|
|
|
|
super
|
|
|
|
@protocol = nil
|
|
|
|
@port = nil
|
|
|
|
end
|
|
|
|
|
2010-07-27 10:39:28 -04:00
|
|
|
# Returns the complete URL used for this request.
|
2010-01-16 07:17:03 -05:00
|
|
|
def url
|
2010-03-03 03:31:55 -05:00
|
|
|
protocol + host_with_port + fullpath
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns 'https://' if this is an SSL request and 'http://' otherwise.
|
|
|
|
def protocol
|
2010-09-27 11:37:40 -04:00
|
|
|
@protocol ||= ssl? ? 'https://' : 'http://'
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the \host for this request, such as "example.com".
|
|
|
|
def raw_host_with_port
|
|
|
|
if forwarded = env["HTTP_X_FORWARDED_HOST"]
|
|
|
|
forwarded.split(/,\s?/).last
|
|
|
|
else
|
|
|
|
env['HTTP_HOST'] || "#{env['SERVER_NAME'] || env['SERVER_ADDR']}:#{env['SERVER_PORT']}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the host for this request, such as example.com.
|
|
|
|
def host
|
|
|
|
raw_host_with_port.sub(/:\d+$/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a \host:\port string for this request, such as "example.com" or
|
|
|
|
# "example.com:8080".
|
|
|
|
def host_with_port
|
2010-11-24 04:10:38 -05:00
|
|
|
"#{host}#{port_string}"
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the port number of this request as an integer.
|
|
|
|
def port
|
2010-11-22 18:31:03 -05:00
|
|
|
@port ||= begin
|
|
|
|
if raw_host_with_port =~ /:(\d+)$/
|
|
|
|
$1.to_i
|
|
|
|
else
|
|
|
|
standard_port
|
|
|
|
end
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the standard \port number for this request's protocol.
|
|
|
|
def standard_port
|
|
|
|
case protocol
|
|
|
|
when 'https://' then 443
|
|
|
|
else 80
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-08-19 10:29:54 -04:00
|
|
|
# Returns whether this request is using the standard port
|
|
|
|
def standard_port?
|
|
|
|
port == standard_port
|
|
|
|
end
|
|
|
|
|
2010-11-24 04:10:38 -05:00
|
|
|
# Returns a number \port suffix like 8080 if the \port number of this request
|
2010-01-16 07:17:03 -05:00
|
|
|
# is not the default HTTP \port 80 or HTTPS \port 443.
|
2010-11-22 18:31:03 -05:00
|
|
|
def optional_port
|
|
|
|
standard_port? ? nil : port
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
2010-11-24 04:10:38 -05:00
|
|
|
# Returns a string \port suffix, including colon, like ":8080" if the \port
|
|
|
|
# number of this request is not the default HTTP \port 80 or HTTPS \port 443.
|
|
|
|
def port_string
|
|
|
|
standard_port? ? '' : ":#{port}"
|
|
|
|
end
|
|
|
|
|
2010-01-16 07:17:03 -05:00
|
|
|
def server_port
|
|
|
|
@env['SERVER_PORT'].to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the \domain part of a \host, such as "rubyonrails.org" in "www.rubyonrails.org". You can specify
|
|
|
|
# a different <tt>tld_length</tt>, such as 2 to catch rubyonrails.co.uk in "www.rubyonrails.co.uk".
|
2010-11-16 05:49:08 -05:00
|
|
|
def domain(tld_length = @@tld_length)
|
2010-11-22 18:31:03 -05:00
|
|
|
ActionDispatch::Http::URL.extract_domain(host, tld_length)
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns all the \subdomains as an array, so <tt>["dev", "www"]</tt> would be
|
|
|
|
# returned for "dev.www.rubyonrails.org". You can specify a different <tt>tld_length</tt>,
|
|
|
|
# such as 2 to catch <tt>["www"]</tt> instead of <tt>["www", "rubyonrails"]</tt>
|
|
|
|
# in "www.rubyonrails.co.uk".
|
2010-07-27 10:39:28 -04:00
|
|
|
def subdomains(tld_length = @@tld_length)
|
2010-11-22 18:31:03 -05:00
|
|
|
ActionDispatch::Http::URL.extract_subdomains(host, tld_length)
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
|
2010-11-22 18:31:03 -05:00
|
|
|
# Returns all the \subdomains as a string, so <tt>"dev.www"</tt> would be
|
|
|
|
# returned for "dev.www.rubyonrails.org". You can specify a different <tt>tld_length</tt>,
|
2011-05-04 15:53:10 -04:00
|
|
|
# such as 2 to catch <tt>"www"</tt> instead of <tt>"www.rubyonrails"</tt>
|
2010-11-22 18:31:03 -05:00
|
|
|
# in "www.rubyonrails.co.uk".
|
2010-07-27 10:39:28 -04:00
|
|
|
def subdomain(tld_length = @@tld_length)
|
2012-01-12 11:47:25 -05:00
|
|
|
ActionDispatch::Http::URL.extract_subdomain(host, tld_length)
|
2010-02-28 18:16:34 -05:00
|
|
|
end
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
end
|
2010-10-26 14:31:05 -04:00
|
|
|
end
|