aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-08-12 16:29:33 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-08-12 16:54:35 -0700
commitec895189e4bed93f40ba96af7319a5fc046ad621 (patch)
tree8778893fafff46fb67c3cbbe7062e076fd78c2fa /actionpack
parentd61e3c79dc85a5ae86ed00fc9352a5d1d84c0f3f (diff)
downloadrails-ec895189e4bed93f40ba96af7319a5fc046ad621.tar.gz
rails-ec895189e4bed93f40ba96af7319a5fc046ad621.tar.bz2
rails-ec895189e4bed93f40ba96af7319a5fc046ad621.zip
pull `formatted` up the stack
this reduces the number of times we have to mutate the options hash.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb27
-rw-r--r--actionpack/test/dispatch/mapper_test.rb11
2 files changed, 23 insertions, 15 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index 00fe350276..af4c7eb564 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -61,9 +61,7 @@ module ActionDispatch
attr_reader :requirements, :conditions, :defaults
attr_reader :to, :default_controller, :default_action, :as, :anchor
- def self.build(scope, set, path, as, controller, default_action, to, via, options)
- formatted = options.delete(:format) { scope.mapping_option(:format) }
-
+ def self.build(scope, set, path, as, controller, default_action, to, via, formatted, options)
options = scope[:options].merge(options) if scope[:options]
options.delete :shallow_path
@@ -1551,29 +1549,30 @@ module ActionDispatch
via = Mapping.check_via Array(options.delete(:via) {
@scope[:via]
})
+ formatted = options.delete(:format) { @scope.mapping_option(:format) }
path_types = paths.group_by(&:class)
path_types.fetch(String, []).each do |_path|
route_options = options.dup
- process_path(route_options, controller, _path, option_path || _path, to, via)
+ process_path(route_options, controller, _path, option_path || _path, to, via, formatted)
end
path_types.fetch(Symbol, []).each do |action|
route_options = options.dup
- decomposed_match(action, controller, route_options, option_path, to, via)
+ decomposed_match(action, controller, route_options, option_path, to, via, formatted)
end
self
end
- def process_path(options, controller, path, option_path, to, via)
+ def process_path(options, controller, path, option_path, to, via, formatted)
path_without_format = path.sub(/\(\.:format\)$/, '')
if using_match_shorthand?(path_without_format, to, options[:action])
to ||= path_without_format.gsub(%r{^/}, "").sub(%r{/([^/]*)$}, '#\1')
to.tr!("-", "_")
end
- decomposed_match(path, controller, options, option_path, to, via)
+ decomposed_match(path, controller, options, option_path, to, via, formatted)
end
def using_match_shorthand?(path, to, action)
@@ -1582,22 +1581,22 @@ module ActionDispatch
path =~ %r{^/?[-\w]+/[-\w/]+$}
end
- def decomposed_match(path, controller, options, _path, to, via) # :nodoc:
+ def decomposed_match(path, controller, options, _path, to, via, formatted) # :nodoc:
if on = options.delete(:on)
- send(on) { decomposed_match(path, controller, options, _path, to, via) }
+ send(on) { decomposed_match(path, controller, options, _path, to, via, formatted) }
else
case @scope.scope_level
when :resources
- nested { decomposed_match(path, controller, options, _path, to, via) }
+ nested { decomposed_match(path, controller, options, _path, to, via, formatted) }
when :resource
- member { decomposed_match(path, controller, options, _path, to, via) }
+ member { decomposed_match(path, controller, options, _path, to, via, formatted) }
else
- add_route(path, controller, options, _path, to, via)
+ add_route(path, controller, options, _path, to, via, formatted)
end
end
end
- def add_route(action, controller, options, _path, to, via) # :nodoc:
+ def add_route(action, controller, options, _path, to, via, formatted) # :nodoc:
path = path_for_action(action, _path)
raise ArgumentError, "path is required" if path.blank?
@@ -1617,7 +1616,7 @@ module ActionDispatch
name_for_action(options.delete(:as), action)
end
- mapping = Mapping.build(@scope, @set, URI.parser.escape(path), as, controller, default_action, to, via, options)
+ mapping = Mapping.build(@scope, @set, URI.parser.escape(path), as, controller, default_action, to, via, formatted, options)
app, conditions, requirements, defaults, as, anchor = mapping.to_route
@set.add_route(app, conditions, requirements, defaults, as, anchor)
end
diff --git a/actionpack/test/dispatch/mapper_test.rb b/actionpack/test/dispatch/mapper_test.rb
index edc6987e97..6ce0e34ec3 100644
--- a/actionpack/test/dispatch/mapper_test.rb
+++ b/actionpack/test/dispatch/mapper_test.rb
@@ -52,6 +52,15 @@ module ActionDispatch
end
end
+ def test_unscoped_formatted
+ fakeset = FakeSet.new
+ mapper = Mapper.new fakeset
+ mapper.get '/foo', :to => 'posts#index', :as => :main, :format => true
+ assert_equal({:controller=>"posts", :action=>"index"},
+ fakeset.defaults.first)
+ assert_equal "/foo.:format", fakeset.conditions.first[:path_info]
+ end
+
def test_scoped_formatted
fakeset = FakeSet.new
mapper = Mapper.new fakeset
@@ -77,7 +86,7 @@ module ActionDispatch
def test_mapping_requirements
options = { }
scope = Mapper::Scope.new({})
- m = Mapper::Mapping.build(scope, FakeSet.new, '/store/:name(*rest)', nil, 'foo', 'bar', nil, [:get], options)
+ m = Mapper::Mapping.build(scope, FakeSet.new, '/store/:name(*rest)', nil, 'foo', 'bar', nil, [:get], nil, options)
_, _, requirements, _ = m.to_route
assert_equal(/.+?/, requirements[:rest])
end