mapper.rb 50.3 KB
Newer Older
1
require 'erb'
2
require 'active_support/core_ext/hash/except'
3
require 'active_support/core_ext/object/blank'
4
require 'active_support/core_ext/object/inclusion'
5
require 'active_support/inflector'
6
require 'action_dispatch/routing/redirection'
7

J
Joshua Peek 已提交
8 9
module ActionDispatch
  module Routing
J
Joshua Peek 已提交
10
    class Mapper
11
      class Constraints #:nodoc:
12
        def self.new(app, constraints, request = Rack::Request)
13
          if constraints.any?
14
            super(app, constraints, request)
15 16 17 18 19
          else
            app
          end
        end

20 21
        attr_reader :app

22 23
        def initialize(app, constraints, request)
          @app, @constraints, @request = app, constraints, request
24 25
        end

26
        def matches?(env)
27
          req = @request.new(env)
28 29 30

          @constraints.each { |constraint|
            if constraint.respond_to?(:matches?) && !constraint.matches?(req)
31
              return false
32
            elsif constraint.respond_to?(:call) && !constraint.call(*constraint_args(constraint, req))
33
              return false
34 35 36
            end
          }

37 38 39 40 41
          return true
        end

        def call(env)
          matches?(env) ? @app.call(env) : [ 404, {'X-Cascade' => 'pass'}, [] ]
42
        end
43 44 45 46 47

        private
          def constraint_args(constraint, request)
            constraint.arity == 1 ? [request] : [request.symbolized_path_parameters, request]
          end
48 49
      end

50
      class Mapping #:nodoc:
51
        IGNORE_OPTIONS = [:to, :as, :via, :on, :constraints, :defaults, :only, :except, :anchor, :shallow, :shallow_path, :shallow_prefix]
52
        ANCHOR_CHARACTERS_REGEX = %r{\A(\\A|\^)|(\\Z|\\z|\$)\Z}
53 54
        SHORTHAND_REGEX = %r{^/[\w/]+$}
        WILDCARD_PATH = %r{\*([^/]+)$}
55

56
        def initialize(set, scope, path, options)
57 58
          @set, @scope = set, scope
          @options = (@scope[:options] || {}).merge(options)
59
          @path = normalize_path(path)
60
          normalize_options!
61
        end
J
Joshua Peek 已提交
62

63
        def to_route
64
          [ app, conditions, requirements, defaults, @options[:as], @options[:anchor] ]
65
        end
J
Joshua Peek 已提交
66

67
        private
68 69 70

          def normalize_options!
            path_without_format = @path.sub(/\(\.:format\)$/, '')
71

72 73 74
            if using_match_shorthand?(path_without_format, @options)
              to_shorthand    = @options[:to].blank?
              @options[:to] ||= path_without_format[1..-1].sub(%r{/([^/]*)$}, '#\1')
75 76
            end

77
            @options.merge!(default_controller_and_action(to_shorthand))
78 79 80 81 82

            requirements.each do |name, requirement|
              # segment_keys.include?(k.to_s) || k == :controller
              next unless Regexp === requirement && !constraints[name]

83
              if requirement.source =~ ANCHOR_CHARACTERS_REGEX
84 85 86 87 88 89
                raise ArgumentError, "Regexp anchor characters are not allowed in routing requirements: #{requirement.inspect}"
              end
              if requirement.multiline?
                raise ArgumentError, "Regexp multiline option not allowed in routing requirements: #{requirement.inspect}"
              end
            end
90
        end
91

92
          # match "account/overview"
93
          def using_match_shorthand?(path, options)
94
            path && options.except(:via, :anchor, :to, :as).empty? && path =~ SHORTHAND_REGEX
95
          end
96

97
          def normalize_path(path)
98 99
            raise ArgumentError, "path is required" if path.blank?
            path = Mapper.normalize_path(path)
100 101 102 103 104 105 106 107 108 109 110

            if path.match(':controller')
              raise ArgumentError, ":controller segment is not allowed within a namespace block" if @scope[:module]

              # Add a default constraint for :controller path segments that matches namespaced
              # controllers with default routes like :controller/:action/:id(.:format), e.g:
              # GET /admin/products/show/1
              # => { :controller => 'admin/products', :action => 'show', :id => '1' }
              @options.reverse_merge!(:controller => /.+?/)
            end

111 112
            # Add a constraint for wildcard route to make it non-greedy and match the
            # optional format part of the route by default
113
            if path.match(WILDCARD_PATH) && @options[:format] != false
114 115 116
              @options.reverse_merge!(:"#{$1}" => /.+?/)
            end

117 118 119
            if @options[:format] == false
              @options.delete(:format)
              path
120
            elsif path.include?(":format") || path.end_with?('/')
121 122 123 124
              path
            else
              "#{path}(.:format)"
            end
125
          end
126

127 128
          def app
            Constraints.new(
129
              to.respond_to?(:call) ? to : Routing::RouteSet::Dispatcher.new(:defaults => defaults),
130 131
              blocks,
              @set.request_class
132
            )
133 134
          end

135 136 137
          def conditions
            { :path_info => @path }.merge(constraints).merge(request_method_condition)
          end
J
Joshua Peek 已提交
138

139
          def requirements
140
            @requirements ||= (@options[:constraints].is_a?(Hash) ? @options[:constraints] : {}).tap do |requirements|
141 142 143 144
              requirements.reverse_merge!(@scope[:constraints]) if @scope[:constraints]
              @options.each { |k, v| requirements[k] = v if v.is_a?(Regexp) }
            end
          end
145

146
          def defaults
147 148 149 150 151 152
            @defaults ||= (@options[:defaults] || {}).tap do |defaults|
              defaults.reverse_merge!(@scope[:defaults]) if @scope[:defaults]
              @options.each { |k, v| defaults[k] = v unless v.is_a?(Regexp) || IGNORE_OPTIONS.include?(k.to_sym) }
            end
          end

153
          def default_controller_and_action(to_shorthand=nil)
154
            if to.respond_to?(:call)
155 156
              { }
            else
157
              if to.is_a?(String)
158
                controller, action = to.split('#')
159 160
              elsif to.is_a?(Symbol)
                action = to.to_s
161
              end
J
Joshua Peek 已提交
162

163 164
              controller ||= default_controller
              action     ||= default_action
165

166 167 168
              unless controller.is_a?(Regexp) || to_shorthand
                controller = [@scope[:module], controller].compact.join("/").presence
              end
169

170 171 172 173
              if controller.is_a?(String) && controller =~ %r{\A/}
                raise ArgumentError, "controller name should not start with a slash"
              end

174 175
              controller = controller.to_s unless controller.is_a?(Regexp)
              action     = action.to_s     unless action.is_a?(Regexp)
176

177
              if controller.blank? && segment_keys.exclude?("controller")
178 179
                raise ArgumentError, "missing :controller"
              end
J
Joshua Peek 已提交
180

