2012-12-19 15:54:47 -05:00
|
|
|
require 'action_dispatch/journey'
|
2009-10-20 00:32:06 -04:00
|
|
|
require 'forwardable'
|
2012-12-13 08:47:33 -05:00
|
|
|
require 'thread_safe'
|
2010-04-16 08:44:08 -04:00
|
|
|
require 'active_support/core_ext/object/to_query'
|
2010-09-25 18:17:06 -04:00
|
|
|
require 'active_support/core_ext/hash/slice'
|
2011-05-04 14:13:40 -04:00
|
|
|
require 'active_support/core_ext/module/remove_method'
|
2013-01-31 09:59:18 -05:00
|
|
|
require 'active_support/core_ext/array/extract_options'
|
2011-06-29 09:38:09 -04:00
|
|
|
require 'action_controller/metal/exceptions'
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2009-10-20 11:14:46 -04:00
|
|
|
module ActionDispatch
|
2008-01-17 17:45:54 -05:00
|
|
|
module Routing
|
2008-07-28 14:38:20 -04:00
|
|
|
class RouteSet #:nodoc:
|
2012-02-23 06:49:18 -05:00
|
|
|
# Since the router holds references to many parts of the system
|
|
|
|
# like engines, controllers and the application itself, inspecting
|
|
|
|
# the route set can actually be really slow, therefore we default
|
|
|
|
# alias inspect to to_s.
|
|
|
|
alias inspect to_s
|
|
|
|
|
2009-10-20 00:32:06 -04:00
|
|
|
PARAMETERS_KEY = 'action_dispatch.request.path_parameters'
|
|
|
|
|
2010-03-31 09:54:07 -04:00
|
|
|
class Dispatcher #:nodoc:
|
2010-02-16 18:14:49 -05:00
|
|
|
def initialize(options={})
|
|
|
|
@defaults = options[:defaults]
|
2009-10-20 00:32:06 -04:00
|
|
|
@glob_param = options.delete(:glob)
|
2012-12-13 08:47:33 -05:00
|
|
|
@controller_class_names = ThreadSafe::Cache.new
|
2009-10-20 00:32:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
params = env[PARAMETERS_KEY]
|
2012-05-20 11:44:42 -04:00
|
|
|
|
|
|
|
# If any of the path parameters has a invalid encoding then
|
|
|
|
# raise since it's likely to trigger errors further on.
|
|
|
|
params.each do |key, value|
|
2013-02-26 08:30:19 -05:00
|
|
|
next unless value.respond_to?(:valid_encoding?)
|
|
|
|
|
2012-05-20 11:44:42 -04:00
|
|
|
unless value.valid_encoding?
|
|
|
|
raise ActionController::BadRequest, "Invalid parameter: #{key} => #{value}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-11 01:11:16 -05:00
|
|
|
prepare_params!(params)
|
2010-02-16 18:14:49 -05:00
|
|
|
|
|
|
|
# Just raise undefined constant errors if a controller was specified as default.
|
|
|
|
unless controller = controller(params, @defaults.key?(:controller))
|
|
|
|
return [404, {'X-Cascade' => 'pass'}, []]
|
|
|
|
end
|
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
dispatch(controller, params[:action], env)
|
2009-12-11 01:11:16 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def prepare_params!(params)
|
2012-02-10 07:20:55 -05:00
|
|
|
normalize_controller!(params)
|
2009-10-20 00:32:06 -04:00
|
|
|
merge_default_action!(params)
|
|
|
|
split_glob_param!(params) if @glob_param
|
2009-12-11 01:11:16 -05:00
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
# If this is a default_controller (i.e. a controller specified by the user)
|
|
|
|
# we should raise an error in case it's not found, because it usually means
|
2011-11-01 02:59:20 -04:00
|
|
|
# a user error. However, if the controller was retrieved through a dynamic
|
2010-07-02 13:13:00 -04:00
|
|
|
# segment, as in :controller(/:action), we should simply return nil and
|
2010-07-06 17:20:06 -04:00
|
|
|
# delegate the control back to Rack cascade. Besides, if this is not a default
|
2010-07-02 13:13:00 -04:00
|
|
|
# controller, it means we should respect the @scope[:module] parameter.
|
|
|
|
def controller(params, default_controller=true)
|
2010-06-04 20:28:04 -04:00
|
|
|
if params && params.key?(:controller)
|
2010-07-06 17:20:06 -04:00
|
|
|
controller_param = params[:controller]
|
2010-07-02 13:13:00 -04:00
|
|
|
controller_reference(controller_param)
|
2009-10-20 00:32:06 -04:00
|
|
|
end
|
2010-02-06 05:39:51 -05:00
|
|
|
rescue NameError => e
|
2010-07-02 13:13:00 -04:00
|
|
|
raise ActionController::RoutingError, e.message, e.backtrace if default_controller
|
2009-10-20 00:32:06 -04:00
|
|
|
end
|
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
private
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
def controller_reference(controller_param)
|
2012-12-13 08:47:33 -05:00
|
|
|
const_name = @controller_class_names[controller_param] ||= "#{controller_param.camelize}Controller"
|
|
|
|
ActiveSupport::Dependencies.constantize(const_name)
|
2010-07-02 13:13:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def dispatch(controller, action, env)
|
|
|
|
controller.action(action).call(env)
|
|
|
|
end
|
|
|
|
|
2012-02-10 07:20:55 -05:00
|
|
|
def normalize_controller!(params)
|
|
|
|
params[:controller] = params[:controller].underscore if params.key?(:controller)
|
|
|
|
end
|
|
|
|
|
2010-07-02 13:13:00 -04:00
|
|
|
def merge_default_action!(params)
|
|
|
|
params[:action] ||= 'index'
|
|
|
|
end
|
|
|
|
|
|
|
|
def split_glob_param!(params)
|
2010-09-27 19:57:26 -04:00
|
|
|
params[@glob_param] = params[@glob_param].split('/').map { |v| URI.parser.unescape(v) }
|
2010-09-22 15:11:15 -04:00
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
end
|
|
|
|
|
2008-01-17 17:45:54 -05:00
|
|
|
# A NamedRouteCollection instance is a collection of named routes, and also
|
|
|
|
# maintains an anonymous module that can be used to install helpers for the
|
|
|
|
# named routes.
|
|
|
|
class NamedRouteCollection #:nodoc:
|
|
|
|
include Enumerable
|
2010-03-17 17:04:41 -04:00
|
|
|
attr_reader :routes, :helpers, :module
|
2008-01-17 17:45:54 -05:00
|
|
|
|
|
|
|
def initialize
|
2011-12-29 12:06:34 -05:00
|
|
|
@routes = {}
|
|
|
|
@helpers = []
|
2013-01-25 14:48:22 -05:00
|
|
|
@module = Module.new
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2010-06-07 15:29:34 -04:00
|
|
|
def helper_names
|
2013-01-24 18:43:08 -05:00
|
|
|
@helpers.map(&:to_s)
|
2010-06-07 15:29:34 -04:00
|
|
|
end
|
|
|
|
|
2008-01-17 17:45:54 -05:00
|
|
|
def clear!
|
2012-12-14 08:15:57 -05:00
|
|
|
@helpers.each do |helper|
|
2013-01-24 18:33:08 -05:00
|
|
|
@module.remove_possible_method helper
|
2012-12-14 08:15:57 -05:00
|
|
|
end
|
|
|
|
|
2011-12-29 12:06:34 -05:00
|
|
|
@routes.clear
|
|
|
|
@helpers.clear
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def add(name, route)
|
|
|
|
routes[name.to_sym] = route
|
|
|
|
define_named_route_methods(name, route)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(name)
|
|
|
|
routes[name.to_sym]
|
|
|
|
end
|
|
|
|
|
|
|
|
alias []= add
|
|
|
|
alias [] get
|
|
|
|
alias clear clear!
|
|
|
|
|
|
|
|
def each
|
|
|
|
routes.each { |name, route| yield name, route }
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def names
|
|
|
|
routes.keys
|
|
|
|
end
|
|
|
|
|
|
|
|
def length
|
|
|
|
routes.length
|
|
|
|
end
|
|
|
|
|
2013-01-25 14:06:33 -05:00
|
|
|
class UrlHelper # :nodoc:
|
2013-01-25 13:35:31 -05:00
|
|
|
def self.create(route, options)
|
|
|
|
if optimize_helper?(route)
|
|
|
|
OptimizedUrlHelper.new(route, options)
|
|
|
|
else
|
|
|
|
new route, options
|
|
|
|
end
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def self.optimize_helper?(route)
|
|
|
|
route.requirements.except(:controller, :action).empty?
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2013-01-25 14:06:33 -05:00
|
|
|
class OptimizedUrlHelper < UrlHelper # :nodoc:
|
2013-01-25 13:35:31 -05:00
|
|
|
attr_reader :arg_size
|
2013-01-25 13:29:38 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def initialize(route, options)
|
|
|
|
super
|
2013-01-25 14:06:33 -05:00
|
|
|
@path_parts = @route.required_parts
|
|
|
|
@arg_size = @path_parts.size
|
2013-03-03 14:18:01 -05:00
|
|
|
@string_route = @route.optimized_path
|
2013-01-25 13:29:38 -05:00
|
|
|
end
|
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def call(t, args)
|
|
|
|
if args.size == arg_size && !args.last.is_a?(Hash) && optimize_routes_generation?(t)
|
2013-04-18 11:55:40 -04:00
|
|
|
options = @options.dup
|
|
|
|
options.merge!(t.url_options) if t.respond_to?(:url_options)
|
|
|
|
options[:path] = optimized_helper(args)
|
|
|
|
ActionDispatch::Http::URL.url_for(options)
|
2013-01-25 13:35:31 -05:00
|
|
|
else
|
2013-01-25 13:29:38 -05:00
|
|
|
super
|
|
|
|
end
|
2013-01-25 13:35:31 -05:00
|
|
|
end
|
2013-01-25 13:29:38 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
private
|
2013-01-25 13:31:38 -05:00
|
|
|
|
2013-01-25 14:06:33 -05:00
|
|
|
def optimized_helper(args)
|
|
|
|
path = @string_route.dup
|
|
|
|
klass = Journey::Router::Utils
|
2013-01-25 13:16:50 -05:00
|
|
|
|
2013-01-25 14:06:33 -05:00
|
|
|
@path_parts.zip(args) do |part, arg|
|
2013-01-25 13:35:31 -05:00
|
|
|
# Replace each route parameter
|
|
|
|
# e.g. :id for regular parameter or *path for globbing
|
|
|
|
# with ruby string interpolation code
|
2013-01-25 14:06:33 -05:00
|
|
|
path.gsub!(/(\*|:)#{part}/, klass.escape_fragment(arg.to_param))
|
2013-01-25 13:16:50 -05:00
|
|
|
end
|
2013-01-25 14:06:33 -05:00
|
|
|
path
|
2013-01-25 13:16:50 -05:00
|
|
|
end
|
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def optimize_routes_generation?(t)
|
|
|
|
t.send(:optimize_routes_generation?)
|
2013-01-25 13:04:46 -05:00
|
|
|
end
|
2013-01-25 13:35:31 -05:00
|
|
|
end
|
2013-01-25 13:04:46 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def initialize(route, options)
|
|
|
|
@options = options
|
|
|
|
@segment_keys = route.segment_keys
|
|
|
|
@route = route
|
2013-01-25 12:39:13 -05:00
|
|
|
end
|
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
def call(t, args)
|
|
|
|
t.url_for(handle_positional_args(t, args, @options, @segment_keys))
|
|
|
|
end
|
2013-01-25 13:04:46 -05:00
|
|
|
|
2013-01-25 14:06:50 -05:00
|
|
|
def handle_positional_args(t, args, options, keys)
|
2013-01-25 13:35:31 -05:00
|
|
|
inner_options = args.extract_options!
|
|
|
|
result = options.dup
|
2013-01-25 13:04:46 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
if args.size > 0
|
|
|
|
if args.size < keys.size - 1 # take format into account
|
|
|
|
keys -= t.url_options.keys if t.respond_to?(:url_options)
|
|
|
|
keys -= options.keys
|
2012-05-02 11:31:45 -04:00
|
|
|
end
|
2013-01-25 13:35:31 -05:00
|
|
|
result.merge!(Hash[keys.zip(args)])
|
2013-01-25 13:04:46 -05:00
|
|
|
end
|
2012-03-01 19:32:08 -05:00
|
|
|
|
2013-01-25 13:35:31 -05:00
|
|
|
result.merge!(inner_options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
# Create a url helper allowing ordered parameters to be associated
|
|
|
|
# with corresponding dynamic segments, so you can do:
|
|
|
|
#
|
|
|
|
# foo_url(bar, baz, bang)
|
|
|
|
#
|
|
|
|
# Instead of:
|
|
|
|
#
|
|
|
|
# foo_url(bar: bar, baz: baz, bang: bang)
|
|
|
|
#
|
|
|
|
# Also allow options hash, so you can do:
|
|
|
|
#
|
|
|
|
# foo_url(bar, baz, bang, sort_by: 'baz')
|
|
|
|
#
|
|
|
|
def define_url_helper(route, name, options)
|
|
|
|
helper = UrlHelper.create(route, options.dup)
|
|
|
|
|
2013-01-25 14:06:33 -05:00
|
|
|
@module.remove_possible_method name
|
2013-01-25 13:35:31 -05:00
|
|
|
@module.module_eval do
|
|
|
|
define_method(name) do |*args|
|
|
|
|
helper.call self, args
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
2013-01-25 13:35:31 -05:00
|
|
|
|
|
|
|
helpers << name
|
|
|
|
end
|
|
|
|
|
|
|
|
def define_named_route_methods(name, route)
|
|
|
|
define_url_helper route, :"#{name}_path",
|
|
|
|
route.defaults.merge(:use_route => name, :only_path => true)
|
|
|
|
define_url_helper route, :"#{name}_url",
|
|
|
|
route.defaults.merge(:use_route => name, :only_path => false)
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2011-09-11 20:14:29 -04:00
|
|
|
attr_accessor :formatter, :set, :named_routes, :default_scope, :router
|
2010-01-24 05:06:06 -05:00
|
|
|
attr_accessor :disable_clear_and_finalize, :resources_path_names
|
2012-08-10 04:54:47 -04:00
|
|
|
attr_accessor :default_url_options, :request_class
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2011-09-11 20:14:29 -04:00
|
|
|
alias :routes :set
|
|
|
|
|
2010-01-13 21:21:04 -05:00
|
|
|
def self.default_resources_path_names
|
|
|
|
{ :new => 'new', :edit => 'edit' }
|
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
def initialize(request_class = ActionDispatch::Request)
|
2008-01-17 17:45:54 -05:00
|
|
|
self.named_routes = NamedRouteCollection.new
|
2010-01-24 05:06:06 -05:00
|
|
|
self.resources_path_names = self.class.default_resources_path_names.dup
|
2010-03-09 22:20:13 -05:00
|
|
|
self.default_url_options = {}
|
2010-04-03 23:23:23 -04:00
|
|
|
self.request_class = request_class
|
2008-07-28 14:41:42 -04:00
|
|
|
|
2011-09-08 17:41:12 -04:00
|
|
|
@append = []
|
|
|
|
@prepend = []
|
2009-12-14 18:54:41 -05:00
|
|
|
@disable_clear_and_finalize = false
|
2011-09-08 17:41:12 -04:00
|
|
|
@finalized = false
|
2011-09-08 17:38:46 -04:00
|
|
|
|
|
|
|
@set = Journey::Routes.new
|
|
|
|
@router = Journey::Router.new(@set, {
|
|
|
|
:parameters_key => PARAMETERS_KEY,
|
|
|
|
:request_class => request_class})
|
|
|
|
@formatter = Journey::Formatter.new @set
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2010-03-05 00:59:42 -05:00
|
|
|
def draw(&block)
|
2009-12-14 18:54:41 -05:00
|
|
|
clear! unless @disable_clear_and_finalize
|
2010-09-17 15:05:40 -04:00
|
|
|
eval_block(block)
|
|
|
|
finalize! unless @disable_clear_and_finalize
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def append(&block)
|
|
|
|
@append << block
|
|
|
|
end
|
2009-12-09 21:46:32 -05:00
|
|
|
|
2011-05-08 06:57:07 -04:00
|
|
|
def prepend(&block)
|
|
|
|
@prepend << block
|
|
|
|
end
|
|
|
|
|
2010-09-17 15:05:40 -04:00
|
|
|
def eval_block(block)
|
2011-05-03 10:07:25 -04:00
|
|
|
if block.arity == 1
|
|
|
|
raise "You are using the old router DSL which has been removed in Rails 3.1. " <<
|
2012-02-18 09:57:24 -05:00
|
|
|
"Please check how to update your routes file at: http://www.engineyard.com/blog/2010/the-lowdown-on-routes-in-rails-3/"
|
2011-05-03 10:07:25 -04:00
|
|
|
end
|
2009-12-09 21:46:32 -05:00
|
|
|
mapper = Mapper.new(self)
|
2010-08-05 09:44:23 -04:00
|
|
|
if default_scope
|
|
|
|
mapper.with_default_scope(default_scope, &block)
|
2009-12-09 21:46:32 -05:00
|
|
|
else
|
2010-08-05 09:44:23 -04:00
|
|
|
mapper.instance_exec(&block)
|
2009-12-09 21:46:32 -05:00
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2009-12-14 18:54:41 -05:00
|
|
|
def finalize!
|
2010-03-16 15:38:37 -04:00
|
|
|
return if @finalized
|
2010-09-17 15:05:40 -04:00
|
|
|
@append.each { |blk| eval_block(blk) }
|
2010-03-16 15:38:37 -04:00
|
|
|
@finalized = true
|
2009-12-14 18:54:41 -05:00
|
|
|
end
|
|
|
|
|
2008-01-17 17:45:54 -05:00
|
|
|
def clear!
|
2010-03-16 15:38:37 -04:00
|
|
|
@finalized = false
|
2008-01-17 17:45:54 -05:00
|
|
|
named_routes.clear
|
2011-09-08 17:38:46 -04:00
|
|
|
set.clear
|
|
|
|
formatter.clear
|
2011-05-08 06:57:07 -04:00
|
|
|
@prepend.each { |blk| eval_block(blk) }
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
module MountedHelpers #:nodoc:
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include UrlFor
|
2010-07-18 13:49:51 -04:00
|
|
|
end
|
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
# Contains all the mounted helpers accross different
|
|
|
|
# engines and the `main_app` helper for the application.
|
|
|
|
# You can include this in your classes if you want to
|
|
|
|
# access routes for other engines.
|
2011-04-25 08:56:58 -04:00
|
|
|
def mounted_helpers
|
2010-07-18 13:49:51 -04:00
|
|
|
MountedHelpers
|
|
|
|
end
|
|
|
|
|
2010-07-31 05:27:08 -04:00
|
|
|
def define_mounted_helper(name)
|
|
|
|
return if MountedHelpers.method_defined?(name)
|
|
|
|
|
2010-07-18 13:49:51 -04:00
|
|
|
routes = self
|
|
|
|
MountedHelpers.class_eval do
|
|
|
|
define_method "_#{name}" do
|
2012-01-03 14:00:40 -05:00
|
|
|
RoutesProxy.new(routes, _routes_context)
|
2010-07-18 13:49:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-17 12:16:55 -04:00
|
|
|
MountedHelpers.class_eval(<<-RUBY, __FILE__, __LINE__ + 1)
|
2010-07-18 13:49:51 -04:00
|
|
|
def #{name}
|
2012-09-09 02:59:21 -04:00
|
|
|
@_#{name} ||= _#{name}
|
2010-07-18 13:49:51 -04:00
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
|
2010-02-26 18:00:33 -05:00
|
|
|
def url_helpers
|
2012-01-03 14:00:40 -05:00
|
|
|
@url_helpers ||= begin
|
|
|
|
routes = self
|
|
|
|
|
|
|
|
Module.new do
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include UrlFor
|
|
|
|
|
|
|
|
# Define url_for in the singleton level so one can do:
|
|
|
|
# Rails.application.routes.url_helpers.url_for(args)
|
|
|
|
@_routes = routes
|
|
|
|
class << self
|
2012-03-02 09:01:20 -05:00
|
|
|
delegate :url_for, :optimize_routes_generation?, :to => '@_routes'
|
2012-01-03 14:00:40 -05:00
|
|
|
end
|
2010-02-24 19:01:03 -05:00
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
# Make named_routes available in the module singleton
|
|
|
|
# as well, so one can do:
|
|
|
|
# Rails.application.routes.url_helpers.posts_path
|
|
|
|
extend routes.named_routes.module
|
2010-02-24 19:01:03 -05:00
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
# Any class that includes this module will get all
|
|
|
|
# named routes...
|
|
|
|
include routes.named_routes.module
|
2011-12-29 14:47:21 -05:00
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
# plus a singleton class method called _routes ...
|
|
|
|
included do
|
|
|
|
singleton_class.send(:redefine_method, :_routes) { routes }
|
|
|
|
end
|
2010-03-17 17:04:41 -04:00
|
|
|
|
2012-01-03 14:00:40 -05:00
|
|
|
# And an instance method _routes. Note that
|
|
|
|
# UrlFor (included in this module) add extra
|
|
|
|
# conveniences for working with @_routes.
|
|
|
|
define_method(:_routes) { @_routes || routes }
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
2012-01-03 14:00:40 -05:00
|
|
|
end
|
2010-02-24 19:01:03 -05:00
|
|
|
end
|
|
|
|
|
2008-01-17 17:45:54 -05:00
|
|
|
def empty?
|
|
|
|
routes.empty?
|
|
|
|
end
|
|
|
|
|
2010-03-08 15:24:49 -05:00
|
|
|
def add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true)
|
2011-03-06 02:08:50 -05:00
|
|
|
raise ArgumentError, "Invalid route name: '#{name}'" unless name.blank? || name.to_s.match(/^[_a-z]\w*$/i)
|
2011-09-12 19:11:55 -04:00
|
|
|
|
2013-03-20 00:23:55 -04:00
|
|
|
if name && named_routes[name]
|
|
|
|
raise ArgumentError, "Invalid route name, already in use: '#{name}' \n" \
|
2013-03-31 07:19:23 -04:00
|
|
|
"You may have defined two routes with the same name using the `:as` option, or " \
|
2013-03-20 13:48:35 -04:00
|
|
|
"you may be overriding a route already defined by a resource with the same naming. " \
|
|
|
|
"For the latter, you can restrict the routes created with `resources` as explained here: \n" \
|
2013-03-20 00:23:55 -04:00
|
|
|
"http://guides.rubyonrails.org/routing.html#restricting-the-routes-created"
|
|
|
|
end
|
|
|
|
|
2011-09-12 19:11:55 -04:00
|
|
|
path = build_path(conditions.delete(:path_info), requirements, SEPARATORS, anchor)
|
2012-08-10 04:54:47 -04:00
|
|
|
conditions = build_conditions(conditions, path.names.map { |x| x.to_sym })
|
2011-09-12 19:11:55 -04:00
|
|
|
|
|
|
|
route = @set.add_route(app, path, conditions, defaults, name)
|
2013-03-20 00:23:55 -04:00
|
|
|
named_routes[name] = route if name
|
2008-01-17 17:45:54 -05:00
|
|
|
route
|
|
|
|
end
|
|
|
|
|
2011-09-12 19:11:55 -04:00
|
|
|
def build_path(path, requirements, separators, anchor)
|
|
|
|
strexp = Journey::Router::Strexp.new(
|
|
|
|
path,
|
|
|
|
requirements,
|
|
|
|
SEPARATORS,
|
|
|
|
anchor)
|
|
|
|
|
2012-01-23 20:14:30 -05:00
|
|
|
pattern = Journey::Path::Pattern.new(strexp)
|
|
|
|
|
|
|
|
builder = Journey::GTG::Builder.new pattern.spec
|
|
|
|
|
|
|
|
# Get all the symbol nodes followed by literals that are not the
|
|
|
|
# dummy node.
|
|
|
|
symbols = pattern.spec.grep(Journey::Nodes::Symbol).find_all { |n|
|
|
|
|
builder.followpos(n).first.literal?
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get all the symbol nodes preceded by literals.
|
|
|
|
symbols.concat pattern.spec.find_all(&:literal?).map { |n|
|
|
|
|
builder.followpos(n).first
|
|
|
|
}.find_all(&:symbol?)
|
|
|
|
|
|
|
|
symbols.each { |x|
|
|
|
|
x.regexp = /(?:#{Regexp.union(x.regexp, '-')})+/
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern
|
2011-09-12 19:11:55 -04:00
|
|
|
end
|
|
|
|
private :build_path
|
|
|
|
|
2012-08-10 04:54:47 -04:00
|
|
|
def build_conditions(current_conditions, path_values)
|
2011-09-12 19:11:55 -04:00
|
|
|
conditions = current_conditions.dup
|
|
|
|
|
|
|
|
# Rack-Mount requires that :request_method be a regular expression.
|
|
|
|
# :request_method represents the HTTP verb that matches this route.
|
|
|
|
#
|
|
|
|
# Here we munge values before they get sent on to rack-mount.
|
2012-08-10 22:58:41 -04:00
|
|
|
verbs = conditions[:request_method] || []
|
2011-09-12 19:11:55 -04:00
|
|
|
unless verbs.empty?
|
|
|
|
conditions[:request_method] = %r[^#{verbs.join('|')}$]
|
|
|
|
end
|
2012-08-10 22:58:41 -04:00
|
|
|
|
|
|
|
conditions.keep_if do |k, _|
|
2013-01-15 12:18:59 -05:00
|
|
|
k == :action || k == :controller || k == :required_defaults ||
|
2012-08-10 04:54:47 -04:00
|
|
|
@request_class.public_method_defined?(k) || path_values.include?(k)
|
|
|
|
end
|
2011-09-12 19:11:55 -04:00
|
|
|
end
|
|
|
|
private :build_conditions
|
|
|
|
|
2010-03-31 09:54:07 -04:00
|
|
|
class Generator #:nodoc:
|
2011-09-08 13:52:04 -04:00
|
|
|
PARAMETERIZE = lambda do |name, value|
|
|
|
|
if name == :controller
|
|
|
|
value
|
|
|
|
elsif value.is_a?(Array)
|
2011-10-14 00:40:42 -04:00
|
|
|
value.map { |v| v.to_param }.join('/')
|
|
|
|
elsif param = value.to_param
|
|
|
|
param
|
2010-09-23 12:08:43 -04:00
|
|
|
end
|
2011-09-08 13:52:04 -04:00
|
|
|
end
|
2010-09-23 12:08:43 -04:00
|
|
|
|
2010-07-01 03:04:30 -04:00
|
|
|
attr_reader :options, :recall, :set, :named_route
|
2010-03-09 13:20:48 -05:00
|
|
|
|
2012-08-27 15:39:43 -04:00
|
|
|
def initialize(options, recall, set)
|
2010-03-09 13:20:48 -05:00
|
|
|
@named_route = options.delete(:use_route)
|
|
|
|
@options = options.dup
|
|
|
|
@recall = recall.dup
|
|
|
|
@set = set
|
|
|
|
|
|
|
|
normalize_options!
|
|
|
|
normalize_controller_action_id!
|
|
|
|
use_relative_controller!
|
2012-05-09 06:48:33 -04:00
|
|
|
normalize_controller!
|
2010-03-09 13:20:48 -05:00
|
|
|
handle_nil_action!
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
def controller
|
2012-05-09 06:48:33 -04:00
|
|
|
@options[:controller]
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
def current_controller
|
|
|
|
@recall[:controller]
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
def use_recall_for(key)
|
|
|
|
if @recall[key] && (!@options.key?(key) || @options[key] == @recall[key])
|
2012-08-04 07:24:35 -04:00
|
|
|
if !named_route_exists? || segment_keys.include?(key)
|
2012-08-10 17:27:51 -04:00
|
|
|
@options[key] = @recall.delete(key)
|
2010-07-03 03:14:17 -04:00
|
|
|
end
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
def normalize_options!
|
|
|
|
# If an explicit :controller was given, always make :action explicit
|
|
|
|
# too, so that action expiry works as expected for things like
|
|
|
|
#
|
2012-10-31 15:19:44 -04:00
|
|
|
# generate({controller: 'content'}, {controller: 'content', action: 'show'})
|
2010-03-09 13:20:48 -05:00
|
|
|
#
|
|
|
|
# (the above is from the unit tests). In the above case, because the
|
|
|
|
# controller was explicitly given, but no action, the action is implied to
|
|
|
|
# be "index", not the recalled action of "show".
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
if options[:controller]
|
|
|
|
options[:action] ||= 'index'
|
2012-05-09 06:48:33 -04:00
|
|
|
options[:controller] = options[:controller].to_s
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
if options[:action]
|
2012-05-09 06:48:33 -04:00
|
|
|
options[:action] = options[:action].to_s
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
# This pulls :controller, :action, and :id out of the recall.
|
|
|
|
# The recall key is only used if there is no key in the options
|
|
|
|
# or if the key in the options is identical. If any of
|
|
|
|
# :controller, :action or :id is not found, don't pull any
|
|
|
|
# more keys from the recall.
|
|
|
|
def normalize_controller_action_id!
|
|
|
|
@recall[:action] ||= 'index' if current_controller
|
|
|
|
|
|
|
|
use_recall_for(:controller) or return
|
|
|
|
use_recall_for(:action) or return
|
|
|
|
use_recall_for(:id)
|
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2012-10-31 15:19:44 -04:00
|
|
|
# if the current controller is "foo/bar/baz" and controller: "baz/bat"
|
2010-03-09 13:20:48 -05:00
|
|
|
# is specified, the controller becomes "foo/baz/bat"
|
|
|
|
def use_relative_controller!
|
2012-02-05 11:07:49 -05:00
|
|
|
if !named_route && different_controller? && !controller.start_with?("/")
|
2010-03-09 13:20:48 -05:00
|
|
|
old_parts = current_controller.split('/')
|
|
|
|
size = controller.count("/") + 1
|
|
|
|
parts = old_parts[0...-size] << controller
|
2012-05-09 06:48:33 -04:00
|
|
|
@options[:controller] = parts.join("/")
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2012-05-09 06:48:33 -04:00
|
|
|
# Remove leading slashes from controllers
|
|
|
|
def normalize_controller!
|
|
|
|
@options[:controller] = controller.sub(%r{^/}, '') if controller
|
|
|
|
end
|
|
|
|
|
2012-10-31 15:19:44 -04:00
|
|
|
# This handles the case of action: nil being explicitly passed.
|
|
|
|
# It is identical to action: "index"
|
2010-03-09 13:20:48 -05:00
|
|
|
def handle_nil_action!
|
|
|
|
if options.has_key?(:action) && options[:action].nil?
|
|
|
|
options[:action] = 'index'
|
2009-10-20 00:32:06 -04:00
|
|
|
end
|
2010-03-09 13:20:48 -05:00
|
|
|
recall[:action] = options.delete(:action) if options[:action] == 'index'
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
2009-10-20 00:32:06 -04:00
|
|
|
|
2013-01-14 08:18:23 -05:00
|
|
|
# Generates a path from routes, returns [path, params].
|
|
|
|
# If no route is generated the formatter will raise ActionController::UrlGenerationError
|
2010-03-09 13:20:48 -05:00
|
|
|
def generate
|
2012-08-27 15:39:43 -04:00
|
|
|
@set.formatter.generate(:path_info, named_route, options, recall, PARAMETERIZE)
|
2010-08-03 05:25:15 -04:00
|
|
|
end
|
2009-12-02 13:33:33 -05:00
|
|
|
|
2010-03-09 13:20:48 -05:00
|
|
|
def different_controller?
|
|
|
|
return false unless current_controller
|
|
|
|
controller.to_param != current_controller.to_param
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
2010-06-27 03:03:39 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
def named_route_exists?
|
|
|
|
named_route && set.named_routes[named_route]
|
|
|
|
end
|
|
|
|
|
|
|
|
def segment_keys
|
2010-07-03 03:14:17 -04:00
|
|
|
set.named_routes[named_route].segment_keys
|
2010-06-27 03:03:39 -04:00
|
|
|
end
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Generate the path indicated by the arguments, and return an array of
|
|
|
|
# the keys that were not used to generate it.
|
|
|
|
def extra_keys(options, recall={})
|
|
|
|
generate_extras(options, recall).last
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate_extras(options, recall={})
|
2012-08-27 15:39:43 -04:00
|
|
|
path, params = generate(options, recall)
|
|
|
|
return path, params.keys
|
2010-03-09 13:20:48 -05:00
|
|
|
end
|
|
|
|
|
2012-08-27 15:39:43 -04:00
|
|
|
def generate(options, recall = {})
|
|
|
|
Generator.new(options, recall, self).generate
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2010-11-22 18:31:03 -05:00
|
|
|
RESERVED_OPTIONS = [:host, :protocol, :port, :subdomain, :domain, :tld_length,
|
2012-08-10 17:27:51 -04:00
|
|
|
:trailing_slash, :anchor, :params, :only_path, :script_name,
|
|
|
|
:original_script_name]
|
2010-07-01 03:04:30 -04:00
|
|
|
|
2012-03-01 19:32:08 -05:00
|
|
|
def mounted?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2012-03-02 09:01:20 -05:00
|
|
|
def optimize_routes_generation?
|
|
|
|
!mounted? && default_url_options.empty?
|
|
|
|
end
|
|
|
|
|
2010-07-01 03:04:30 -04:00
|
|
|
def _generate_prefix(options = {})
|
|
|
|
nil
|
|
|
|
end
|
2010-03-09 21:50:35 -05:00
|
|
|
|
2012-04-05 17:28:03 -04:00
|
|
|
# The +options+ argument must be +nil+ or a hash whose keys are *symbols*.
|
2010-03-09 22:00:24 -05:00
|
|
|
def url_for(options)
|
2012-04-05 13:30:44 -04:00
|
|
|
options = default_url_options.merge(options || {})
|
2010-03-09 22:20:13 -05:00
|
|
|
|
2010-11-30 10:36:01 -05:00
|
|
|
user, password = extract_authentication(options)
|
2012-08-04 07:55:00 -04:00
|
|
|
recall = options.delete(:_recall)
|
2012-08-10 17:27:51 -04:00
|
|
|
|
|
|
|
original_script_name = options.delete(:original_script_name).presence
|
|
|
|
script_name = options.delete(:script_name).presence || _generate_prefix(options)
|
|
|
|
|
|
|
|
if script_name && original_script_name
|
|
|
|
script_name = original_script_name + script_name
|
|
|
|
end
|
2010-07-01 03:04:30 -04:00
|
|
|
|
2010-03-09 21:50:35 -05:00
|
|
|
path_options = options.except(*RESERVED_OPTIONS)
|
|
|
|
path_options = yield(path_options) if block_given?
|
|
|
|
|
2012-08-04 07:55:00 -04:00
|
|
|
path, params = generate(path_options, recall || {})
|
2012-02-06 17:47:17 -05:00
|
|
|
params.merge!(options[:params] || {})
|
2010-03-09 21:50:35 -05:00
|
|
|
|
2011-12-08 15:16:12 -05:00
|
|
|
ActionDispatch::Http::URL.url_for(options.merge!({
|
2010-11-30 10:36:01 -05:00
|
|
|
:path => path,
|
2012-03-01 19:32:08 -05:00
|
|
|
:script_name => script_name,
|
2010-11-30 10:36:01 -05:00
|
|
|
:params => params,
|
|
|
|
:user => user,
|
|
|
|
:password => password
|
|
|
|
}))
|
2010-03-09 21:50:35 -05:00
|
|
|
end
|
|
|
|
|
2009-10-20 00:32:06 -04:00
|
|
|
def call(env)
|
2011-09-08 17:09:33 -04:00
|
|
|
@router.call(env)
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2009-12-11 01:01:22 -05:00
|
|
|
def recognize_path(path, environment = {})
|
2009-10-20 00:32:06 -04:00
|
|
|
method = (environment[:method] || "GET").to_s.upcase
|
2011-09-12 19:50:25 -04:00
|
|
|
path = Journey::Router::Utils.normalize_path(path) unless path =~ %r{://}
|
2012-02-24 08:16:31 -05:00
|
|
|
extras = environment[:extras] || {}
|
2008-01-17 17:45:54 -05:00
|
|
|
|
2009-10-20 00:32:06 -04:00
|
|
|
begin
|
|
|
|
env = Rack::MockRequest.env_for(path, {:method => method})
|
|
|
|
rescue URI::InvalidURIError => e
|
2009-10-20 11:14:46 -04:00
|
|
|
raise ActionController::RoutingError, e.message
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
|
2010-08-20 12:33:33 -04:00
|
|
|
req = @request_class.new(env)
|
2013-04-08 15:13:13 -04:00
|
|
|
@router.recognize(req) do |route, _matches, params|
|
2012-02-24 08:16:31 -05:00
|
|
|
params.merge!(extras)
|
2010-06-04 14:49:55 -04:00
|
|
|
params.each do |key, value|
|
|
|
|
if value.is_a?(String)
|
2011-12-24 07:57:54 -05:00
|
|
|
value = value.dup.force_encoding(Encoding::BINARY)
|
2010-09-27 19:57:26 -04:00
|
|
|
params[key] = URI.parser.unescape(value)
|
2010-06-04 14:49:55 -04:00
|
|
|
end
|
|
|
|
end
|
2011-11-27 13:55:50 -05:00
|
|
|
old_params = env[::ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
|
|
|
|
env[::ActionDispatch::Routing::RouteSet::PARAMETERS_KEY] = (old_params || {}).merge(params)
|
2009-12-11 01:11:16 -05:00
|
|
|
dispatcher = route.app
|
2011-02-13 18:24:46 -05:00
|
|
|
while dispatcher.is_a?(Mapper::Constraints) && dispatcher.matches?(env) do
|
|
|
|
dispatcher = dispatcher.app
|
|
|
|
end
|
2010-07-05 18:39:13 -04:00
|
|
|
|
2011-08-16 16:27:07 -04:00
|
|
|
if dispatcher.is_a?(Dispatcher)
|
|
|
|
if dispatcher.controller(params, false)
|
|
|
|
dispatcher.prepare_params!(params)
|
|
|
|
return params
|
|
|
|
else
|
|
|
|
raise ActionController::RoutingError, "A route matches #{path.inspect}, but references missing controller: #{params[:controller].camelize}Controller"
|
|
|
|
end
|
2009-12-11 01:11:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-21 18:34:53 -05:00
|
|
|
raise ActionController::RoutingError, "No route matches #{path.inspect}"
|
2009-08-09 23:38:50 -04:00
|
|
|
end
|
2010-03-09 21:50:35 -05:00
|
|
|
|
|
|
|
private
|
2010-11-22 18:31:03 -05:00
|
|
|
|
2010-11-30 10:36:01 -05:00
|
|
|
def extract_authentication(options)
|
|
|
|
if options[:user] && options[:password]
|
|
|
|
[options.delete(:user), options.delete(:password)]
|
|
|
|
else
|
|
|
|
nil
|
2010-11-22 18:31:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-01-17 17:45:54 -05:00
|
|
|
end
|
|
|
|
end
|
2008-07-28 14:38:20 -04:00
|
|
|
end
|