Class: RailsAdmin::Extensions::CanCan::AuthorizationAdapter

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_admin/extensions/cancan/authorization_adapter.rb

Overview

This adapter is for the CanCan authorization library. You can create another adapter for different authorization behavior, just be certain it responds to each of the public methods here.

Defined Under Namespace

Modules: ControllerExtension

Instance Method Summary collapse

Constructor Details

#initialize(controller, ability = ::Ability) ⇒ AuthorizationAdapter

See the authorize_with config method for where the initialization happens.



9
10
11
12
13
14
# File 'lib/rails_admin/extensions/cancan/authorization_adapter.rb', line 9

def initialize(controller, ability = ::Ability)
  @controller = controller
  @controller.instance_variable_set '@ability', ability
  @controller.extend ControllerExtension
  @controller.current_ability.authorize! :access, :rails_admin
end

Instance Method Details

#attributes_for(action, abstract_model) ⇒ Object

This is called in the new/create actions to determine the initial attributes for new records. It should return a hash of attributes which match what the user is authorized to create.



43
44
45
# File 'lib/rails_admin/extensions/cancan/authorization_adapter.rb', line 43

def attributes_for(action, abstract_model)
  @controller.current_ability.attributes_for(action, abstract_model && abstract_model.model)
end

#authorize(action, abstract_model = nil, model_object = nil) ⇒ Object

This method is called in every controller action and should raise an exception when the authorization fails. The first argument is the name of the controller action as a symbol (:create, :bulk_delete, etc.). The second argument is the AbstractModel instance that applies. The third argument is the actual model instance if it is available.



21
22
23
# File 'lib/rails_admin/extensions/cancan/authorization_adapter.rb', line 21

def authorize(action, abstract_model = nil, model_object = nil)
  @controller.current_ability.authorize!(action, model_object || abstract_model && abstract_model.model) if action
end

#authorized?(action, abstract_model = nil, model_object = nil) ⇒ Boolean

This method is called primarily from the view to determine whether the given user has access to perform the action on a given model. It should return true when authorized. This takes the same arguments as authorize. The difference is that this will return a boolean whereas authorize will raise an exception when not authorized.

Returns:

  • (Boolean)


29
30
31
# File 'lib/rails_admin/extensions/cancan/authorization_adapter.rb', line 29

def authorized?(action, abstract_model = nil, model_object = nil)
  @controller.current_ability.can?(action, model_object || abstract_model && abstract_model.model) if action
end

#query(action, abstract_model) ⇒ Object

This is called when needing to scope a database query. It is called within the list and bulk_delete/destroy actions and should return a scope which limits the records to those which the user can perform the given action on.



36
37
38
# File 'lib/rails_admin/extensions/cancan/authorization_adapter.rb', line 36

def query(action, abstract_model)
  abstract_model.model.accessible_by(@controller.current_ability, action)
end