Class: ActionDispatch::Routing::RouteSet
- Inherits:
-
Object
- Object
- ActionDispatch::Routing::RouteSet
- Defined in:
- actionpack/lib/action_dispatch/routing/route_set.rb
Overview
:nodoc:
Defined Under Namespace
Modules: MountedHelpers Classes: Dispatcher, Generator, NamedRouteCollection
Constant Summary
- PARAMETERS_KEY =
'action_dispatch.request.path_parameters'- RESERVED_OPTIONS =
[:host, :protocol, :port, :subdomain, :domain, :tld_length, :trailing_slash, :anchor, :params, :only_path, :script_name]
Instance Attribute Summary (collapse)
-
- (Object) default_scope
Returns the value of attribute default_scope.
-
- (Object) default_url_options
Returns the value of attribute default_url_options.
-
- (Object) disable_clear_and_finalize
Returns the value of attribute disable_clear_and_finalize.
-
- (Object) formatter
Returns the value of attribute formatter.
-
- (Object) named_routes
Returns the value of attribute named_routes.
-
- (Object) request_class
Returns the value of attribute request_class.
-
- (Object) resources_path_names
Returns the value of attribute resources_path_names.
-
- (Object) router
Returns the value of attribute router.
-
- (Object) set
(also: #routes)
Returns the value of attribute set.
-
- (Object) valid_conditions
Returns the value of attribute valid_conditions.
Class Method Summary (collapse)
Instance Method Summary (collapse)
- - (Object) _generate_prefix(options = {})
- - (Object) add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true)
- - (Object) append(&block)
- - (Object) call(env)
- - (Object) clear!
- - (Object) define_mounted_helper(name)
- - (Object) draw(&block)
- - (Boolean) empty?
- - (Object) eval_block(block)
-
- (Object) extra_keys(options, recall = {})
Generate the path indicated by the arguments, and return an array of the keys that were not used to generate it.
- - (Object) finalize!
- - (Object) generate(options, recall = {}, extras = false)
- - (Object) generate_extras(options, recall = {})
-
- (RouteSet) initialize(request_class = ActionDispatch::Request)
constructor
A new instance of RouteSet.
- - (Object) install_helpers(destinations = [ActionController::Base, ActionView::Base], regenerate_code = false)
- - (Object) mounted_helpers
- - (Object) prepend(&block)
- - (Object) recognize_path(path, environment = {})
- - (Object) url_for(options)
- - (Object) url_helpers
Constructor Details
- (RouteSet) initialize(request_class = ActionDispatch::Request)
A new instance of RouteSet
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 230 def initialize(request_class = ActionDispatch::Request) self.named_routes = NamedRouteCollection.new self.resources_path_names = self.class.default_resources_path_names.dup self. = {} self.request_class = request_class @valid_conditions = {} request_class.public_instance_methods.each { |m| @valid_conditions[m.to_sym] = true } @valid_conditions[:controller] = true @valid_conditions[:action] = true self.valid_conditions.delete(:id) @append = [] @prepend = [] @disable_clear_and_finalize = false @finalized = false @set = Journey::Routes.new @router = Journey::Router.new(@set, { :parameters_key => PARAMETERS_KEY, :request_class => request_class}) @formatter = Journey::Formatter.new @set end |
Instance Attribute Details
- (Object) default_scope
Returns the value of attribute default_scope
220 221 222 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 220 def default_scope @default_scope end |
- (Object) default_url_options
Returns the value of attribute default_url_options
222 223 224 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 222 def @default_url_options end |
- (Object) disable_clear_and_finalize
Returns the value of attribute disable_clear_and_finalize
221 222 223 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 221 def disable_clear_and_finalize @disable_clear_and_finalize end |
- (Object) formatter
Returns the value of attribute formatter
220 221 222 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 220 def formatter @formatter end |
- (Object) named_routes
Returns the value of attribute named_routes
220 221 222 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 220 def named_routes @named_routes end |
- (Object) request_class
Returns the value of attribute request_class
222 223 224 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 222 def request_class @request_class end |
- (Object) resources_path_names
Returns the value of attribute resources_path_names
221 222 223 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 221 def resources_path_names @resources_path_names end |
- (Object) router
Returns the value of attribute router
220 221 222 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 220 def router @router end |
- (Object) set Also known as: routes
Returns the value of attribute set
220 221 222 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 220 def set @set end |
- (Object) valid_conditions
Returns the value of attribute valid_conditions
222 223 224 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 222 def valid_conditions @valid_conditions end |
Class Method Details
+ (Object) default_resources_path_names
226 227 228 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 226 def self.default_resources_path_names { :new => 'new', :edit => 'edit' } end |
Instance Method Details
- (Object) _generate_prefix(options = {})
567 568 569 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 567 def _generate_prefix( = {}) nil end |
- (Object) add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true)
362 363 364 365 366 367 368 369 370 371 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 362 def add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true) raise ArgumentError, "Invalid route name: '#{name}'" unless name.blank? || name.to_s.match(/^[_a-z]\w*$/i) path = build_path(conditions.delete(:path_info), requirements, SEPARATORS, anchor) conditions = build_conditions(conditions, valid_conditions, path.names.map { |x| x.to_sym }) route = @set.add_route(app, path, conditions, defaults, name) named_routes[name] = route if name route end |
- (Object) append(&block)
265 266 267 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 265 def append(&block) @append << block end |
- (Object) call(env)
598 599 600 601 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 598 def call(env) finalize! @router.call(env) end |
- (Object) clear!
292 293 294 295 296 297 298 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 292 def clear! @finalized = false named_routes.clear set.clear formatter.clear @prepend.each { |blk| eval_block(blk) } end |
- (Object) define_mounted_helper(name)
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 312 def define_mounted_helper(name) return if MountedHelpers.method_defined?(name) routes = self MountedHelpers.class_eval do define_method "_#{name}" do RoutesProxy.new(routes, self._routes_context) end end MountedHelpers.class_eval <<-RUBY def #{name} @#{name} ||= _#{name} end RUBY end |
- (Object) draw(&block)
258 259 260 261 262 263 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 258 def draw(&block) clear! unless @disable_clear_and_finalize eval_block(block) finalize! unless @disable_clear_and_finalize nil end |
- (Boolean) empty?
358 359 360 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 358 def empty? routes.empty? end |
- (Object) eval_block(block)
273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 273 def eval_block(block) if block.arity == 1 raise "You are using the old router DSL which has been removed in Rails 3.1. " << "Please check how to update your routes file at: http://www.engineyard.com/blog/2010/the-lowdown-on-routes-in-rails-3/" end mapper = Mapper.new(self) if default_scope mapper.with_default_scope(default_scope, &block) else mapper.instance_exec(&block) end end |
- (Object) extra_keys(options, recall = {})
Generate the path indicated by the arguments, and return an array of the keys that were not used to generate it.
552 553 554 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 552 def extra_keys(, recall={}) generate_extras(, recall).last end |
- (Object) finalize!
286 287 288 289 290 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 286 def finalize! return if @finalized @append.each { |blk| eval_block(blk) } @finalized = true end |
- (Object) generate(options, recall = {}, extras = false)
560 561 562 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 560 def generate(, recall = {}, extras = false) Generator.new(, recall, self, extras).generate end |
- (Object) generate_extras(options, recall = {})
556 557 558 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 556 def generate_extras(, recall={}) generate(, recall, true) end |
- (Object) install_helpers(destinations = [ActionController::Base, ActionView::Base], regenerate_code = false)
300 301 302 303 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 300 def install_helpers(destinations = [ActionController::Base, ActionView::Base], regenerate_code = false) Array(destinations).each { |d| d.module_eval { include Helpers } } named_routes.install(destinations, regenerate_code) end |
- (Object) mounted_helpers
308 309 310 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 308 def mounted_helpers MountedHelpers end |
- (Object) prepend(&block)
269 270 271 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 269 def prepend(&block) @prepend << block end |
- (Object) recognize_path(path, environment = {})
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 603 def recognize_path(path, environment = {}) method = (environment[:method] || "GET").to_s.upcase path = Journey::Router::Utils.normalize_path(path) unless path =~ %r{://} begin env = Rack::MockRequest.env_for(path, {:method => method}) rescue URI::InvalidURIError => e raise ActionController::RoutingError, e. end req = @request_class.new(env) @router.recognize(req) do |route, matches, params| params.each do |key, value| if value.is_a?(String) value = value.dup.force_encoding(Encoding::BINARY) if value.encoding_aware? params[key] = URI.parser.unescape(value) end end dispatcher = route.app while dispatcher.is_a?(Mapper::Constraints) && dispatcher.matches?(env) do dispatcher = dispatcher.app end if dispatcher.is_a?(Dispatcher) && dispatcher.controller(params, false) dispatcher.prepare_params!(params) return params end end raise ActionController::RoutingError, "No route matches #{path.inspect}" end |
- (Object) url_for(options)
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 571 def url_for() finalize! = ( || {}).reverse_merge!() handle_positional_args() user, password = extract_authentication() path_segments = .delete(:_path_segments) script_name = .delete(:script_name) path = (script_name.blank? ? _generate_prefix() : script_name.chomp('/')).to_s = .except(*RESERVED_OPTIONS) = yield() if block_given? path_addition, params = generate(, path_segments || {}) path << path_addition params.merge!([:params] || {}) ActionDispatch::Http::URL.url_for(.merge!({ :path => path, :params => params, :user => user, :password => password })) end |
- (Object) url_helpers
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# File 'actionpack/lib/action_dispatch/routing/route_set.rb', line 329 def url_helpers @url_helpers ||= begin routes = self helpers = Module.new do extend ActiveSupport::Concern include UrlFor @_routes = routes class << self delegate :url_for, :to => '@_routes' end extend routes.named_routes.module # ROUTES TODO: install_helpers isn't great... can we make a module with the stuff that # we can include? # Yes plz - JP included do routes.install_helpers(self) singleton_class.send(:redefine_method, :_routes) { routes } end define_method(:_routes) { @_routes || routes } end helpers end end |