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
|
|
|
|
2014-05-05 18:25:29 -04:00
|
|
|
add_trailing_slash(path) if options[:trailing_slash]
|
2014-05-09 20:31:13 -04:00
|
|
|
|
2014-05-20 18:43:46 -04:00
|
|
|
result = path
|
|
|
|
|
|
|
|
unless options[:only_path]
|
|
|
|
result.prepend build_host_url(options)
|
|
|
|
end
|
2014-05-20 18:33:30 -04:00
|
|
|
|
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
|
|
|
|
|
2014-05-05 18:25:29 -04:00
|
|
|
def add_trailing_slash(path)
|
|
|
|
# includes querysting
|
|
|
|
if path.include?('?')
|
|
|
|
path.sub!(/\?/, '/\&')
|
|
|
|
# does not have a .format
|
|
|
|
elsif !path.include?(".")
|
|
|
|
path.sub!(/[^\/]\z|\A\z/, '\&/')
|
|
|
|
end
|
|
|
|
|
|
|
|
path
|
|
|
|
end
|
|
|
|
|
2012-04-24 10:09:34 -04:00
|
|
|
def build_host_url(options)
|
2014-06-11 14:42:49 -04:00
|
|
|
protocol = options[:protocol]
|
2014-06-11 14:48:39 -04:00
|
|
|
host = options[:host]
|
|
|
|
if match = host.match(HOST_REGEXP)
|
2014-06-11 14:42:49 -04:00
|
|
|
protocol ||= match[1] unless protocol == false
|
2014-06-11 14:48:39 -04:00
|
|
|
host = match[2]
|
2014-05-20 18:29:40 -04:00
|
|
|
options[:port] = match[3] unless options.key?(:port)
|
|
|
|
end
|
2012-04-24 10:09:34 -04:00
|
|
|
|
2014-06-11 14:42:49 -04:00
|
|
|
protocol = normalize_protocol protocol
|
2014-06-11 14:48:39 -04:00
|
|
|
host = normalize_host(host, options)
|
2013-04-18 12:02:21 -04:00
|
|
|
|
2014-06-11 14:36:50 -04:00
|
|
|
result = protocol.dup
|
2013-04-18 12:02:21 -04:00
|
|
|
|
2014-05-20 18:29:40 -04:00
|
|
|
if options[:user] && options[:password]
|
|
|
|
result << "#{Rack::Utils.escape(options[:user])}:#{Rack::Utils.escape(options[:password])}@"
|
|
|
|
end
|
2014-05-20 18:20:16 -04:00
|
|
|
|
2014-06-11 14:48:39 -04:00
|
|
|
result << host
|
2014-06-11 14:36:50 -04:00
|
|
|
normalize_port(options[:port], protocol) { |port|
|
2014-06-11 14:33:22 -04:00
|
|
|
result << ":#{port}"
|
|
|
|
}
|
2014-05-20 18:20:16 -04:00
|
|
|
|
2012-04-24 10:09:34 -04:00
|
|
|
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
|
|
|
|
|
2014-06-11 14:36:50 -04:00
|
|
|
def normalize_protocol(protocol)
|
|
|
|
case protocol
|
2013-04-18 12:02:21 -04:00
|
|
|
when nil
|
|
|
|
"http://"
|
|
|
|
when false, "//"
|
|
|
|
"//"
|
|
|
|
when PROTOCOL_REGEXP
|
|
|
|
"#{$1}://"
|
|
|
|
else
|
2014-06-11 14:36:50 -04:00
|
|
|
raise ArgumentError, "Invalid :protocol option: #{protocol.inspect}"
|
2013-03-18 17:09:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-11 14:48:39 -04:00
|
|
|
def normalize_host(_host, options)
|
2014-06-11 16:55:46 -04:00
|
|
|
return _host unless named_host?(_host)
|
2010-11-30 10:36:01 -05:00
|
|
|
|
|
|
|
tld_length = options[:tld_length] || @@tld_length
|
|
|
|
|
2014-06-11 16:55:46 -04:00
|
|
|
host = nil
|
2013-04-18 12:02:21 -04:00
|
|
|
if options[:subdomain] == true || !options.key?(:subdomain)
|
2014-06-11 16:55:46 -04:00
|
|
|
return _host if options[:domain].nil?
|
|
|
|
host = extract_subdomain(_host, tld_length).to_param
|
2013-04-18 12:02:21 -04:00
|
|
|
elsif options[:subdomain].present?
|
2014-06-11 16:55:46 -04:00
|
|
|
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?
|
2014-06-11 14:48:39 -04:00
|
|
|
host << (options[:domain] || extract_domain(_host, tld_length))
|
2010-11-30 10:36:01 -05:00
|
|
|
host
|
|
|
|
end
|
2013-04-18 12:02:21 -04:00
|
|
|
|
2014-06-11 14:27:07 -04:00
|
|
|
def normalize_port(port, protocol)
|
2014-06-11 14:33:22 -04:00
|
|
|
return unless port
|
2013-04-18 12:02:21 -04:00
|
|
|
|
2014-06-11 14:27:07 -04:00
|
|
|
case protocol
|
2014-06-11 14:33:22 -04:00
|
|
|
when "//" then yield port
|
2013-04-18 12:02:21 -04:00
|
|
|
when "https://"
|
2014-06-11 14:33:22 -04:00
|
|
|
yield port unless port.to_i == 443
|
2013-04-18 12:02:21 -04:00
|
|
|
else
|
2014-06-11 14:33:22 -04:00
|
|
|
yield port unless port.to_i == 80
|
2013-04-18 12:02:21 -04:00
|
|
|
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
|