提交 730f7255 编写于 作者: A Andrew White

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

Fix improperly configured host in generated urls
## Rails 4.0.0 (unreleased) ## ## 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 * Ensure that digest authentication responds with a 401 status when a basic
header is received. header is received.
......
...@@ -59,8 +59,9 @@ def build_host_url(options) ...@@ -59,8 +59,9 @@ def build_host_url(options)
result = "" result = ""
unless options[:only_path] unless options[:only_path]
protocol = extract_protocol(options)
unless options[:protocol] == false unless options[:protocol] == false
result << (options[:protocol] || "http") result << protocol
result << ":" unless result.match(%r{:|//}) result << ":" unless result.match(%r{:|//})
end end
result << "//" unless result.match("//") result << "//" unless result.match("//")
...@@ -83,6 +84,16 @@ def rewrite_authentication(options) ...@@ -83,6 +84,16 @@ def rewrite_authentication(options)
end end
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) def host_or_subdomain_and_domain(options)
return options[:host] if !named_host?(options[:host]) || (options[:subdomain].nil? && options[:domain].nil?) return options[:host] if !named_host?(options[:host]) || (options[:subdomain].nil? && options[:domain].nil?)
......
...@@ -48,6 +48,14 @@ def app ...@@ -48,6 +48,14 @@ def app
https! https!
assert_equal "http://www.example.com/foo", foo_url(:protocol => "http") assert_equal "http://www.example.com/foo", foo_url(:protocol => "http")
end 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
end end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册