aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-07-17 10:47:58 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-07-17 10:47:58 -0700
commit2888f8653e2e0a6394e41cb4e8db2e2d81313eb7 (patch)
tree799fa297dcc3054307a759f64cb7edff19b9e8af /actionpack/lib/action_dispatch/routing
parenta9765c54ea17153a69932730e1f5291c1f0055b0 (diff)
downloadrails-2888f8653e2e0a6394e41cb4e8db2e2d81313eb7.tar.gz
rails-2888f8653e2e0a6394e41cb4e8db2e2d81313eb7.tar.bz2
rails-2888f8653e2e0a6394e41cb4e8db2e2d81313eb7.zip
use a strategy object for generating urls in named helpers
since we know that the route should be a path or fully qualified, we can pass a strategy object that handles generation. This allows us to eliminate an "if only_path" branch when generating urls.
Diffstat (limited to 'actionpack/lib/action_dispatch/routing')
-rw-r--r--actionpack/lib/action_dispatch/routing/route_set.rb37
1 files changed, 24 insertions, 13 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb
index 4fb32a76eb..3ecf6a76f1 100644
--- a/actionpack/lib/action_dispatch/routing/route_set.rb
+++ b/actionpack/lib/action_dispatch/routing/route_set.rb
@@ -134,11 +134,11 @@ module ActionDispatch
end
class UrlHelper # :nodoc:
- def self.create(route, options)
+ def self.create(route, options, url_strategy)
if optimize_helper?(route)
- OptimizedUrlHelper.new(route, options)
+ OptimizedUrlHelper.new(route, options, url_strategy)
else
- new route, options
+ new route, options, url_strategy
end
end
@@ -146,10 +146,12 @@ module ActionDispatch
!route.glob? && route.path.requirements.empty?
end
+ attr_reader :url_strategy
+
class OptimizedUrlHelper < UrlHelper # :nodoc:
attr_reader :arg_size
- def initialize(route, options)
+ def initialize(route, options, url_strategy)
super
@required_parts = @route.required_parts
@arg_size = @required_parts.size
@@ -159,7 +161,7 @@ module ActionDispatch
if args.size == arg_size && !inner_options && optimize_routes_generation?(t)
options = t.url_options.merge @options
options[:path] = optimized_helper(args)
- ActionDispatch::Http::URL.url_for(options)
+ url_strategy.call options
else
super
end
@@ -201,10 +203,11 @@ module ActionDispatch
end
end
- def initialize(route, options)
+ def initialize(route, options, url_strategy)
@options = options
@segment_keys = route.segment_keys.uniq
@route = route
+ @url_strategy = url_strategy
end
def call(t, args, inner_options)
@@ -216,7 +219,7 @@ module ActionDispatch
options,
@segment_keys)
- t._routes.url_for(hash)
+ t._routes.url_for(hash, url_strategy)
end
def handle_positional_args(controller_options, inner_options, args, result, path_params)
@@ -249,8 +252,8 @@ module ActionDispatch
#
# foo_url(bar, baz, bang, sort_by: 'baz')
#
- def define_url_helper(route, name, opts)
- helper = UrlHelper.create(route, opts)
+ def define_url_helper(route, name, opts, url_strategy)
+ helper = UrlHelper.create(route, opts, url_strategy)
@module.remove_possible_method name
@module.module_eval do
@@ -266,12 +269,20 @@ module ActionDispatch
def define_named_route_methods(name, route)
define_url_helper route, :"#{name}_path",
- route.defaults.merge(:use_route => name, :only_path => true)
+ route.defaults.merge(:use_route => name), PATH
+
define_url_helper route, :"#{name}_url",
- route.defaults.merge(:use_route => name, :only_path => false)
+ route.defaults.merge(:use_route => name), FULL
end
end
+ # :stopdoc:
+ # strategy for building urls to send to the client
+ PATH = ->(options) { ActionDispatch::Http::URL.path_for(options) }
+ FULL = ->(options) { ActionDispatch::Http::URL.full_url_for(options) }
+ UNKNOWN = ->(options) { ActionDispatch::Http::URL.url_for(options) }
+ # :startdoc:
+
attr_accessor :formatter, :set, :named_routes, :default_scope, :router
attr_accessor :disable_clear_and_finalize, :resources_path_names
attr_accessor :default_url_options, :request_class
@@ -643,7 +654,7 @@ module ActionDispatch
end
# The +options+ argument must be a hash whose keys are *symbols*.
- def url_for(options)
+ def url_for(options, url_strategy = UNKNOWN)
options = default_url_options.merge options
user = password = nil
@@ -677,7 +688,7 @@ module ActionDispatch
options[:user] = user
options[:password] = password
- ActionDispatch::Http::URL.url_for(options)
+ url_strategy.call options
end
def call(env)