181
              if action.blank? && segment_keys.exclude?("action")
182 183
                raise ArgumentError, "missing :action"
              end
J
Joshua Peek 已提交
184

A
Aaron Patterson 已提交
185
              hash = {}
A
Aaron Patterson 已提交
186 187
              hash[:controller] = controller unless controller.blank?
              hash[:action]     = action unless action.blank?
A
Aaron Patterson 已提交
188
              hash
189 190
            end
          end
191

192
          def blocks
A
Aaron Patterson 已提交
193 194
            block = @scope[:blocks] || []

195
            if @options[:constraints].present? && !@options[:constraints].is_a?(Hash)
A
Aaron Patterson 已提交
196
              block << @options[:constraints]
197
            end
J
Joshua Peek 已提交
198

A
Aaron Patterson 已提交
199
            block
200
          end
J
Joshua Peek 已提交
201

202 203 204
          def constraints
            @constraints ||= requirements.reject { |k, v| segment_keys.include?(k.to_s) || k == :controller }
          end
205

206 207
          def request_method_condition
            if via = @options[:via]
208 209
              list = Array(via).map { |m| m.to_s.dasherize.upcase }
              { :request_method => list }
210 211
            else
              { }
212
            end
213
          end
J
Joshua Peek 已提交
214

215 216
          def segment_keys
            @segment_keys ||= Rack::Mount::RegexpWithNamedGroups.new(
217 218
              Rack::Mount::Strexp.compile(@path, requirements, SEPARATORS)
            ).names
219
          end
220

221 222 223
          def to
            @options[:to]
          end
J
Joshua Peek 已提交
224

225
          def default_controller
226
            if @options[:controller]
227
              @options[:controller]
228
            elsif @scope[:controller]
229
              @scope[:controller]
230
            end
231
          end
232 233 234

          def default_action
            if @options[:action]
235
              @options[:action]
236 237
            elsif @scope[:action]
              @scope[:action]
238 239
            end
          end
240
      end
241

242
      # Invokes Rack::Mount::Utils.normalize path and ensure that
243 244
      # (:locale) becomes (/:locale) instead of /(:locale). Except
      # for root cases, where the latter is the correct one.
245 246
      def self.normalize_path(path)
        path = Rack::Mount::Utils.normalize_path(path)
