Class: ActionDispatch::Routing::RouteSet

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

Overview

:stopdoc:

Defined Under Namespace

Modules: MountedHelpers Classes: Config, CustomUrlHelper, Dispatcher, Generator, NamedRouteCollection, StaticDispatcher

Constant Summary collapse

PATH =

strategy for building URLs to send to the client

->(options) { ActionDispatch::Http::URL.path_for(options) }
UNKNOWN =
->(options) { ActionDispatch::Http::URL.url_for(options) }
DEFAULT_CONFIG =
Config.new(nil, false)
RESERVED_OPTIONS =
[:host, :protocol, :port, :subdomain, :domain, :tld_length,
:trailing_slash, :anchor, :params, :only_path, :script_name,
:original_script_name, :relative_url_root]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config = DEFAULT_CONFIG) ⇒ RouteSet

Returns a new instance of RouteSet.



366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# File 'lib/action_dispatch/routing/route_set.rb', line 366

def initialize(config = DEFAULT_CONFIG)
  self.named_routes = NamedRouteCollection.new
  self.resources_path_names = self.class.default_resources_path_names
  self.default_url_options = {}
  self.draw_paths = []

  @config                     = config
  @append                     = []
  @prepend                    = []
  @disable_clear_and_finalize = false
  @finalized                  = false
  @env_key                    = "ROUTES_#{object_id}_SCRIPT_NAME"

  @set    = Journey::Routes.new
  @router = Journey::Router.new @set
  @formatter = Journey::Formatter.new self
  @polymorphic_mappings = {}
end

Instance Attribute Details

#default_scopeObject

Returns the value of attribute default_scope.



336
337
338
# File 'lib/action_dispatch/routing/route_set.rb', line 336

def default_scope
  @default_scope
end

#default_url_optionsObject

Returns the value of attribute default_url_options.



338
339
340
# File 'lib/action_dispatch/routing/route_set.rb', line 338

def default_url_options
  @default_url_options
end

#disable_clear_and_finalizeObject

Returns the value of attribute disable_clear_and_finalize.



337
338
339
# File 'lib/action_dispatch/routing/route_set.rb', line 337

def disable_clear_and_finalize
  @disable_clear_and_finalize
end

#draw_pathsObject

Returns the value of attribute draw_paths.



338
339
340
# File 'lib/action_dispatch/routing/route_set.rb', line 338

def draw_paths
  @draw_paths
end

#env_keyObject (readonly)

Returns the value of attribute env_key.



339
340
341
# File 'lib/action_dispatch/routing/route_set.rb', line 339

def env_key
  @env_key
end

#formatterObject

Returns the value of attribute formatter.



336
337
338
# File 'lib/action_dispatch/routing/route_set.rb', line 336

def formatter
  @formatter
end

#named_routesObject

Returns the value of attribute named_routes.



336
337
338
# File 'lib/action_dispatch/routing/route_set.rb', line 336

def named_routes
  @named_routes
end

#polymorphic_mappingsObject (readonly)

Returns the value of attribute polymorphic_mappings.



339
340
341
# File 'lib/action_dispatch/routing/route_set.rb', line 339

def polymorphic_mappings
  @polymorphic_mappings
end

#resources_path_namesObject

Returns the value of attribute resources_path_names.



337
338
339
# File 'lib/action_dispatch/routing/route_set.rb', line 337

def resources_path_names
  @resources_path_names
end

#routerObject

Returns the value of attribute router.



336
337
338
# File 'lib/action_dispatch/routing/route_set.rb', line 336

def router
  @router
end

#setObject Also known as: routes

Returns the value of attribute set.



336
337
338
# File 'lib/action_dispatch/routing/route_set.rb', line 336

def set
  @set
end

Class Method Details

.default_resources_path_namesObject



343
344
345
# File 'lib/action_dispatch/routing/route_set.rb', line 343

def self.default_resources_path_names
  { new: "new", edit: "edit" }
end

.new_with_config(config) ⇒ Object



347
348
349
350
351
352
353
354
355
356
357
358
359
360
# File 'lib/action_dispatch/routing/route_set.rb', line 347

