Class: ActionDispatch::Routing::RouteSet::Generator

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/routing/route_set.rb

Overview

:nodoc:

Constant Summary collapse

PARAMETERIZE =
lambda do |name, value|
  if name == :controller
    value
  elsif value.is_a?(Array)
    value.map { |v| v.to_param }.join('/')
  elsif param = value.to_param
    param
  end
end

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, recall, set) ⇒ Generator

Returns a new instance of Generator.



507
508
509
510
511
512
513
514
515
516
517
518
519
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 507

def initialize(options, recall, set)
  @named_route = options.delete(:use_route)
  @options     = options.dup
  @recall      = recall.dup
  @set         = set

  normalize_recall!
  normalize_options!
  normalize_controller_action_id!
  use_relative_controller!
  normalize_controller!
  normalize_action!
end

Instance Attribute Details

#named_routeObject (readonly)

Returns the value of attribute named_route



505
506
507
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 505

def named_route
  @named_route
end

#optionsObject (readonly)

Returns the value of attribute options



505
506
507
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 505

def options
  @options
end

#recallObject (readonly)

Returns the value of attribute recall



505
506
507
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 505

def recall
  @recall
end

#setObject (readonly)

Returns the value of attribute set



505
506
507
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 505

def set
  @set
end

Instance Method Details

#controllerObject



521
522
523
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 521

def controller
  @options[:controller]
end

#current_controllerObject



525
526
527
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 525

def current_controller
  @recall[:controller]
end

#different_controller?Boolean

Returns:

  • (Boolean)


602
603
604
605
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 602

def different_controller?
  return false unless current_controller
  controller.to_param != current_controller.to_param
end

#generateObject

Generates a path from routes, returns [path, params]. If no route is generated the formatter will raise ActionController::UrlGenerationError



598
599
600
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 598

def generate
  @set.formatter.generate(:path_info, named_route, options, recall, PARAMETERIZE)
end

#normalize_action!Object

Move ‘index’ action from options to recall



590
591
592
593
594
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 590

def normalize_action!
  if @options[:action] == 'index'
    @recall[:action] = @options.delete(:action)
  end
end

#normalize_controller!Object

Remove leading slashes from controllers



585
586
587
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 585

def normalize_controller!
  @options[:controller] = controller.sub(%r{^/}, '') if controller
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.



567
568
569
570
571
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 567

def normalize_controller_action_id!
  use_recall_for(:controller) or return
  use_recall_for(:action) or return
  use_recall_for(:id)
end

#normalize_options!Object



542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 542

def normalize_options!
  # 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 options[:controller]
    options[:action]     ||= 'index'
    options[:controller]   = options[:controller].to_s
  end

  if options.key?(:action)
    options[:action] = (options[:action] || 'index').to_s
  end
end

#normalize_recall!Object

Set ‘index’ as default action for recall



538
539
540
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 538

def normalize_recall!
  @recall[:action] ||= 'index'
end

#use_recall_for(key) ⇒ Object



529
530
531
532
533
534
535
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 529

def use_recall_for(key)
  if @recall[key] && (!@options.key?(key) || @options[key] == @recall[key])
    if !named_route_exists? || segment_keys.include?(key)
      @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”



575
576
577
578
579
580
581
582
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 575

def use_relative_controller!
  if !named_route && different_controller? && !controller.start_with?("/")
    old_parts = current_controller.split('/')
    size = controller.count("/") + 1
    parts = old_parts[0...-size] << controller
    @options[:controller] = parts.join("/")
  end
end