Not sure if you read about it already but pyramid does come with a really nice permission system. Authorization with ACL.
How to handle it, it really only depend of you...
You could have a ACL table
(object_id, allow/deny, who?(group, userid), permission, order)
- object_id is a unique id to a record in your database
- allow/deny is what this ACE is supposed to do...allow or deny access
- who? is either a group, username or whatever you want for example system.everyone is everyone
- permission is the permission parameter in view_config
- order is one important thing order does matter
For example
__acl__ = [
(Deny, Everyone, 'view'),
(Allow, 'group:admin', 'view')
]
This sample will always deny view even for admin... As soon as pyramid find something that tells you if you can see or not see a record it automatically stop searching
__acl__ = [
(Allow, 'group:admin', 'view'),
(Deny, Everyone, 'view')
]
This will allow view for every admin but not for anyone else. That is why you have to remember the order of your ACEs.
The fun part is here actually. This is all good. You have acl mapped to a record in your data. When you load for example a page... You will have to load the acl and set them in your object.
myobject.__acl__ = load_acls(myobject)
If you have a data tree. You can even not set acls.
For example you have a site that looks like that
root
\--pages with acl
+---- page1 without acl
\---- page2 with acl
When you will access page1, it will check for acl if it can't find it, it will check for parent if parent has an acl, it will check permission for it, if it doesn't it will check for its parent until you reach root. If it can't find the permission, im not so sure what happens.. I guess it will either give you a forbidden error or predicate error. That it can't find the proper view.
That said, in order to make that work you have to make location aware object that knows their parents.
But why would you want to do all that?
You can have acl for any object and have really fine grained control on who can watch or not every object in your database. You can also put acl directly in your class object without database.
as long as your acl is in the attribute acl pyramid will be able to do something with it. It's not really important how you got it.
Check this out
http://pyramid.readthedocs.org/en/1.3-branch/tutorials/wiki/authorization.html
GRANT/REVOKEcommand which is used to allow access (At various levels) to tables/schemas in the database. Some of them even have the concept of user-groups, too, which means that you can do the command for the entire group. So you could be attempting to do something at the application level, which is already present at the database level (which would be much more secure). – Clockwork-Muse Apr 17 '12 at 15:52GRANTis for database users, yes. But if you wrote your app to check permissions (based on who/what logged into the app), you may as well log them in as a specific database user, too (you can supply these in the connection string, usually). Which would help with auditing, as well as controlling access. – Clockwork-Muse Apr 17 '12 at 20:28