Designing An ACL Based Permission System

Posted by ryanzec on Programmers See other posts from Programmers or by ryanzec
Published on 2012-03-20T21:32:03Z Indexed on 2012/03/20 23:39 UTC
Read the original article Hit count: 252

Filed under:
|
|

I am trying to create a permissions system where everything is going to be stored in MySQL (or some database) and pulled using PHP for a project management system I am building.  I am right now trying to do it is an ACL kind of way.  There are a number key features I want to be able to support:

1.  Being able to assign permissions without being tied to a specific object.

The reason for this is that I want to be able to selectively show/hide elements of the UI based on permissions at a point where I am not directly looking at a domain object instance.  For instance, a button to create a new project should only should only be shown to users that have the pm.project.create permission but obviously you can assign a create permission to an domain object instance (as it is already created).

2.  Not have to assign permissions for every single object.

Obviously creating permissions entries for every single object (projects, tickets, comments, etc…) would become a nightmare to maintain so I want to have some level of permission inheritance.

*3.  Be able to filter queries based on permissions.

This would be a really nice to have but I am not sure if it is possible.  What I mean by this is say I have a page that list all projects.  I want the query that pulls all projects to incorporate the ACL so that it would not show projects that the current user does not have pm.project.read access to.  This would have to be incorporated into the main query as if it is a process that is done after that main query (which I know I could do) certain features like pagination become much more difficult.

Right now this is my basic design for the tables:

AclEntities

  • id - the primary key
  • key - the unique identifier for the domain object (usually the primary key of that object)
  • parentId - the parent of the domain object (like the project object if this was a ticket object)
  • aclDomainObjectId - metadata about the domain object

AclDomainObjects

  • id - primary key
  • title - simple string to unique identify the domain object(ie. project, ticket, comment, etc…)
  • fullyQualifiedClassName - the fully qualified class name for use in code (I am using namespaces)

There would also be tables mapping AclEntities to Users and UserGroups. I also have this interface that all acl entity based object have to implement:

IAclEntity

  • getAclKey() - to the the unique key for this specific instance of the acl domain object (generally return the primary key or a concatenated string of a composite primary key)
  • getAclTitle() - to get the unique title for the domain object (generally just returning a static string)
  • getAclDisplayString() - get the string that represents this entity (generally one or more field on the object)
  • getAclParentEntity() - get the parent acl entity object (or null if no parent)
  • getAclEntity() - get the acl enitty object for this instance of the domain object (or null if one has not been created yet)
  • hasPermission($permissionString, $user = null) - whether or not the user has the permission for this instance of the domain object
  • static getFromAclEntityId($aclEntityId) - get a specific instance of the domain object from an acl entity id.

Do any of these features I am looking for seems hard to support or are just way off base? Am I missing or not taking in account anything in my implementation? Is performance something I should keep in mind?

© Programmers or respective owner

Related posts about design

Related posts about security