OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/lib/open_project/costs/patches/role_patch.rb

72 lines
2.2 KiB

module OpenProject::Costs::Patches::RolePatch
def self.included(base) # :nodoc:
base.send(:include, InstanceMethods)
# Same as typing in the class
base.class_eval do
unloadable
alias_method_chain :allowed_to?, :inheritance
end
end
module InstanceMethods
# Return true if the user is allowed to do the specified action on project
# action can be:
# * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit')
# * a permission Symbol (eg. :edit_project)
def allowed_to_with_inheritance?(action)
allowed_to_with_caching(action)
end
private
def allowed_to_with_caching(action)
@allowed_to_with_inheritance ||= {}
return @allowed_to_with_inheritance[action] if @allowed_to_with_inheritance.has_key?(action)
@allowed_to_with_inheritance[action] = allowed_to_without_caching(action)
end
def allowed_to_without_caching(action)
return true if allowed_to_without_inheritance?(action)
if action.is_a? Hash
# action is a parameter hash
# check the action based on the permissions of the role and all
# included permissions
allowed_inherited_actions.include? "#{action[:controller]}/#{action[:action]}"
else
# check, if the role has one of the parent permissions granted
permission = Redmine::AccessControl.permission(action)
return if permission.blank?
(permission.inherited_by + [permission]).map(&:name).detect {|parent| allowed_inherited_permissions.include? parent}
end
end
def allowed_inherited_permissions
@allowed_inherited_permissions ||= begin
all_permissions = allowed_permissions || []
(all_permissions | allowed_permissions.collect do |sym|
p = Redmine::AccessControl.permission(sym)
p ? p.inherits.collect(&:name) : []
end.flatten).uniq
end
end
def allowed_inherited_actions
@actions_allowed_inherited ||= begin
allowed_inherited_permissions.inject({}){|actions, p| actions[p] = Redmine::AccessControl.allowed_actions(p); actions}
end
end
end
end
Role.send(:include, OpenProject::Costs::Patches::RolePatch)