1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #9794 from schneems/schneems/email-host

Fix improperly configured host in generated urls
This commit is contained in:
Andrew White 2013-03-19 18:48:49 -07:00
commit 730f725509
3 changed files with 26 additions and 1 deletions

View file

@ -1,5 +1,11 @@
## Rails 4.0.0 (unreleased) ##
* Allow default url options to accept host with protocol such as `http://`
config.action_mailer.default_url_options = { host: "http://mydomain.com" }
*Richard Schneeman*
* Ensure that digest authentication responds with a 401 status when a basic
header is received.

View file

@ -59,8 +59,9 @@ module ActionDispatch
result = ""
unless options[:only_path]
protocol = extract_protocol(options)
unless options[:protocol] == false
result << (options[:protocol] || "http")
result << protocol
result << ":" unless result.match(%r{:|//})
end
result << "//" unless result.match("//")
@ -83,6 +84,16 @@ module ActionDispatch
end
end
# Extracts protocol http:// or https:// from options[:host]
# needs to be called whether the :protocol is being used or not
def extract_protocol(options)
if options[:host] && match = options[:host].match(/(^.*:\/\/)(.*)/)
options[:protocol] ||= match[1]
options[:host] = match[2]
end
options[:protocol] || "http"
end
def host_or_subdomain_and_domain(options)
return options[:host] if !named_host?(options[:host]) || (options[:subdomain].nil? && options[:domain].nil?)

View file

@ -48,6 +48,14 @@ module TestUrlGeneration
https!
assert_equal "http://www.example.com/foo", foo_url(:protocol => "http")
end
test "extracting protocol from host when protocol not present" do
assert_equal "httpz://www.example.com/foo", foo_url(host: "httpz://www.example.com", protocol: nil)
end
test "formatting host when protocol is present" do
assert_equal "http://www.example.com/foo", foo_url(host: "httpz://www.example.com", protocol: "http://")
end
end
end