Class: ActionDispatch::Routing::Mapper::Scope

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/action_dispatch/routing/mapper.rb

Overview

:nodoc:

Constant Summary collapse

OPTIONS =
[:path, :shallow_path, :as, :shallow_prefix, :module,
:controller, :action, :path_names, :constraints,
:shallow, :blocks, :defaults, :via, :format, :options, :to]
RESOURCE_SCOPES =
[:resource, :resources]
RESOURCE_METHOD_SCOPES =
[:collection, :member, :new]
NULL =
Scope.new(nil, nil)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash, parent = NULL, scope_level = nil) ⇒ Scope

Returns a new instance of Scope.



2173
2174
2175
2176
2177
# File 'lib/action_dispatch/routing/mapper.rb', line 2173

def initialize(hash, parent = NULL, scope_level = nil)
  @hash = hash
  @parent = parent
  @scope_level = scope_level
end

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent.



2171
2172
2173
# File 'lib/action_dispatch/routing/mapper.rb', line 2171

def parent
  @parent
end

#scope_levelObject (readonly)

Returns the value of attribute scope_level.



2171
2172
2173
# File 'lib/action_dispatch/routing/mapper.rb', line 2171

def scope_level
  @scope_level
end

Instance Method Details

#[](key) ⇒ Object



2232
2233
2234
2235
# File 'lib/action_dispatch/routing/mapper.rb', line 2232

def [](key)
  scope = find { |node| node.frame.key? key }
  scope && scope.frame[key]
end

#action_name(name_prefix, prefix, collection_name, member_name) ⇒ Object



2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
# File 'lib/action_dispatch/routing/mapper.rb', line 2199

def action_name(name_prefix, prefix, collection_name, member_name)
  case scope_level
  when :nested
    [name_prefix, prefix]
  when :collection
    [prefix, name_prefix, collection_name]
  when :new
    [prefix, :new, name_prefix, member_name]
  when :member
    [prefix, name_prefix, member_name]
  when :root
    [name_prefix, collection_name, prefix]
  else
    [name_prefix, member_name, prefix]
  end
end

#eachObject



2239
2240
2241
2242
2243
2244
2245
# File 'lib/action_dispatch/routing/mapper.rb', line 2239

def each
  node = self
  until node.equal? NULL
    yield node
    node = node.parent
  end
end

#frameObject



2247
# File 'lib/action_dispatch/routing/mapper.rb', line 2247

def frame; @hash; end

#nested?Boolean

Returns:

  • (Boolean)


2179
2180
2181
# File 'lib/action_dispatch/routing/mapper.rb', line 2179

def nested?
  scope_level == :nested
end

#new(hash) ⇒ Object



2224
2225
2226
# File 'lib/action_dispatch/routing/mapper.rb', line 2224

def new(hash)
  self.class.new hash, self, scope_level
end

#new_level(level) ⇒ Object



2228
2229
2230
# File 'lib/action_dispatch/routing/mapper.rb', line 2228

def new_level(level)
  self.class.new(frame, self, level)
end

#null?Boolean

Returns:

  • (Boolean)


2183
2184
2185
# File 'lib/action_dispatch/routing/mapper.rb', line 2183

def null?
  @hash.nil? && @parent.nil?
end

#optionsObject



2220
2221
2222
# File 'lib/action_dispatch/routing/mapper.rb', line 2220

def options
  OPTIONS
end

#resource_method_scope?Boolean

Returns:

  • (Boolean)


2195
2196
2197
# File 'lib/action_dispatch/routing/mapper.rb', line 2195

def resource_method_scope?
  RESOURCE_METHOD_SCOPES.include? scope_level
end

#resource_scope?Boolean

Returns:

  • (Boolean)


2216
2217
2218
# File 'lib/action_dispatch/routing/mapper.rb', line 2216

def resource_scope?
  RESOURCE_SCOPES.include? scope_level
end

#resources?Boolean

Returns:

  • (Boolean)


2191
2192
2193
# File 'lib/action_dispatch/routing/mapper.rb', line 2191

def resources?
  scope_level == :resources
end

#root?Boolean

Returns:

  • (Boolean)


2187
2188
2189
# File 'lib/action_dispatch/routing/mapper.rb', line 2187

def root?
  @parent.null?
end