def self.new_with_config(config)
  route_set_config = DEFAULT_CONFIG

  # engines apparently don't have this set
  if config.respond_to? :relative_url_root
    route_set_config.relative_url_root = config.relative_url_root
  end

  if config.respond_to? :api_only
    route_set_config.api_only = config.api_only
  end

  new route_set_config
end

Instance Method Details

#add_polymorphic_mapping(klass, options, &block) ⇒ Object



615
616
617
# File 'lib/action_dispatch/routing/route_set.rb', line 615

def add_polymorphic_mapping(klass, options, &block)
  @polymorphic_mappings[klass] = CustomUrlHelper.new(klass, options, &block)
end

#add_route(mapping, name) ⇒ Object

Raises:

  • (ArgumentError)


584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
# File 'lib/action_dispatch/routing/route_set.rb', line 584

def add_route(mapping, name)
  raise ArgumentError, "Invalid route name: '#{name}'" unless name.blank? || name.to_s.match(/^[_a-z]\w*$/i)

  if name && named_routes[name]
    raise ArgumentError, "Invalid route name, already in use: '#{name}' \n" \
      "You may have defined two routes with the same name using the `:as` option, or " \
      "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" \
      "https://guides.rubyonrails.org/routing.html#restricting-the-routes-created"
  end

  route = @set.add_route(name, mapping)
  named_routes[name] = route if name

  if route.segment_keys.include?(:controller)
    ActiveSupport::Deprecation.warn(<<-MSG.squish)
      Using a dynamic :controller segment in a route is deprecated and
      will be removed in Rails 7.1.
    MSG
  end

  if route.segment_keys.include?(:action)
    ActiveSupport::Deprecation.warn(<<-MSG.squish)
      Using a dynamic :action segment in a route is deprecated and
      will be removed in Rails 7.1.
    MSG
  end

  route
end

#add_url_helper(name, options, &block) ⇒ Object



619
620
621
# File 'lib/action_dispatch/routing/route_set.rb', line 619

def add_url_helper(name, options, &block)
  named_routes.add_url_helper(name, options, &block)
end

#api_only?Boolean

Returns:

  • (Boolean)


395
396
397
# File 'lib/action_dispatch/routing/route_set.rb', line 395

def api_only?
  @config.api_only
end

#append(&block) ⇒ Object



415
416
417
# File 'lib/action_dispatch/routing/route_set.rb', line 415

def append(&block)
  @append << block
end

#call(env) ⇒ Object



849
850
851
852
853
# File 'lib/action_dispatch/routing/route_set.rb', line 849

def call(env)
  req = make_request(env)
  req.path_info = Journey::Router::Utils.normalize_path(req.path_info)
  @router.serve(req)
end

#clear!Object



439
440
441
442
443
444
445
446
# File 'lib/action_dispatch/routing/route_set.rb', line 439

def clear!
  @finalized = false
  named_routes.clear
  set.clear
  formatter.clear
  @polymorphic_mappings.clear
  @prepend.each { |blk| eval_block(blk) }
end

#define_mounted_helper(name, script_namer = nil) ⇒ Object



461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# File 'lib/action_dispatch/routing/route_set.rb', line 461

def define_mounted_helper(name, script_namer = nil)
  return if MountedHelpers.method_defined?(name)

  routes = self
  helpers = routes.url_helpers

  MountedHelpers.class_eval do
    define_method "_#{name}" do
      RoutesProxy.new(routes, _routes_context, helpers, script_namer)
    end
  end

  MountedHelpers.class_eval(<<-RUBY, __FILE__, __LINE__ + 1)
    def #{name}
      @_#{name} ||= _#{name}
    end
  RUBY
end

#draw(&block) ⇒ Object



408
409
410
411
412
413
# File 'lib/action_dispatch/routing/route_set.rb', line 408

def draw(&block)
  clear! unless @disable_clear_and_finalize
  eval_block(block)
  finalize! unless @disable_clear_and_finalize
  nil
end

#eager_load!Object



385
386
387
388
389
# File 'lib/action_dispatch/routing/route_set.rb', line 385

def eager_load!
  router.eager_load!
  routes.each(&:eager_load!)
  nil
