Class: Authorization::ControllerPermission
- Inherits:
-
Object
- Object
- Authorization::ControllerPermission
- Defined in:
- lib/declarative_authorization/in_controller.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#actions ⇒ Object
readonly
Returns the value of attribute actions.
-
#attribute_check ⇒ Object
readonly
Returns the value of attribute attribute_check.
-
#context ⇒ Object
readonly
Returns the value of attribute context.
-
#privilege ⇒ Object
readonly
Returns the value of attribute privilege.
Instance Method Summary collapse
-
#initialize(actions, privilege, context, attribute_check = false, load_object_model = nil, load_object_method = nil, filter_block = nil) ⇒ ControllerPermission
constructor
A new instance of ControllerPermission.
- #matches?(action_name) ⇒ Boolean
- #permit!(contr) ⇒ Object
- #remove_actions(actions) ⇒ Object
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.
281 282 283 284 285 286 287 288 289 290 291 |
# File 'lib/declarative_authorization/in_controller.rb', line 281 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
#actions ⇒ Object (readonly)
Returns the value of attribute actions.
280 281 282 |
# File 'lib/declarative_authorization/in_controller.rb', line 280 def actions @actions end |
#attribute_check ⇒ Object (readonly)
Returns the value of attribute attribute_check.
280 281 282 |
# File 'lib/declarative_authorization/in_controller.rb', line 280 def attribute_check @attribute_check end |
#context ⇒ Object (readonly)
Returns the value of attribute context.
280 281 282 |
# File 'lib/declarative_authorization/in_controller.rb', line 280 def context @context end |
#privilege ⇒ Object (readonly)
Returns the value of attribute privilege.
280 281 282 |
# File 'lib/declarative_authorization/in_controller.rb', line 280 def privilege @privilege end |
Instance Method Details
#matches?(action_name) ⇒ Boolean
293 294 295 |
# File 'lib/declarative_authorization/in_controller.rb', line 293 def matches? (action_name) @actions.include?(action_name.to_sym) end |
#permit!(contr) ⇒ Object
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/declarative_authorization/in_controller.rb', line 297 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..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
319 320 321 322 |
# File 'lib/declarative_authorization/in_controller.rb', line 319 def remove_actions (actions) @actions -= actions self end |