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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(named_route, options, recall, set) ⇒ Generator

Returns a new instance of Generator.



705
706
707
708
709
710
711
712
713
714
715
# File 'lib/action_dispatch/routing/route_set.rb', line 705

def initialize(named_route, options, recall, set)
  @named_route = named_route
  @options     = options
  @recall      = recall
  @set         = set

  normalize_options!
  normalize_controller_action_id!
  use_relative_controller!
  normalize_controller!
end

Instance Attribute Details

#named_routeObject (readonly)

Returns the value of attribute named_route.



703
704
705
# File 'lib/action_dispatch/routing/route_set.rb', line 703

def named_route
  @named_route
end

#optionsObject (readonly)

Returns the value of attribute options.



703
704
705
# File 'lib/action_dispatch/routing/route_set.rb', line 703

def options
  @options
end

#recallObject (readonly)

Returns the value of attribute recall.



703
704
705
# File 'lib/action_dispatch/routing/route_set.rb', line 703

def recall
  @recall
end

#setObject (readonly)

Returns the value of attribute set.



703
704
705
# File 'lib/action_dispatch/routing/route_set.rb', line 703

def set
  @set
end

Instance Method Details

#controllerObject



717
718
719
# File 'lib/action_dispatch/routing/route_set.rb', line 717

def controller
  @options[:controller]
end

#current_controllerObject



721
722
723
# File 'lib/action_dispatch/routing/route_set.rb', line 721

def current_controller
  @recall[:controller]
end

#different_controller?Boolean

Returns:

  • (Boolean)


791
792
793
794
# File 'lib/action_dispatch/routing/route_set.rb', line 791

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

#generateObject

Generates a path from routes, returns a RouteWithParams or MissingRoute. MissingRoute will raise ActionController::UrlGenerationError.



787
788
789
# File 'lib/action_dispatch/routing/route_set.rb', line 787

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

#normalize_controller!Object

Remove leading slashes from controllers



775
776
777
778
779
780
781
782
783
# File 'lib/action_dispatch/routing/route_set.rb', line 775

def normalize_controller!
  if controller
    if controller.start_with?("/")
      @options[:controller] = controller[1..-1]
    else
      @options[:controller] = controller
    end
  end
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.



757
758
759
760
761
# File 'lib/action_dispatch/routing/route_set.rb', line 757

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

#normalize_options!Object



733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
# File 'lib/action_dispatch/routing/route_set.rb', line 733

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

#use_recall_for(key) ⇒ Object



725
726
727
728
729
730
731
# File 'lib/action_dispatch/routing/route_set.rb', line 725

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[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”



765
766
767
768
769
770
771
772
# File 'lib/action_dispatch/routing/route_set.rb', line 765

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