end

#empty?Boolean

Returns:

  • (Boolean)


580
581
582
# File 'lib/action_dispatch/routing/route_set.rb', line 580

def empty?
  routes.empty?
end

#extra_keys(options, recall = {}) ⇒ Object

Generate the path indicated by the arguments, and return an array of the keys that were not used to generate it.



760
761
762
# File 'lib/action_dispatch/routing/route_set.rb', line 760

def extra_keys(options, recall = {})
  generate_extras(options, recall).last
end

#finalize!Object



433
434
435
436
437
# File 'lib/action_dispatch/routing/route_set.rb', line 433

def finalize!
  return if @finalized
  @append.each { |blk| eval_block(blk) }
  @finalized = true
end

#find_relative_url_root(options) ⇒ Object



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

def find_relative_url_root(options)
  options.delete(:relative_url_root) || relative_url_root
end

#find_script_name(options) ⇒ Object



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

def find_script_name(options)
  options.delete(:script_name) || find_relative_url_root(options) || ""
end

#generate_extras(options, recall = {}) ⇒ Object



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

def generate_extras(options, recall = {})
  if recall
    options = options.merge(_recall: recall)
  end

  route_name = options.delete :use_route
  generator = generate(route_name, options, recall)
  path_info = path_for(options, route_name, [])
  [URI(path_info).path, generator.params.except(:_recall).keys]
end

#generate_url_helpers(supports_path) ⇒ Object



488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# File 'lib/action_dispatch/routing/route_set.rb', line 488

def generate_url_helpers(supports_path)
  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)
    proxy_class = Class.new do
      include UrlFor
      include routes.named_routes.path_helpers_module
      include routes.named_routes.url_helpers_module

      attr_reader :_routes

      def initialize(routes)
        @_routes = routes
      end

      def optimize_routes_generation?
        @_routes.optimize_routes_generation?
      end
    end

    @_proxy = proxy_class.new(routes)

    class << self
      def url_for(options)
        @_proxy.url_for(options)
      end

      def full_url_for(options)
        @_proxy.full_url_for(options)
      end

      def route_for(name, *args)
        @_proxy.route_for(name, *args)
      end

      def optimize_routes_generation?
        @_proxy.optimize_routes_generation?
      end

      def polymorphic_url(record_or_hash_or_array, options = {})
        @_proxy.polymorphic_url(record_or_hash_or_array, options)
      end

      def polymorphic_path(record_or_hash_or_array, options = {})
        @_proxy.polymorphic_path(record_or_hash_or_array, options)
      end

      def _routes; @_proxy._routes; end
      def url_options; {}; end
    end

    url_helpers = routes.named_routes.url_helpers_module

    # Make named_routes available in the module singleton
    # as well, so one can do:
    # Rails.application.routes.url_helpers.posts_path
    extend url_helpers

    # Any class that includes this module will get all
    # named routes...
    include url_helpers

    if supports_path
      path_helpers = routes.named_routes.path_helpers_module

      include path_helpers
      extend path_helpers
    end

    # plus a singleton class method called _routes ...
    included do
      redefine_singleton_method(:_routes) { routes }
    end

    # And an instance method _routes. Note that
    # UrlFor (included in this module) add extra
    # conveniences for working with @_routes.
    define_method(:_routes) { @_routes || routes }

    define_method(:_generate_paths_by_default) do
      supports_path
    end

    private :_generate_paths_by_default
  end
end

#mounted_helpersObject

Contains all the mounted helpers across 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.



457
458
459
# File 'lib/action_dispatch/routing/route_set.rb', line 457

def mounted_helpers
  MountedHelpers
end

#optimize_routes_generation?Boolean

Returns:

  • (Boolean)


784
785
786
# File 'lib/action_dispatch/routing/route_set.rb', line 784

def optimize_routes_generation?
  default_url_options.empty?
end

#path_for(options, route_name = nil, reserved = RESERVED_OPTIONS) ⇒ Object



796
797
798
# File 'lib/action_dispatch/routing/route_set.rb', line 796

def path_for(options, route_name = nil, reserved = RESERVED_OPTIONS)
  url_for(options, route_name, PATH, nil, reserved)
