Class: Authorization::ControllerPermission

Inherits:
Object
  • Object
show all
Defined in:
lib/in_controller.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(actions, privilege, context, attribute_check = false, load_object_model = nil, load_object_method = nil, filter_block = nil) ⇒ ControllerPermission

Returns a new instance of ControllerPermission.



249
250
251
252
253
254
255
256
257
258
259
# File 'lib/in_controller.rb', line 249

def initialize (actions, privilege, context, attribute_check = false, 
                load_object_model = nil, load_object_method = nil,
                filter_block = nil)
  @actions = actions.to_set
  @privilege = privilege
  @context = context
  @load_object_model = load_object_model
  @load_object_method = load_object_method
  @filter_block = filter_block
  @attribute_check = attribute_check
end

Instance Attribute Details

#actionsObject (readonly)

Returns the value of attribute actions.



248
249
250
# File 'lib/in_controller.rb', line 248

def actions
  @actions
end

#attribute_checkObject (readonly)

Returns the value of attribute attribute_check.



248
249
250
# File 'lib/in_controller.rb', line 248

def attribute_check
  @attribute_check
end

#contextObject (readonly)

Returns the value of attribute context.



248
249
250
# File 'lib/in_controller.rb', line 248

def context
  @context
end

#privilegeObject (readonly)

Returns the value of attribute privilege.



248
249
250
# File 'lib/in_controller.rb', line 248

def privilege
  @privilege
end

Instance Method Details

#matches?(action_name) ⇒ Boolean

Returns:

  • (Boolean)


261
262
263
# File 'lib/in_controller.rb', line 261

def matches? (action_name)
  @actions.include?(action_name.to_sym)
end

#permit!(contr) ⇒ Object



265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/in_controller.rb', line 265

def permit! (contr)
  if @filter_block
    return contr.instance_eval(&@filter_block)
  end
  context = @context || contr.class.controller_name.to_sym
  object = @attribute_check ? load_object(contr, context) : nil
  privilege = @privilege || :"#{contr.action_name}"
  
  #puts "Trying permit?(#{privilege.inspect}, "
  #puts "               :user => #{contr.send(:current_user).inspect}, "
  #puts "               :object => #{object.inspect}," 
  #puts "               :skip_attribute_test => #{!@attribute_check}," 
  #puts "               :context => #{contr.class.controller_name.pluralize.to_sym})"
  res = contr.authorization_engine.permit!(privilege, 
                                     :user => contr.send(:current_user),
                                     :object => object,
                                     :skip_attribute_test => !@attribute_check,
                                     :context => context)
  #puts "permit? result: #{res.inspect}"
  res
end

#remove_actions(actions) ⇒ Object



287
288
289
290
# File 'lib/in_controller.rb', line 287

def remove_actions (actions)
  @actions -= actions
  self
end