247
        path.gsub!(%r{/(\(+)/?}, '\1/') unless path =~ %r{^/\(+[^/]+\)$}
248 249 250
        path
      end

251 252 253 254
      def self.normalize_name(name)
        normalize_path(name)[1..-1].gsub("/", "_")
      end

255
      module Base
256 257 258 259
        # You can specify what Rails should route "/" to with the root method:
        #
        #   root :to => 'pages#main'
        #
260
        # For options, see +match+, as +root+ uses it internally.
261
        #
262 263 264
        # You should put the root route at the top of <tt>config/routes.rb</tt>,
        # because this means it will be matched first. As this is the most popular route
        # of most Rails applications, this is beneficial.
265 266 267
        def root(options = {})
          match '/', options.reverse_merge(:as => :root)
        end
268

269 270 271
        # Matches a url pattern to one or more routes. Any symbols in a pattern
        # are interpreted as url query parameters and thus available as +params+
        # in an action:
272
        #
273
        #   # sets :controller, :action and :id in params
274
        #   match ':controller/:action/:id'
275
        #
276 277 278 279 280 281 282 283 284 285 286 287
        # Two of these symbols are special, +:controller+ maps to the controller
        # and +:action+ to the controller's action. A pattern can also map
        # wildcard segments (globs) to params:
        #
        #   match 'songs/*category/:title' => 'songs#show'
        #
        #   # 'songs/rock/classic/stairway-to-heaven' sets
        #   #  params[:category] = 'rock/classic'
        #   #  params[:title] = 'stairway-to-heaven'
        #
        # When a pattern points to an internal route, the route's +:action+ and
        # +:controller+ should be set in options or hash shorthand. Examples:
288 289 290 291
        #
        #   match 'photos/:id' => 'photos#show'
        #   match 'photos/:id', :to => 'photos#show'
        #   match 'photos/:id', :controller => 'photos', :action => 'show'
292
        #
293 294 295 296 297 298 299 300
        # A pattern can also point to a +Rack+ endpoint i.e. anything that
        # responds to +call+:
        #
        #   match 'photos/:id' => lambda {|hash| [200, {}, "Coming soon" }
        #   match 'photos/:id' => PhotoRackApp
        #   # Yes, controller actions are just rack endpoints
        #   match 'photos/:id' => PhotosController.action(:show)
        #
301
        # === Options
302
        #
303
        # Any options not seen here are passed on as params with the url.
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
        #
        # [:controller]
        #   The route's controller.
        #
        # [:action]
        #   The route's action.
        #
        # [:path]
        #   The path prefix for the routes.
        #
        # [:module]
        #   The namespace for :controller.
        #
        #     match 'path' => 'c#a', :module => 'sekret', :controller => 'posts'
        #     #=> Sekret::PostsController
        #
        #   See <tt>Scoping#namespace</tt> for its scope equivalent.
        #
        # [:as]
        #   The name used to generate routing helpers.
        #
        # [:via]
        #   Allowed HTTP verb(s) for route.
        #
        #      match 'path' => 'c#a', :via => :get
        #      match 'path' => 'c#a', :via => [:get, :post]
        #
        # [:to]
332 333
        #   Points to a +Rack+ endpoint. Can be an object that responds to
        #   +call+ or a string representing a controller's action.
334
        #
335 336 337
        #      match 'path', :to => 'controller#action'
        #      match 'path', :to => lambda { [200, {}, "Success!"] }
        #      match 'path', :to => RackApp
338 339 340
        #
        # [:on]
        #   Shorthand for wrapping routes in a specific RESTful context. Valid
341
        #   values are +:member+, +:collection+, and +:new+. Only use within
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
        #   <tt>resource(s)</tt> block. For example:
        #
        #      resource :bar do
        #        match 'foo' => 'c#a', :on => :member, :via => [:get, :post]
        #      end
        #
        #   Is equivalent to:
        #
        #      resource :bar do
        #        member do
        #          match 'foo' => 'c#a', :via => [:get, :post]
        #        end
        #      end
        #
        # [:constraints]
        #   Constrains parameters with a hash of regular expressions or an
358
        #   object that responds to <tt>matches?</tt>
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
        #
        #     match 'path/:id', :constraints => { :id => /[A-Z]\d{5}/ }
        #
        #     class Blacklist
        #       def matches?(request) request.remote_ip == '1.2.3.4' end
        #     end
        #     match 'path' => 'c#a', :constraints => Blacklist.new
        #
        #   See <tt>Scoping#constraints</tt> for more examples with its scope
        #   equivalent.
        #
        # [:defaults]
        #   Sets defaults for parameters
        #
        #     # Sets params[:format] to 'jpg' by default
        #     match 'path' => 'c#a', :defaults => { :format => 'jpg' }
        #
        #   See <tt>Scoping#defaults</tt> for its scope equivalent.
377 378
        #
        # [:anchor]
379
        #   Boolean to anchor a <tt>match</tt> pattern. Default is true. When set to
380 381 382 383
        #   false, the pattern matches any request prefixed with the given path.
        #
        #     # Matches any request starting with 'path'
        #     match 'path' => 'c#a', :anchor => false
384
        def match(path, options=nil)
385 386 387
          mapping = Mapping.new(@set, @scope, path, options || {})
          app, conditions, requirements, defaults, as, anchor = mapping.to_route
          @set.add_route(app, conditions, requirements, defaults, as, anchor)
388 389
          self
        end
390

391 392
        # Mount a Rack-based application to be used within the application.
        #
R
Ryan Bigg 已提交
393
        #   mount SomeRackApp, :at => "some_route"
394 395 396
        #
        # Alternatively:
        #
R
Ryan Bigg 已提交
397
        #   mount(SomeRackApp => "some_route")
398
        #
399 400
        # For options, see +match+, as +mount+ uses it internally.
        #
401 402 403 404 405
        # All mounted applications come with routing helpers to access them.
        # These are named after the class specified, so for the above example
        # the helper is either +some_rack_app_path+ or +some_rack_app_url+.
        # To customize this helper's name, use the +:as+ option:
        #
R
Ryan Bigg 已提交
406
        #   mount(SomeRackApp => "some_route", :as => "exciting")
407 408 409
        #
        # This will generate the +exciting_path+ and +exciting_url+ helpers
        # which can be used to navigate to this mounted app.
410 411 412 413 414 415 416 417 418 419 420
        def mount(app, options = nil)
          if options
            path = options.delete(:at)
          else
            options = app
            app, path = options.find { |k, v| k.respond_to?(:call) }
            options.delete(app) if app
          end

          raise "A rack application must be specified" unless path

421 422
          options[:as] ||= app_name(app)

423
          match(path, options.merge(:to => app, :anchor => false, :format => false))
424 425

          define_generate_prefix(app, options[:as])
426 427 428
          self
        end

429 430 431 432
        def default_url_options=(options)
          @set.default_url_options = options
        end
        alias_method :default_url_options, :default_url_options=
433

434 435 436 437 438 439
        def with_default_scope(scope, &block)
          scope(scope) do
            instance_exec(&block)
          end
        end

440 441 442
        private
          def app_name(app)
            return unless app.respond_to?(:routes)
443 444 445 446 447 448 449

            if app.respond_to?(:railtie_name)
              app.railtie_name
            else
              class_name = app.class.is_a?(Class) ? app.name : app.class.name
              ActiveSupport::Inflector.underscore(class_name).gsub("/", "_")
            end
450 451 452
          end

          def define_generate_prefix(app, name)
453
            return unless app.respond_to?(:routes) && app.routes.respond_to?(:define_mounted_helper)
454 455

            _route = @set.named_routes.routes[name.to_sym]
P
Piotr Sarnacki 已提交
456 457
            _routes = @set
            app.routes.define_mounted_helper(name)
458 459
            app.routes.class_eval do
              define_method :_generate_prefix do |options|
P
Piotr Sarnacki 已提交
460
                prefix_options = options.slice(*_route.segment_keys)
461 462
                # we must actually delete prefix segment keys to avoid passing them to next url_for
                _route.segment_keys.each { |k| options.delete(k) }
P
Piotr Sarnacki 已提交
463
                _routes.url_helpers.send("#{name}_path", prefix_options)
464 465 466
              end
            end
          end
467 468 469
      end

      module HttpHelpers
470
        # Define a route that only recognizes HTTP GET.
471
        # For supported arguments, see <tt>Base#match</tt>.
472 473 474 475
        #
        # Example:
        #
        # get 'bacon', :to => 'food#bacon'
476 477 478 479
        def get(*args, &block)
          map_method(:get, *args, &block)
        end

480
        # Define a route that only recognizes HTTP POST.
481
        # For supported arguments, see <tt>Base#match</tt>.
482 483 484 485
        #
        # Example:
        #
        # post 'bacon', :to => 'food#bacon'
486 487 488 489
        def post(*args, &block)
          map_method(:post, *args, &block)
        end

490
        # Define a route that only recognizes HTTP PUT.
491
        # For supported arguments, see <tt>Base#match</tt>.
492 493 494 495
        #
        # Example:
        #
        # put 'bacon', :to => 'food#bacon'
496 497 498 499
        def put(*args, &block)
          map_method(:put, *args, &block)
        end

500
        # Define a route that only recognizes HTTP PUT.
501
        # For supported arguments, see <tt>Base#match</tt>.
502 503 504 505
        #
        # Example:
        #
        # delete 'broccoli', :to => 'food#broccoli'
506 507 508 509 510 511 512 513 514 515 516 517 518 519
        def delete(*args, &block)
          map_method(:delete, *args, &block)
        end

        private
          def map_method(method, *args, &block)
            options = args.extract_options!
            options[:via] = method
            args.push(options)
            match(*args, &block)
            self
          end
      end

520 521 522
      # You may wish to organize groups of controllers under a namespace.
      # Most commonly, you might group a number of administrative controllers
      # under an +admin+ namespace. You would place these controllers under
S
Sebastian Martinez 已提交
523 524
      # the <tt>app/controllers/admin</tt> directory, and you can group them
      # together in your router:
525 526 527 528
      #
      #   namespace "admin" do
      #     resources :posts, :comments
      #   end
529
      #
530
      # This will create a number of routes for each of the posts and comments
S
Sebastian Martinez 已提交
531
      # controller. For <tt>Admin::PostsController</tt>, Rails will create:
532
      #
533 534 535 536 537 538 539
      #   GET	    /admin/posts
      #   GET	    /admin/posts/new
      #   POST	  /admin/posts
      #   GET	    /admin/posts/1
      #   GET	    /admin/posts/1/edit
      #   PUT	    /admin/posts/1
      #   DELETE  /admin/posts/1
540
      #
541
      # If you want to route /posts (without the prefix /admin) to
S
Sebastian Martinez 已提交
542
      # <tt>Admin::PostsController</tt>, you could use
543
      #
544
      #   scope :module => "admin" do
545
      #     resources :posts
546 547 548
      #   end
      #
      # or, for a single case
549
      #
550
      #   resources :posts, :module => "admin"
551
      #
S
Sebastian Martinez 已提交
552
      # If you want to route /admin/posts to +PostsController+
553
      # (without the Admin:: module prefix), you could use
554
      #
555
      #   scope "/admin" do
556
      #     resources :posts
557 558 559
      #   end
      #
      # or, for a single case
560
      #
561
      #   resources :posts, :path => "/admin/posts"
562 563 564
      #
      # In each of these cases, the named routes remain the same as if you did
      # not use scope. In the last case, the following paths map to
S
Sebastian Martinez 已提交
565
      # +PostsController+:
566
      #
567 568 569 570 571 572 573
      #   GET	    /admin/posts
      #   GET	    /admin/posts/new
      #   POST	  /admin/posts
      #   GET	    /admin/posts/1
      #   GET	    /admin/posts/1/edit
      #   PUT	    /admin/posts/1
      #   DELETE  /admin/posts/1
574
      module Scoping
575
        # Scopes a set of routes to the given default options.
576 577 578 579 580 581 582 583
        #
        # Take the following route definition as an example:
        #
        #   scope :path => ":account_id", :as => "account" do
        #     resources :projects
        #   end
        #
        # This generates helpers such as +account_projects_path+, just like +resources+ does.
584 585
        # The difference here being that the routes generated are like /:account_id/projects,
        # rather than /accounts/:account_id/projects.
586
        #
587
        # === Options
588
        #
589
        # Takes same options as <tt>Base#match</tt> and <tt>Resources#resources</tt>.
590
        #
591
        # === Examples
592
        #
S
Sebastian Martinez 已提交
593
        #   # route /posts (without the prefix /admin) to <tt>Admin::PostsController</tt>
594 595 596
        #   scope :module => "admin" do
        #     resources :posts
        #   end
597
        #
598 599 600 601
        #   # prefix the posts resource's requests with '/admin'
        #   scope :path => "/admin" do
        #     resources :posts
        #   end
602
        #
S
Sebastian Martinez 已提交
603
        #   # prefix the routing helper name: +sekret_posts_path+ instead of +posts_path+
604 605 606
        #   scope :as => "sekret" do
        #     resources :posts
        #   end
607 608
        def scope(*args)
          options = args.extract_options!
609
          options = options.dup
610

611
          options[:path] = args.first if args.first.is_a?(String)
612
          recover = {}
613

614 615 616
          options[:constraints] ||= {}
          unless options[:constraints].is_a?(Hash)
            block, options[:constraints] = options[:constraints], {}
617
          end
618

619 620 621 622 623
          scope_options.each do |option|
            if value = options.delete(option)
              recover[option] = @scope[option]
              @scope[option]  = send("merge_#{option}_scope", @scope[option], value)
            end
624 625
          end

626 627
          recover[:block] = @scope[:blocks]
          @scope[:blocks] = merge_blocks_scope(@scope[:blocks], block)
628

629 630
          recover[:options] = @scope[:options]
          @scope[:options]  = merge_options_scope(@scope[:options], options)
631 632 633 634

          yield
          self
        ensure
635 636 637 638 639 640
          scope_options.each do |option|
            @scope[option] = recover[option] if recover.has_key?(option)
          end

          @scope[:options] = recover[:options]
          @scope[:blocks]  = recover[:block]
641 642
        end

643 644 645 646 647 648
        # Scopes routes to a specific controller
        #
        # Example:
        #   controller "food" do
        #     match "bacon", :action => "bacon"
        #   end
649 650 651
        def controller(controller, options={})
          options[:controller] = controller
          scope(options) { yield }
652 653
        end

654 655 656 657 658 659 660 661
        # Scopes routes to a specific namespace. For example:
        #
        #   namespace :admin do
        #     resources :posts
        #   end
        #
        # This generates the following routes:
        #
662 663 664 665 666 667 668
        #       admin_posts GET    /admin/posts(.:format)          {:action=>"index", :controller=>"admin/posts"}
        #       admin_posts POST   /admin/posts(.:format)          {:action=>"create", :controller=>"admin/posts"}
        #    new_admin_post GET    /admin/posts/new(.:format)      {:action=>"new", :controller=>"admin/posts"}
        #   edit_admin_post GET    /admin/posts/:id/edit(.:format) {:action=>"edit", :controller=>"admin/posts"}
        #        admin_post GET    /admin/posts/:id(.:format)      {:action=>"show", :controller=>"admin/posts"}
        #        admin_post PUT    /admin/posts/:id(.:format)      {:action=>"update", :controller=>"admin/posts"}
        #        admin_post DELETE /admin/posts/:id(.:format)      {:action=>"destroy", :controller=>"admin/posts"}
669
        #
670
        # === Options
671
        #
672 673
        # The +:path+, +:as+, +:module+, +:shallow_path+ and +:shallow_prefix+
        # options all default to the name of the namespace.
674
        #
675 676
        # For options, see <tt>Base#match</tt>. For +:shallow_path+ option, see
        # <tt>Resources#resources</tt>.
677
        #
678
        # === Examples
679
        #
680 681 682 683
        #   # accessible through /sekret/posts rather than /admin/posts
        #   namespace :admin, :path => "sekret" do
        #     resources :posts
        #   end
684
        #
S
Sebastian Martinez 已提交
685
        #   # maps to <tt>Sekret::PostsController</tt> rather than <tt>Admin::PostsController</tt>
686 687 688
        #   namespace :admin, :module => "sekret" do
        #     resources :posts
        #   end
689
        #
S
Sebastian Martinez 已提交
690
        #   # generates +sekret_posts_path+ rather than +admin_posts_path+
691 692 693
        #   namespace :admin, :as => "sekret" do
        #     resources :posts
        #   end
694
        def namespace(path, options = {})
695
          path = path.to_s
696 697 698
          options = { :path => path, :as => path, :module => path,
                      :shallow_path => path, :shallow_prefix => path }.merge!(options)
          scope(options) { yield }
699
        end
700

R
Ryan Bigg 已提交
701 702 703 704 705 706 707 708 709 710
        # === Parameter Restriction
        # Allows you to constrain the nested routes based on a set of rules.
        # For instance, in order to change the routes to allow for a dot character in the +id+ parameter:
        #
        #   constraints(:id => /\d+\.\d+) do
        #     resources :posts
        #   end
        #
        # Now routes such as +/posts/1+ will no longer be valid, but +/posts/1.1+ will be.
        # The +id+ parameter must match the constraint passed in for this example.
711
        #
R
R.T. Lechow 已提交
712
        # You may use this to also restrict other parameters:
R
Ryan Bigg 已提交
713 714 715 716 717
        #
        #   resources :posts do
        #     constraints(:post_id => /\d+\.\d+) do
        #       resources :comments
        #     end
J
James Miller 已提交
718
        #   end
R
Ryan Bigg 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732
        #
        # === Restricting based on IP
        #
        # Routes can also be constrained to an IP or a certain range of IP addresses:
        #
        #   constraints(:ip => /192.168.\d+.\d+/) do
        #     resources :posts
        #   end
        #
        # Any user connecting from the 192.168.* range will be able to see this resource,
        # where as any user connecting outside of this range will be told there is no such route.
        #
        # === Dynamic request matching
        #
R
R.T. Lechow 已提交
733
        # Requests to routes can be constrained based on specific criteria:
R
Ryan Bigg 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
        #
        #    constraints(lambda { |req| req.env["HTTP_USER_AGENT"] =~ /iPhone/ }) do
        #      resources :iphones
        #    end
        #
        # You are able to move this logic out into a class if it is too complex for routes.
        # This class must have a +matches?+ method defined on it which either returns +true+
        # if the user should be given access to that route, or +false+ if the user should not.
        #
        #    class Iphone
        #      def self.matches(request)
        #        request.env["HTTP_USER_AGENT"] =~ /iPhone/
        #      end
        #    end
        #
        # An expected place for this code would be +lib/constraints+.
        #
        # This class is then used like this:
        #
        #    constraints(Iphone) do
        #      resources :iphones
        #    end
756 757 758 759
        def constraints(constraints = {})
          scope(:constraints => constraints) { yield }
        end

R
Ryan Bigg 已提交
760
        # Allows you to set default parameters for a route, such as this:
761 762 763
        #   defaults :id => 'home' do
        #     match 'scoped_pages/(:id)', :to => 'pages#show'
        #   end
R
Ryan Bigg 已提交
764
        # Using this, the +:id+ parameter here will default to 'home'.
765 766 767 768
        def defaults(defaults = {})
          scope(:defaults => defaults) { yield }
        end

769
        private
J
José Valim 已提交
770
          def scope_options #:nodoc:
771 772 773
            @scope_options ||= private_methods.grep(/^merge_(.+)_scope$/) { $1.to_sym }
          end

J
José Valim 已提交
774
          def merge_path_scope(parent, child) #:nodoc:
775
            Mapper.normalize_path("#{parent}/#{child}")
776 777
          end

J
José Valim 已提交
778
          def merge_shallow_path_scope(parent, child) #:nodoc:
779 780 781
            Mapper.normalize_path("#{parent}/#{child}")
          end

J
José Valim 已提交
782
          def merge_as_scope(parent, child) #:nodoc:
783
            parent ? "#{parent}_#{child}" : child
784 785
          end

J
José Valim 已提交
786
          def merge_shallow_prefix_scope(parent, child) #:nodoc:
787 788 789
            parent ? "#{parent}_#{child}" : child
          end

J
José Valim 已提交
790
          def merge_module_scope(parent, child) #:nodoc:
791 792 793
            parent ? "#{parent}/#{child}" : child
          end

J
José Valim 已提交
794
          def merge_controller_scope(parent, child) #:nodoc:
795
            child
796 797
          end

J
José Valim 已提交
798
          def merge_path_names_scope(parent, child) #:nodoc:
799 800 801
            merge_options_scope(parent, child)
          end

J
José Valim 已提交
802
          def merge_constraints_scope(parent, child) #:nodoc:
803 804 805
            merge_options_scope(parent, child)
          end

J
José Valim 已提交
806
          def merge_defaults_scope(parent, child) #:nodoc:
807 808 809
            merge_options_scope(parent, child)
          end

J
José Valim 已提交
810
          def merge_blocks_scope(parent, child) #:nodoc:
811 812 813
            merged = parent ? parent.dup : []
            merged << child if child
            merged
814 815
          end

J
José Valim 已提交
816
          def merge_options_scope(parent, child) #:nodoc:
817
            (parent || {}).except(*override_keys(child)).merge(child)
818
          end
819

J
José Valim 已提交
820
          def merge_shallow_scope(parent, child) #:nodoc:
821 822
            child ? true : false
          end
823

J
José Valim 已提交
824
          def override_keys(child) #:nodoc:
825 826
            child.key?(:only) || child.key?(:except) ? [:only, :except] : []
          end
827 828
      end

829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
      # Resource routing allows you to quickly declare all of the common routes
      # for a given resourceful controller. Instead of declaring separate routes
      # for your +index+, +show+, +new+, +edit+, +create+, +update+ and +destroy+
      # actions, a resourceful route declares them in a single line of code:
      #
      #  resources :photos
      #
      # Sometimes, you have a resource that clients always look up without
      # referencing an ID. A common example, /profile always shows the profile of
      # the currently logged in user. In this case, you can use a singular resource
      # to map /profile (rather than /profile/:id) to the show action.
      #
      #  resource :profile
      #
      # It's common to have resources that are logically children of other
      # resources:
      #
      #   resources :magazines do
      #     resources :ads
      #   end
      #
      # You may wish to organize groups of controllers under a namespace. Most
      # commonly, you might group a number of administrative controllers under
      # an +admin+ namespace. You would place these controllers under the
S
Sebastian Martinez 已提交
853 854
      # <tt>app/controllers/admin</tt> directory, and you can group them together
      # in your router:
855 856 857 858 859
      #
      #   namespace "admin" do
      #     resources :posts, :comments
      #   end
      #
S
Sebastian Martinez 已提交
860 861
      # By default the +:id+ parameter doesn't accept dots. If you need to
      # use dots as part of the +:id+ parameter add a constraint which
862 863 864 865
      # overrides this restriction, e.g:
      #
      #   resources :articles, :id => /[^\/]+/
      #
S
Sebastian Martinez 已提交
866
      # This allows any character other than a slash as part of your +:id+.
867
      #
J
Joshua Peek 已提交
868
      module Resources
869 870
        # CANONICAL_ACTIONS holds all actions that does not need a prefix or
        # a path appended since they fit properly in their scope level.
871 872 873
        VALID_ON_OPTIONS  = [:new, :collection, :member]
        RESOURCE_OPTIONS  = [:as, :controller, :path, :only, :except]
        CANONICAL_ACTIONS = %w(index create new show update destroy)
874

875
        class Resource #:nodoc:
876
          DEFAULT_ACTIONS = [:index, :create, :new, :show, :update, :destroy, :edit]
877

878
          attr_reader :controller, :path, :options
879 880

          def initialize(entities, options = {})
881
            @name       = entities.to_s
882
            @path       = (options.delete(:path) || @name).to_s
883
            @controller = (options.delete(:controller) || @name).to_s
884
            @as         = options.delete(:as)
885
            @options    = options
886 887
          end

888
          def default_actions
889
            self.class::DEFAULT_ACTIONS
890 891
          end

892
          def actions
893
            if only = @options[:only]
894
              Array(only).map(&:to_sym)
895
            elsif except = @options[:except]
896 897 898 899 900 901
              default_actions - Array(except).map(&:to_sym)
            else
              default_actions
            end
          end

902
          def name
903
            @as || @name
904 905
          end

906
          def plural
907
            @plural ||= name.to_s
908 909 910
          end

          def singular
911
            @singular ||= name.to_s.singularize
912 913
          end

914
          alias :member_name :singular
915

916
          # Checks for uncountable plurals, and appends "_index" if the plural
917
          # and singular form are the same.
918
          def collection_name
919
            singular == plural ? "#{plural}_index" : plural
920 921
          end

922
          def resource_scope
923
            { :controller => controller }
924 925
          end

926
          alias :collection_scope :path
927 928

          def member_scope
929
            "#{path}/:id"
930 931
          end

932
          def new_scope(new_path)
933
            "#{path}/#{new_path}"
934 935 936
          end

          def nested_scope
937
            "#{path}/:#{singular}_id"
938
          end
939

940 941 942
        end

        class SingletonResource < Resource #:nodoc:
943
          DEFAULT_ACTIONS = [:show, :create, :update, :destroy, :new, :edit]
944

945
          def initialize(entities, options)
946
            @as         = nil
947
            @name       = entities.to_s
948
            @path       = (options.delete(:path) || @name).to_s
949
            @controller = (options.delete(:controller) || plural).to_s
950 951 952 953
            @as         = options.delete(:as)
            @options    = options
          end

954 955
          def plural
            @plural ||= name.to_s.pluralize
956 957
          end

958 959
          def singular
            @singular ||= name.to_s
960
          end
961 962 963 964 965 966

          alias :member_name :singular
          alias :collection_name :singular

          alias :member_scope :path
          alias :nested_scope :path
967 968
        end

969 970 971 972
        def resources_path_names(options)
          @scope[:path_names].merge!(options)
        end

973 974 975 976 977 978 979 980 981
        # Sometimes, you have a resource that clients always look up without
        # referencing an ID. A common example, /profile always shows the
        # profile of the currently logged in user. In this case, you can use
        # a singular resource to map /profile (rather than /profile/:id) to
        # the show action:
        #
        #   resource :geocoder
        #
        # creates six different routes in your application, all mapping to
S
Sebastian Martinez 已提交
982
        # the +GeoCoders+ controller (note that the controller is named after
983 984 985 986 987 988 989 990
        # the plural):
        #
        #   GET     /geocoder/new
        #   POST    /geocoder
        #   GET     /geocoder
        #   GET     /geocoder/edit
        #   PUT     /geocoder
        #   DELETE  /geocoder
991
        #
992
        # === Options
993
        # Takes same options as +resources+.
J
Joshua Peek 已提交
994
        def resource(*resources, &block)
J
Joshua Peek 已提交
995
          options = resources.extract_options!
J
Joshua Peek 已提交
996

997
          if apply_common_behavior_for(:resource, resources, options, &block)
998 999 1000
            return self
          end

1001 1002
          resource_scope(SingletonResource.new(resources.pop, options)) do
            yield if block_given?
1003

1004
            collection do
1005
              post :create
1006
            end if parent_resource.actions.include?(:create)
1007

1008
            new do
1009
              get :new
1010
            end if parent_resource.actions.include?(:new)
1011

1012
            member do
1013
              get    :edit if parent_resource.actions.include?(:edit)
1014 1015 1016
              get    :show if parent_resource.actions.include?(:show)
              put    :update if parent_resource.actions.include?(:update)
              delete :destroy if parent_resource.actions.include?(:destroy)
1017 1018 1019
            end
          end

J
Joshua Peek 已提交
1020
          self
1021 1022
        end

1023 1024 1025 1026 1027 1028 1029 1030
        # In Rails, a resourceful route provides a mapping between HTTP verbs
        # and URLs and controller actions. By convention, each action also maps
        # to particular CRUD operations in a database. A single entry in the
        # routing file, such as
        #
        #   resources :photos
        #
        # creates seven different routes in your application, all mapping to
S
Sebastian Martinez 已提交
1031
        # the +Photos+ controller:
1032 1033 1034 1035 1036 1037 1038
        #
        #   GET     /photos/new
        #   POST    /photos
        #   GET     /photos/:id
        #   GET     /photos/:id/edit
        #   PUT     /photos/:id
        #   DELETE  /photos/:id
1039
        #
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
        # Resources can also be nested infinitely by using this block syntax:
        #
        #   resources :photos do
        #     resources :comments
        #   end
        #
        # This generates the following comments routes:
        #
        #   GET     /photos/:id/comments/new
        #   POST    /photos/:id/comments
        #   GET     /photos/:id/comments/:id
        #   GET     /photos/:id/comments/:id/edit
        #   PUT     /photos/:id/comments/:id
        #   DELETE  /photos/:id/comments/:id
        #
1055
        # === Options
1056 1057
        # Takes same options as <tt>Base#match</tt> as well as:
        #
1058 1059 1060 1061 1062 1063 1064
        # [:path_names]
        #   Allows you to change the paths of the seven default actions.
        #   Paths not specified are not changed.
        #
        #     resources :posts, :path_names => { :new => "brand_new" }
        #
        #   The above example will now change /posts/new to /posts/brand_new
1065
        #
1066 1067
        # [:only]
        #   Only generate routes for the given actions.
1068
        #
1069 1070
        #     resources :cows, :only => :show
        #     resources :cows, :only => [:show, :index]
1071
        #
1072 1073
        # [:except]
        #   Generate all routes except for the given actions.
1074
        #
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
        #     resources :cows, :except => :show
        #     resources :cows, :except => [:show, :index]
        #
        # [:shallow]
        #   Generates shallow routes for nested resource(s). When placed on a parent resource,
        #   generates shallow routes for all nested resources.
        #
        #     resources :posts, :shallow => true do
        #       resources :comments
        #     end
        #
        #   Is the same as:
        #
        #     resources :posts do
1089
        #       resources :comments, :except => [:show, :edit, :update, :destroy]
1090
        #     end
1091 1092 1093 1094 1095
        #     resources :comments, :only => [:show, :edit, :update, :destroy]
        #
        #   This allows URLs for resources that otherwise would be deeply nested such
        #   as a comment on a blog post like <tt>/posts/a-long-permalink/comments/1234</tt>
        #   to be shortened to just <tt>/comments/1234</tt>.
1096 1097 1098 1099
        #
        # [:shallow_path]
        #   Prefixes nested shallow routes with the specified path.
        #
1100 1101 1102 1103
        #     scope :shallow_path => "sekret" do
        #       resources :posts do
        #         resources :comments, :shallow => true
        #       end
1104 1105 1106 1107
        #     end
        #
        #   The +comments+ resource here will have the following routes generated for it:
        #
G
ganesh 已提交
1108 1109 1110
        #     post_comments    GET    /posts/:post_id/comments(.:format)
        #     post_comments    POST   /posts/:post_id/comments(.:format)
        #     new_post_comment GET    /posts/:post_id/comments/new(.:format)
1111 1112 1113 1114 1115 1116
        #     edit_comment     GET    /sekret/comments/:id/edit(.:format)
        #     comment          GET    /sekret/comments/:id(.:format)
        #     comment          PUT    /sekret/comments/:id(.:format)
        #     comment          DELETE /sekret/comments/:id(.:format)
        #
        # === Examples
1117
        #
S
Sebastian Martinez 已提交
1118
        #   # routes call <tt>Admin::PostsController</tt>
1119
        #   resources :posts, :module => "admin"
1120
        #
1121
        #   # resource actions are at /admin/posts.
1122
        #   resources :posts, :path => "admin/posts"
J
Joshua Peek 已提交
1123
        def resources(*resources, &block)
J
Joshua Peek 已提交
1124
          options = resources.extract_options!
1125

1126
          if apply_common_behavior_for(:resources, resources, options, &block)
1127 1128 1129
            return self
          end

1130
          resource_scope(Resource.new(resources.pop, options)) do
1131
            yield if block_given?
J
Joshua Peek 已提交
1132

1133
            collection do
1134 1135
              get  :index if parent_resource.actions.include?(:index)
              post :create if parent_resource.actions.include?(:create)
1136
            end
1137

1138
            new do
1139
              get :new
1140
            end if parent_resource.actions.include?(:new)
1141

1142
            member do
1143
              get    :edit if parent_resource.actions.include?(:edit)
1144 1145 1146
              get    :show if parent_resource.actions.include?(:show)
              put    :update if parent_resource.actions.include?(:update)
              delete :destroy if parent_resource.actions.include?(:destroy)
1147 1148 1149
            end
          end

J
Joshua Peek 已提交
1150
          self
1151 1152
        end

1153 1154 1155 1156 1157 1158 1159 1160 1161
        # To add a route to the collection:
        #
        #   resources :photos do
        #     collection do
        #       get 'search'
        #     end
        #   end
        #
        # This will enable Rails to recognize paths such as <tt>/photos/search</tt>
S
Sebastian Martinez 已提交
1162
        # with GET, and route to the search action of +PhotosController+. It will also
1163 1164
        # create the <tt>search_photos_url</tt> and <tt>search_photos_path</tt>
        # route helpers.
J
Joshua Peek 已提交
1165
        def collection
1166 1167
          unless resource_scope?
            raise ArgumentError, "can't use collection outside resource(s) scope"
1168 1169
          end

1170 1171 1172 1173
          with_scope_level(:collection) do
            scope(parent_resource.collection_scope) do
              yield
            end
J
Joshua Peek 已提交
1174
          end
1175
        end
J
Joshua Peek 已提交
1176

1177 1178 1179 1180 1181 1182 1183 1184 1185
        # To add a member route, add a member block into the resource block:
        #
        #   resources :photos do
        #     member do
        #       get 'preview'
        #     end
        #   end
        #
        # This will recognize <tt>/photos/1/preview</tt> with GET, and route to the
S
Sebastian Martinez 已提交
1186
        # preview action of +PhotosController+. It will also create the
1187
        # <tt>preview_photo_url</tt> and <tt>preview_photo_path</tt> helpers.
J
Joshua Peek 已提交
1188
        def member
1189 1190
          unless resource_scope?
            raise ArgumentError, "can't use member outside resource(s) scope"
J
Joshua Peek 已提交
1191
          end
J
Joshua Peek 已提交
1192

1193 1194 1195 1196
          with_scope_level(:member) do
            scope(parent_resource.member_scope) do
              yield
            end
1197 1198 1199 1200 1201 1202 1203
          end
        end

        def new
          unless resource_scope?
            raise ArgumentError, "can't use new outside resource(s) scope"
          end
1204

1205 1206 1207 1208
          with_scope_level(:new) do
            scope(parent_resource.new_scope(action_path(:new))) do
              yield
            end
J
Joshua Peek 已提交
1209
          end
J
Joshua Peek 已提交
1210 1211
        end

1212
        def nested
1213 1214
          unless resource_scope?
            raise ArgumentError, "can't use nested outside resource(s) scope"
1215 1216 1217
          end

          with_scope_level(:nested) do
1218
            if shallow?
1219
              with_exclusive_scope do
1220
                if @scope[:shallow_path].blank?
1221
                  scope(parent_resource.nested_scope, nested_options) { yield }
1222
                else
1223
                  scope(@scope[:shallow_path], :as => @scope[:shallow_prefix]) do
1224
                    scope(parent_resource.nested_scope, nested_options) { yield }
1225 1226 1227 1228
                  end
                end
              end
            else
1229
              scope(parent_resource.nested_scope, nested_options) { yield }
1230 1231 1232 1233
            end
          end
        end

1234
        # See ActionDispatch::Routing::Mapper::Scoping#namespace
1235
        def namespace(path, options = {})
1236
          if resource_scope?
1237 1238 1239 1240 1241 1242
            nested { super }
          else
            super
          end
        end

1243
        def shallow
1244
          scope(:shallow => true, :shallow_path => @scope[:path]) do
1245 1246 1247 1248
            yield
          end
        end

1249 1250 1251 1252
        def shallow?
          parent_resource.instance_of?(Resource) && @scope[:shallow]
        end

J
Joshua Peek 已提交
1253
        def match(*args)
1254
          options = args.extract_options!.dup
1255 1256
          options[:anchor] = true unless options.key?(:anchor)

1257
          if args.length > 1
1258
            args.each { |path| match(path, options.dup) }
1259 1260 1261
            return self
          end

1262 1263
          on = options.delete(:on)
          if VALID_ON_OPTIONS.include?(on)
1264
            args.push(options)
1265 1266 1267
            return send(on){ match(*args) }
          elsif on
            raise ArgumentError, "Unknown scope #{on.inspect} given to :on"
1268 1269
          end

1270 1271 1272 1273
          if @scope[:scope_level] == :resources
            args.push(options)
            return nested { match(*args) }
          elsif @scope[:scope_level] == :resource
1274
            args.push(options)
J
Joshua Peek 已提交
1275 1276
            return member { match(*args) }
          end
J
Joshua Peek 已提交
1277

1278
          action = args.first
1279
          path = path_for_action(action, options.delete(:path))
1280

1281 1282 1283
          if action.to_s =~ /^[\w\/]+$/
            options[:action] ||= action unless action.to_s.include?("/")
          else
1284 1285 1286 1287 1288 1289 1290
            action = nil
          end

          if options.key?(:as) && !options[:as]
            options.delete(:as)
          else
            options[:as] = name_for_action(options[:as], action)
J
Joshua Peek 已提交
1291
          end
J
Joshua Peek 已提交
1292

1293
          super(path, options)
J
Joshua Peek 已提交
1294 1295
        end

1296
        def root(options={})
1297
          if @scope[:scope_level] == :resources
1298 1299
            with_scope_level(:root) do
              scope(parent_resource.path) do
1300 1301 1302 1303 1304 1305
                super(options)
              end
            end
          else
            super(options)
          end
1306 1307
        end

1308
        protected
1309

1310
          def parent_resource #:nodoc:
1311 1312 1313
            @scope[:scope_level_resource]
          end

J
José Valim 已提交
1314
          def apply_common_behavior_for(method, resources, options, &block) #:nodoc:
1315 1316 1317 1318 1319
            if resources.length > 1
              resources.each { |r| send(method, r, options, &block) }
              return true
            end

1320 1321 1322 1323 1324
            if resource_scope?
              nested { send(method, resources.pop, options, &block) }
              return true
            end

1325
            options.keys.each do |k|
1326 1327 1328
              (options[:constraints] ||= {})[k] = options.delete(k) if options[k].is_a?(Regexp)
            end

1329 1330 1331
            scope_options = options.slice!(*RESOURCE_OPTIONS)
            unless scope_options.empty?
              scope(scope_options) do
1332 1333 1334 1335 1336
                send(method, resources.pop, options, &block)
              end
              return true
            end

1337 1338 1339 1340
            unless action_options?(options)
              options.merge!(scope_action_options) if scope_action_options?
            end

1341 1342 1343
            false
          end

J
José Valim 已提交
1344
          def action_options?(options) #:nodoc:
1345 1346 1347
            options[:only] || options[:except]
          end

J
José Valim 已提交
1348
          def scope_action_options? #:nodoc:
1349 1350 1351
            @scope[:options].is_a?(Hash) && (@scope[:options][:only] || @scope[:options][:except])
          end

J
José Valim 已提交
1352
          def scope_action_options #:nodoc:
1353 1354 1355
            @scope[:options].slice(:only, :except)
          end

J
José Valim 已提交
1356
          def resource_scope? #:nodoc:
1357
            @scope[:scope_level].in?([:resource, :resources])
1358 1359
          end

J
José Valim 已提交
1360
          def resource_method_scope? #:nodoc:
1361
            @scope[:scope_level].in?([:collection, :member, :new])
1362 1363
          end

1364
          def with_exclusive_scope
1365
            begin
1366 1367
              old_name_prefix, old_path = @scope[:as], @scope[:path]
              @scope[:as], @scope[:path] = nil, nil
1368

1369 1370 1371
              with_scope_level(:exclusive) do
                yield
              end
1372
            ensure
1373
              @scope[:as], @scope[:path] = old_name_prefix, old_path
1374 1375 1376
            end
          end

1377
          def with_scope_level(kind, resource = parent_resource)
J
Joshua Peek 已提交
1378
            old, @scope[:scope_level] = @scope[:scope_level], kind
1379
            old_resource, @scope[:scope_level_resource] = @scope[:scope_level_resource], resource
J
Joshua Peek 已提交
1380 1381 1382
            yield
          ensure
            @scope[:scope_level] = old
1383
            @scope[:scope_level_resource] = old_resource
J
Joshua Peek 已提交
1384
          end
1385

J
José Valim 已提交
1386
          def resource_scope(resource) #:nodoc:
1387
            with_scope_level(resource.is_a?(SingletonResource) ? :resource : :resources, resource) do
1388
              scope(parent_resource.resource_scope) do
1389 1390 1391 1392 1393
                yield
              end
            end
          end

J
José Valim 已提交
1394
          def nested_options #:nodoc:
1395 1396 1397 1398 1399 1400
            {}.tap do |options|
              options[:as] = parent_resource.member_name
              options[:constraints] = { "#{parent_resource.singular}_id".to_sym => id_constraint } if id_constraint?
            end
          end

J
José Valim 已提交
1401
          def id_constraint? #:nodoc:
1402
            @scope[:constraints] && @scope[:constraints][:id].is_a?(Regexp)
1403 1404
          end

J
José Valim 已提交
1405
          def id_constraint #:nodoc:
1406
            @scope[:constraints][:id]
1407 1408
          end

J
José Valim 已提交
1409
          def canonical_action?(action, flag) #:nodoc:
1410
            flag && resource_method_scope? && CANONICAL_ACTIONS.include?(action.to_s)
1411 1412
          end

J
José Valim 已提交
1413
          def shallow_scoping? #:nodoc:
1414
            shallow? && @scope[:scope_level] == :member
1415 1416
          end

J
José Valim 已提交
1417
          def path_for_action(action, path) #:nodoc:
1418
            prefix = shallow_scoping? ?
1419 1420
              "#{@scope[:shallow_path]}/#{parent_resource.path}/:id" : @scope[:path]

1421 1422
            path = if canonical_action?(action, path.blank?)
              prefix.to_s
1423
            else
1424
              "#{prefix}/#{action_path(action, path)}"
1425 1426 1427
            end
          end

J
José Valim 已提交
1428
          def action_path(name, path = nil) #:nodoc:
1429 1430 1431
            # Ruby 1.8 can't transform empty strings to symbols
            name = name.to_sym if name.is_a?(String) && !name.empty?
            path || @scope[:path_names][name] || name.to_s
1432 1433
          end

J
José Valim 已提交
1434
          def prefix_name_for_action(as, action) #:nodoc:
1435
            if as
1436
              as.to_s
1437
            elsif !canonical_action?(action, @scope[:scope_level])
1438
              action.to_s
1439
            end
1440 1441
          end

J
José Valim 已提交
1442
          def name_for_action(as, action) #:nodoc:
1443
            prefix = prefix_name_for_action(as, action)
1444
            prefix = Mapper.normalize_name(prefix) if prefix
1445 1446 1447
            name_prefix = @scope[:as]

            if parent_resource
1448 1449
              return nil if as.nil? && action.nil?

1450 1451
              collection_name = parent_resource.collection_name
              member_name = parent_resource.member_name
1452
            end
1453

1454
            name = case @scope[:scope_level]
1455
            when :nested
1456
              [name_prefix, prefix]
1457
            when :collection
1458
              [prefix, name_prefix, collection_name]
1459
            when :new
1460 1461 1462 1463 1464
              [prefix, :new, name_prefix, member_name]
            when :member
              [prefix, shallow_scoping? ? @scope[:shallow_prefix] : name_prefix, member_name]
            when :root
              [name_prefix, collection_name, prefix]
1465
            else
1466
              [name_prefix, member_name, prefix]
1467
            end
1468

1469
            candidate = name.select(&:present?).join("_").presence
1470
            candidate unless as.nil? && @set.routes.find { |r| r.name == candidate }
1471
          end
J
Joshua Peek 已提交
1472
      end
J
Joshua Peek 已提交
1473

J
José Valim 已提交
1474
      module Shorthand #:nodoc:
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
        def match(*args)
          if args.size == 1 && args.last.is_a?(Hash)
            options  = args.pop
            path, to = options.find { |name, value| name.is_a?(String) }
            options.merge!(:to => to).delete(path)
            super(path, options)
          else
            super
          end
        end
      end

1487 1488 1489 1490 1491
      def initialize(set) #:nodoc:
        @set = set
        @scope = { :path_names => @set.resources_path_names }
      end

1492 1493
      include Base
      include HttpHelpers
1494
      include Redirection
1495 1496
      include Scoping
      include Resources
1497
      include Shorthand
J
Joshua Peek 已提交
1498 1499
    end
  end
J
Joshua Peek 已提交
1500
end