Class: ActionDispatch::Routing::RouteSet::Generator
- Inherits:
-
Object
- Object
- ActionDispatch::Routing::RouteSet::Generator
- Defined in:
- lib/action_dispatch/routing/route_set.rb
Overview
:nodoc:
Constant Summary collapse
- PARAMETERIZE =
{ :parameterize => lambda do |name, value| if name == :controller value elsif value.is_a?(Array) value.map { |v| Rack::Mount::Utils.escape_uri(v.to_param) }.join('/') else return nil unless param = value.to_param param.split('/').map { |v| Rack::Mount::Utils.escape_uri(v) }.join("/") end end }
Instance Attribute Summary collapse
-
#named_route ⇒ Object
readonly
Returns the value of attribute named_route.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#recall ⇒ Object
readonly
Returns the value of attribute recall.
-
#set ⇒ Object
readonly
Returns the value of attribute set.
Instance Method Summary collapse
- #controller ⇒ Object
- #current_controller ⇒ Object
- #different_controller? ⇒ Boolean
- #generate ⇒ Object
-
#handle_nil_action! ⇒ Object
This handles the case of :action => nil being explicitly passed.
-
#initialize(options, recall, set, extras = false) ⇒ Generator
constructor
A new instance of Generator.
-
#normalize_controller_action_id! ⇒ Object
This pulls :controller, :action, and :id out of the recall.
- #normalize_options! ⇒ Object
- #raise_routing_error ⇒ Object
- #use_recall_for(key) ⇒ Object
-
#use_relative_controller! ⇒ Object
if the current controller is “foo/bar/baz” and :controller => “baz/bat” is specified, the controller becomes “foo/baz/bat”.
Constructor Details
#initialize(options, recall, set, extras = false) ⇒ Generator
Returns a new instance of Generator.
366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/action_dispatch/routing/route_set.rb', line 366 def initialize(, recall, set, extras = false) @named_route = .delete(:use_route) @options = .dup @recall = recall.dup @set = set @extras = extras normalize_controller_action_id! use_relative_controller! controller.sub!(%r{^/}, '') if controller handle_nil_action! end |
Instance Attribute Details
#named_route ⇒ Object (readonly)
Returns the value of attribute named_route.
364 365 366 |
# File 'lib/action_dispatch/routing/route_set.rb', line 364 def named_route @named_route end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
364 365 366 |
# File 'lib/action_dispatch/routing/route_set.rb', line 364 def @options end |
#recall ⇒ Object (readonly)
Returns the value of attribute recall.
364 365 366 |
# File 'lib/action_dispatch/routing/route_set.rb', line 364 def recall @recall end |
#set ⇒ Object (readonly)
Returns the value of attribute set.
364 365 366 |
# File 'lib/action_dispatch/routing/route_set.rb', line 364 def set @set end |
Instance Method Details
#controller ⇒ Object
380 381 382 |
# File 'lib/action_dispatch/routing/route_set.rb', line 380 def controller @controller ||= @options[:controller] end |
#current_controller ⇒ Object
384 385 386 |
# File 'lib/action_dispatch/routing/route_set.rb', line 384 def current_controller @recall[:controller] end |
#different_controller? ⇒ Boolean
467 468 469 470 |
# File 'lib/action_dispatch/routing/route_set.rb', line 467 def different_controller? return false unless current_controller controller.to_param != current_controller.to_param end |
#generate ⇒ Object
451 452 453 454 455 456 457 458 459 460 461 |
# File 'lib/action_dispatch/routing/route_set.rb', line 451 def generate path, params = @set.set.generate(:path_info, named_route, , recall, PARAMETERIZE) raise_routing_error unless path return [path, params.keys] if @extras [path, params] rescue Rack::Mount::RoutingError raise_routing_error end |
#handle_nil_action! ⇒ Object
This handles the case of :action => nil being explicitly passed. It is identical to :action => “index”
444 445 446 447 448 449 |
# File 'lib/action_dispatch/routing/route_set.rb', line 444 def handle_nil_action! if .has_key?(:action) && [:action].nil? [:action] = 'index' end recall[:action] = .delete(:action) if [:action] == 'index' end |
#normalize_controller_action_id! ⇒ Object
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.
423 424 425 426 427 428 429 |
# File 'lib/action_dispatch/routing/route_set.rb', line 423 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 |
#normalize_options! ⇒ Object
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
# File 'lib/action_dispatch/routing/route_set.rb', line 398 def # If an explicit :controller was given, always make :action explicit # too, so that action expiry works as expected for things like # # generate({:controller => 'content'}, {:controller => 'content', :action => 'show'}) # # (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". if [:controller] [:action] ||= 'index' [:controller] = [:controller].to_s end if [:action] [:action] = [:action].to_s end end |
#raise_routing_error ⇒ Object
463 464 465 |
# File 'lib/action_dispatch/routing/route_set.rb', line 463 def raise_routing_error raise ActionController::RoutingError, "No route matches #{.inspect}" end |
#use_recall_for(key) ⇒ Object
388 389 390 391 392 393 394 395 396 |
# File 'lib/action_dispatch/routing/route_set.rb', line 388 def use_recall_for(key) if @recall[key] && (!@options.key?(key) || @options[key] == @recall[key]) if named_route_exists? @options[key] = @recall.delete(key) if segment_keys.include?(key) else @options[key] = @recall.delete(key) end end end |
#use_relative_controller! ⇒ Object
if the current controller is “foo/bar/baz” and :controller => “baz/bat” is specified, the controller becomes “foo/baz/bat”
433 434 435 436 437 438 439 440 |
# File 'lib/action_dispatch/routing/route_set.rb', line 433 def use_relative_controller! if !named_route && different_controller? old_parts = current_controller.split('/') size = controller.count("/") + 1 parts = old_parts[0...-size] << controller @controller = @options[:controller] = parts.join("/") end end |