author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 26 May 2009 11:23:39 +0200 | |
branch | stable |
changeset 1940 | 2565aae48d48 |
parent 1802 | d628defebc17 |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
0 | 1 |
"""Security hooks: check permissions to add/delete/update entities according to |
2 |
the user connected to a session |
|
3 |
||
4 |
:organization: Logilab |
|
479 | 5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
7 |
""" |
|
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
10 |
from cubicweb import Unauthorized |
|
11 |
from cubicweb.server.pool import LateOperation |
|
12 |
from cubicweb.server import BEFORE_ADD_RELATIONS, ON_COMMIT_ADD_RELATIONS |
|
13 |
||
14 |
def check_entity_attributes(session, entity): |
|
15 |
eid = entity.eid |
|
16 |
eschema = entity.e_schema |
|
17 |
# ._default_set is only there on entity creation to indicate unspecified |
|
18 |
# attributes which has been set to a default value defined in the schema |
|
19 |
defaults = getattr(entity, '_default_set', ()) |
|
20 |
for attr in entity.keys(): |
|
21 |
if attr in defaults: |
|
22 |
continue |
|
23 |
rschema = eschema.subject_relation(attr) |
|
24 |
if rschema.is_final(): # non final relation are checked by other hooks |
|
25 |
# add/delete should be equivalent (XXX: unify them into 'update' ?) |
|
26 |
rschema.check_perm(session, 'add', eid) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
27 |
|
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
28 |
|
0 | 29 |
class CheckEntityPermissionOp(LateOperation): |
30 |
def precommit_event(self): |
|
31 |
#print 'CheckEntityPermissionOp', self.session.user, self.entity, self.action |
|
32 |
self.entity.check_perm(self.action) |
|
33 |
check_entity_attributes(self.session, self.entity) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
34 |
|
0 | 35 |
def commit_event(self): |
36 |
pass |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
37 |
|
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
38 |
|
0 | 39 |
class CheckRelationPermissionOp(LateOperation): |
40 |
def precommit_event(self): |
|
41 |
self.rschema.check_perm(self.session, self.action, self.fromeid, self.toeid) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
42 |
|
0 | 43 |
def commit_event(self): |
44 |
pass |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
45 |
|
0 | 46 |
def after_add_entity(session, entity): |
47 |
if not session.is_super_session: |
|
48 |
CheckEntityPermissionOp(session, entity=entity, action='add') |
|
49 |
||
50 |
def after_update_entity(session, entity): |
|
51 |
if not session.is_super_session: |
|
52 |
try: |
|
53 |
# check user has permission right now, if not retry at commit time |
|
54 |
entity.check_perm('update') |
|
55 |
check_entity_attributes(session, entity) |
|
56 |
except Unauthorized: |
|
475
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
57 |
entity.clear_local_perm_cache('update') |
0 | 58 |
CheckEntityPermissionOp(session, entity=entity, action='update') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
59 |
|
0 | 60 |
def before_del_entity(session, eid): |
61 |
if not session.is_super_session: |
|
62 |
eschema = session.repo.schema[session.describe(eid)[0]] |
|
63 |
eschema.check_perm(session, 'delete', eid) |
|
64 |
||
65 |
||
66 |
def before_add_relation(session, fromeid, rtype, toeid): |
|
67 |
if rtype in BEFORE_ADD_RELATIONS and not session.is_super_session: |
|
68 |
rschema = session.repo.schema[rtype] |
|
69 |
rschema.check_perm(session, 'add', fromeid, toeid) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
70 |
|
0 | 71 |
def after_add_relation(session, fromeid, rtype, toeid): |
72 |
if not rtype in BEFORE_ADD_RELATIONS and not session.is_super_session: |
|
73 |
rschema = session.repo.schema[rtype] |
|
74 |
if rtype in ON_COMMIT_ADD_RELATIONS: |
|
75 |
CheckRelationPermissionOp(session, action='add', rschema=rschema, |
|
76 |
fromeid=fromeid, toeid=toeid) |
|
77 |
else: |
|
78 |
rschema.check_perm(session, 'add', fromeid, toeid) |
|
79 |
||
80 |
def before_del_relation(session, fromeid, rtype, toeid): |
|
81 |
if not session.is_super_session: |
|
82 |
session.repo.schema[rtype].check_perm(session, 'delete', fromeid, toeid) |
|
83 |
||
84 |
def register_security_hooks(hm): |
|
85 |
"""register meta-data related hooks on the hooks manager""" |
|
86 |
hm.register_hook(after_add_entity, 'after_add_entity', '') |
|
87 |
hm.register_hook(after_update_entity, 'after_update_entity', '') |
|
88 |
hm.register_hook(before_del_entity, 'before_delete_entity', '') |
|
89 |
hm.register_hook(before_add_relation, 'before_add_relation', '') |
|
90 |
hm.register_hook(after_add_relation, 'after_add_relation', '') |
|
91 |
hm.register_hook(before_del_relation, 'before_delete_relation', '') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
92 |