end

#prepend(&block) ⇒ Object



419
420
421
# File 'lib/action_dispatch/routing/route_set.rb', line 419

def prepend(&block)
  @prepend << block
end

#recognize_path(path, environment = {}) ⇒ Object



855
856
857
858
859
860
861
862
863
864
865
866
867
868
# File 'lib/action_dispatch/routing/route_set.rb', line 855

def recognize_path(path, environment = {})
  method = (environment[:method] || "GET").to_s.upcase
  path = Journey::Router::Utils.normalize_path(path) unless %r{://}.match?(path)
  extras = environment[:extras] || {}

  begin
    env = Rack::MockRequest.env_for(path, method: method)
  rescue URI::InvalidURIError => e
    raise ActionController::RoutingError, e.message
  end

  req = make_request(env)
  recognize_path_with_request(req, path, extras)
end

#recognize_path_with_request(req, path, extras, raise_on_missing: true) ⇒ Object



870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
# File 'lib/action_dispatch/routing/route_set.rb', line 870

def recognize_path_with_request(req, path, extras, raise_on_missing: true)
  @router.recognize(req) do |route, params|
    params.merge!(extras)
    params.each do |key, value|
      if value.is_a?(String)
        value = value.dup.force_encoding(Encoding::BINARY)
        params[key] = URI::DEFAULT_PARSER.unescape(value)
      end
    end
    req.path_parameters = params
    app = route.app
    if app.matches?(req) && app.dispatcher?
      begin
        req.controller_class
      rescue NameError
        raise ActionController::RoutingError, "A route matches #{path.inspect}, but references missing controller: #{params[:controller].camelize}Controller"
      end

      return req.path_parameters
    elsif app.matches?(req) && app.engine?
      path_parameters = app.rack_app.routes.recognize_path_with_request(req, path, extras, raise_on_missing: false)
      return path_parameters if path_parameters
    end
  end

  if raise_on_missing
    raise ActionController::RoutingError, "No route matches #{path.inspect}"
  end
end

#relative_url_rootObject



391
392
393
# File 'lib/action_dispatch/routing/route_set.rb', line 391

def relative_url_root
  @config.relative_url_root
end

#request_classObject



399
400
401
# File 'lib/action_dispatch/routing/route_set.rb', line 399

def request_class
  ActionDispatch::Request
end

#url_for(options, route_name = nil, url_strategy = UNKNOWN, method_name = nil, reserved = RESERVED_OPTIONS) ⇒ Object

The options argument must be a hash whose keys are symbols.



801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
# File 'lib/action_dispatch/routing/route_set.rb', line 801

def url_for(options, route_name = nil, url_strategy = UNKNOWN, method_name = nil, reserved = RESERVED_OPTIONS)
  options = default_url_options.merge options

  user = password = nil

  if options[:user] && options[:password]
    user     = options.delete :user
    password = options.delete :password
  end

  recall = options.delete(:_recall) { {} }

  original_script_name = options.delete(:original_script_name)
  script_name = find_script_name options

  if original_script_name
    script_name = original_script_name + script_name
  end

  path_options = options.dup
  reserved.each { |ro| path_options.delete ro }

  route_with_params = generate(route_name, path_options, recall)
  path = route_with_params.path(method_name)

  if options[:trailing_slash] && !options[:format] && !path.end_with?("/")
    path += "/"
  end

  params = route_with_params.params

  if options.key? :params
    if options[:params]&.respond_to?(:to_hash)
      params.merge! options[:params]
    else
      params[:params] = options[:params]
    end
  end

  options[:path]        = path
  options[:script_name] = script_name
  options[:params]      = params
  options[:user]        = user
  options[:password]    = password

  url_strategy.call options
end

#url_helpers(supports_path = true) ⇒ Object



480
481
482
483
484
485
486
# File 'lib/action_dispatch/routing/route_set.rb', line 480

def url_helpers(supports_path = true)
  if supports_path
    @url_helpers_with_paths ||= generate_url_helpers(true)
  else
    @url_helpers_without_paths ||= generate_url_helpers(false)
  end
end