author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
Wed, 01 Dec 2010 16:52:30 +0100 | |
branch | oldstable |
changeset 6717 | a81cf7e7ffa2 |
parent 5556 | 9ab2b4c74baf |
child 7110 | 73b3e0e095d3 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
18 |
"""entity classes user and group entities""" |
583
d0c6f5efb837
fix rtags to have correct msgids for bookmarked_by relation
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
19 |
|
d0c6f5efb837
fix rtags to have correct msgids for bookmarked_by relation
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
20 |
__docformat__ = "restructuredtext en" |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
21 |
|
0 | 22 |
from logilab.common.decorators import cached |
23 |
||
24 |
from cubicweb import Unauthorized |
|
25 |
from cubicweb.entities import AnyEntity, fetch_config |
|
26 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
27 |
class CWGroup(AnyEntity): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2784
diff
changeset
|
28 |
__regid__ = 'CWGroup' |
0 | 29 |
fetch_attrs, fetch_order = fetch_config(['name']) |
1343
659d3dc42e68
sort on EUser.login/EGroup.name in vocabulary
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
30 |
fetch_unrelated_order = fetch_order |
0 | 31 |
|
32 |
def db_key_name(self): |
|
33 |
"""XXX goa specific""" |
|
34 |
return self.get('name') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
35 |
|
4246
c95b8c7e5fb2
don't use matching_groups() for is_in_group implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
36 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
37 |
class CWUser(AnyEntity): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2784
diff
changeset
|
38 |
__regid__ = 'CWUser' |
0 | 39 |
fetch_attrs, fetch_order = fetch_config(['login', 'firstname', 'surname']) |
1343
659d3dc42e68
sort on EUser.login/EGroup.name in vocabulary
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
40 |
fetch_unrelated_order = fetch_order |
1553 | 41 |
|
0 | 42 |
# used by repository to check if the user can log in or not |
43 |
AUTHENTICABLE_STATES = ('activated',) |
|
44 |
||
45 |
# low level utilities ##################################################### |
|
46 |
def __init__(self, *args, **kwargs): |
|
47 |
groups = kwargs.pop('groups', None) |
|
48 |
properties = kwargs.pop('properties', None) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
49 |
super(CWUser, self).__init__(*args, **kwargs) |
0 | 50 |
if groups is not None: |
51 |
self._groups = groups |
|
52 |
if properties is not None: |
|
53 |
self._properties = properties |
|
1553 | 54 |
|
0 | 55 |
@property |
56 |
def groups(self): |
|
57 |
try: |
|
58 |
return self._groups |
|
59 |
except AttributeError: |
|
60 |
self._groups = set(g.name for g in self.in_group) |
|
61 |
return self._groups |
|
1553 | 62 |
|
0 | 63 |
@property |
64 |
def properties(self): |
|
65 |
try: |
|
66 |
return self._properties |
|
67 |
except AttributeError: |
|
68 |
self._properties = dict((p.pkey, p.value) for p in self.reverse_for_user) |
|
69 |
return self._properties |
|
70 |
||
71 |
def property_value(self, key): |
|
72 |
try: |
|
73 |
# properties stored on the user aren't correctly typed |
|
74 |
# (e.g. all values are unicode string) |
|
3380
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
75 |
return self._cw.vreg.typed_value(key, self.properties[key]) |
0 | 76 |
except KeyError: |
77 |
pass |
|
78 |
except ValueError: |
|
3380
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
79 |
self.warning('incorrect value for eproperty %s of user %s', |
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
80 |
key, self.login) |
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
81 |
return self._cw.vreg.property_value(key) |
1553 | 82 |
|
0 | 83 |
def matching_groups(self, groups): |
84 |
"""return the number of the given group(s) in which the user is |
|
85 |
||
86 |
:type groups: str or iterable(str) |
|
87 |
:param groups: a group name or an iterable on group names |
|
88 |
""" |
|
89 |
if isinstance(groups, basestring): |
|
90 |
groups = frozenset((groups,)) |
|
91 |
elif isinstance(groups, (tuple, list)): |
|
92 |
groups = frozenset(groups) |
|
4246
c95b8c7e5fb2
don't use matching_groups() for is_in_group implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
93 |
return len(groups & self.groups) # XXX return the resulting set instead of its size |
0 | 94 |
|
95 |
def is_in_group(self, group): |
|
96 |
"""convience / shortcut method to test if the user belongs to `group` |
|
97 |
""" |
|
4402
360c532070f5
[entities] fix CWUser.is_in_group implementation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
4246
diff
changeset
|
98 |
return group in self.groups |
0 | 99 |
|
590 | 100 |
def is_anonymous(self): |
101 |
""" checks if user is an anonymous user""" |
|
102 |
#FIXME on the web-side anonymous user is detected according |
|
103 |
# to config['anonymous-user'], we don't have this info on |
|
1553 | 104 |
# the server side. |
590 | 105 |
return self.groups == frozenset(('guests', )) |
106 |
||
0 | 107 |
def owns(self, eid): |
108 |
try: |
|
4835
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4436
diff
changeset
|
109 |
return self._cw.execute( |
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4436
diff
changeset
|
110 |
'Any X WHERE X eid %(x)s, X owned_by U, U eid %(u)s', |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
111 |
{'x': eid, 'u': self.eid}) |
0 | 112 |
except Unauthorized: |
113 |
return False |
|
114 |
owns = cached(owns, keyarg=1) |
|
115 |
||
116 |
def has_permission(self, pname, contexteid=None): |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
117 |
rql = 'Any P WHERE P is CWPermission, U eid %(u)s, U in_group G, '\ |
0 | 118 |
'P name %(pname)s, P require_group G' |
119 |
kwargs = {'pname': pname, 'u': self.eid} |
|
120 |
if contexteid is not None: |
|
121 |
rql += ', X require_permission P, X eid %(x)s' |
|
122 |
kwargs['x'] = contexteid |
|
123 |
try: |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
124 |
return self._cw.execute(rql, kwargs) |
0 | 125 |
except Unauthorized: |
126 |
return False |
|
1553 | 127 |
|
0 | 128 |
# presentation utilities ################################################## |
1553 | 129 |
|
0 | 130 |
def name(self): |
131 |
"""construct a name using firstname / surname or login if not defined""" |
|
1553 | 132 |
|
0 | 133 |
if self.firstname and self.surname: |
3378
2f25f701301d
use ._cw instead of req on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3377
diff
changeset
|
134 |
return self._cw._('%(firstname)s %(surname)s') % { |
0 | 135 |
'firstname': self.firstname, 'surname' : self.surname} |
136 |
if self.firstname: |
|
137 |
return self.firstname |
|
138 |
return self.login |
|
139 |
||
140 |
def dc_title(self): |
|
141 |
return self.login |
|
142 |
||
143 |
dc_long_title = name |
|
144 |
||
145 |
def db_key_name(self): |
|
146 |
"""XXX goa specific""" |
|
147 |
return self.get('login') |
|
148 |
||
149 |
from logilab.common.deprecation import class_renamed |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
150 |
EUser = class_renamed('EUser', CWUser) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
151 |
EGroup = class_renamed('EGroup', CWGroup) |