Class: ActionDispatch::Routing::Mapper::Resources::Resource

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

Overview

:nodoc:

Direct Known Subclasses

SingletonResource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entities, api_only, shallow, options = {}) ⇒ Resource

Returns a new instance of Resource.



1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
# File 'lib/action_dispatch/routing/mapper.rb', line 1129

def initialize(entities, api_only, shallow, options = {})
  @name       = entities.to_s
  @path       = (options[:path] || @name).to_s
  @controller = (options[:controller] || @name).to_s
  @as         = options[:as]
  @param      = (options[:param] || :id).to_sym
  @options    = options
  @shallow    = shallow
  @api_only   = api_only
  @only       = options.delete :only
  @except     = options.delete :except
end

Instance Attribute Details

#controllerObject (readonly)

Returns the value of attribute controller.



1127
1128
1129
# File 'lib/action_dispatch/routing/mapper.rb', line 1127

def controller
  @controller
end

#paramObject (readonly)

Returns the value of attribute param.



1127
1128
1129
# File 'lib/action_dispatch/routing/mapper.rb', line 1127

def param
  @param
end

#pathObject (readonly) Also known as: collection_scope

Returns the value of attribute path.



1127
1128
1129
# File 'lib/action_dispatch/routing/mapper.rb', line 1127

def path
  @path
end

Instance Method Details

#actionsObject



1150
1151
1152
1153
1154
1155
1156
1157
1158
# File 'lib/action_dispatch/routing/mapper.rb', line 1150

def actions
  if @only
    Array(@only).map(&:to_sym)
  elsif @except
    default_actions - Array(@except).map(&:to_sym)
  else
    default_actions
  end
end

#collection_nameObject

Checks for uncountable plurals, and appends “_index” if the plural and singular form are the same.



1176
1177
1178
# File 'lib/action_dispatch/routing/mapper.rb', line 1176

def collection_name
  singular == plural ? "#{plural}_index" : plural
end

#default_actionsObject



1142
1143
1144
1145
1146
1147
1148
# File 'lib/action_dispatch/routing/mapper.rb', line 1142

def default_actions
  if @api_only
    [:index, :create, :show, :update, :destroy]
  else
    [:index, :create, :new, :show, :update, :destroy, :edit]
  end
end

#member_scopeObject Also known as: shallow_scope



1186
1187
1188
# File 'lib/action_dispatch/routing/mapper.rb', line 1186

def member_scope
  "#{path}/:#{param}"
end

#nameObject



1160
1161
1162
# File 'lib/action_dispatch/routing/mapper.rb', line 1160

def name
  @as || @name
end

#nested_paramObject



1196
1197
1198
# File 'lib/action_dispatch/routing/mapper.rb', line 1196

def nested_param
  :"#{singular}_#{param}"
end

#nested_scopeObject



1200
1201
1202
# File 'lib/action_dispatch/routing/mapper.rb', line 1200

def nested_scope
  "#{path}/:#{nested_param}"
end

#new_scope(new_path) ⇒ Object



1192
1193
1194
# File 'lib/action_dispatch/routing/mapper.rb', line 1192

def new_scope(new_path)
  "#{path}/#{new_path}"
end

#pluralObject



1164
1165
1166
# File 'lib/action_dispatch/routing/mapper.rb', line 1164

def plural
  @plural ||= name.to_s
end

#resource_scopeObject



1180
1181
1182
# File 'lib/action_dispatch/routing/mapper.rb', line 1180

def resource_scope
  controller
end

#shallow?Boolean

Returns:

  • (Boolean)


1204
1205
1206
# File 'lib/action_dispatch/routing/mapper.rb', line 1204

def shallow?
  @shallow
end

#singleton?Boolean

Returns:

  • (Boolean)


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

def singleton?; false; end

#singularObject Also known as: member_name



1168
1169
1170
# File 'lib/action_dispatch/routing/mapper.rb', line 1168

def singular
  @singular ||= name.to_s.singularize
end