author | Philippe Pepiot <ph@itsalwaysdns.eu> |
Tue, 31 Mar 2020 18:22:05 +0200 | |
changeset 12966 | 6cd938c29ca3 |
parent 12567 | 26744ad37953 |
permissions | -rw-r--r-- |
11348
70337ad23145
pep8 + docstrings and comments improvments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11057
diff
changeset
|
1 |
# copyright 2003-2016 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
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
|
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 |
|
0 | 20 |
from logilab.common.decorators import cached |
21 |
||
22 |
from cubicweb import Unauthorized |
|
23 |
from cubicweb.entities import AnyEntity, fetch_config |
|
24 |
||
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
25 |
|
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
26 |
def user_session_cache_key(user_eid, data_name): |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
27 |
return '{0}-{1}'.format(user_eid, data_name) |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
28 |
|
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
29 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
30 |
class CWGroup(AnyEntity): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2784
diff
changeset
|
31 |
__regid__ = 'CWGroup' |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7797
diff
changeset
|
32 |
fetch_attrs, cw_fetch_order = fetch_config(['name']) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7797
diff
changeset
|
33 |
cw_fetch_unrelated_order = cw_fetch_order |
7782
40a49f4350a5
backout 7780:a1d5365fefc1
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7780
diff
changeset
|
34 |
|
7994
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
35 |
def dc_long_title(self): |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
36 |
name = self.name |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
37 |
trname = self._cw._(name) |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
38 |
if trname != name: |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
39 |
return '%s (%s)' % (name, trname) |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
40 |
return name |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
41 |
|
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
42 |
@cached |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
43 |
def num_users(self): |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
44 |
"""return the number of users in this group""" |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
45 |
return self._cw.execute('Any COUNT(U) WHERE U in_group G, G eid %(g)s', |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
46 |
{'g': self.eid})[0][0] |
af3fb709c061
[management table] upgrade sources groups management table to new api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7845
diff
changeset
|
47 |
|
4246
c95b8c7e5fb2
don't use matching_groups() for is_in_group implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
48 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1343
diff
changeset
|
49 |
class CWUser(AnyEntity): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2784
diff
changeset
|
50 |
__regid__ = 'CWUser' |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7797
diff
changeset
|
51 |
fetch_attrs, cw_fetch_order = fetch_config(['login', 'firstname', 'surname']) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7797
diff
changeset
|
52 |
cw_fetch_unrelated_order = cw_fetch_order |
1553 | 53 |
|
0 | 54 |
# used by repository to check if the user can log in or not |
55 |
AUTHENTICABLE_STATES = ('activated',) |
|
56 |
||
57 |
# low level utilities ##################################################### |
|
1553 | 58 |
|
0 | 59 |
@property |
60 |
def groups(self): |
|
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
61 |
key = user_session_cache_key(self.eid, 'groups') |
0 | 62 |
try: |
12125
1d3a9bb46339
[session] Avoid deprecation warning on access to Connection.data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
12046
diff
changeset
|
63 |
return self._cw.transaction_data[key] |
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
64 |
except KeyError: |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
65 |
with self._cw.security_enabled(read=False): |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
66 |
groups = set(group for group, in self._cw.execute( |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
67 |
'Any GN WHERE U in_group G, G name GN, U eid %(userid)s', |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
68 |
{'userid': self.eid})) |
12125
1d3a9bb46339
[session] Avoid deprecation warning on access to Connection.data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
12046
diff
changeset
|
69 |
self._cw.transaction_data[key] = groups |
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
70 |
return groups |
1553 | 71 |
|
0 | 72 |
@property |
73 |
def properties(self): |
|
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
74 |
key = user_session_cache_key(self.eid, 'properties') |
0 | 75 |
try: |
12125
1d3a9bb46339
[session] Avoid deprecation warning on access to Connection.data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
12046
diff
changeset
|
76 |
return self._cw.transaction_data[key] |
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
77 |
except KeyError: |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
78 |
with self._cw.security_enabled(read=False): |
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
79 |
properties = dict(self._cw.execute( |
10141
62e1f9749d3a
[entities] Optimize CWUser.properties.
Christophe de Vienne <christophe@unlish.com>
parents:
9059
diff
changeset
|
80 |
'Any K, V WHERE P for_user U, U eid %(userid)s, ' |
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
81 |
'P pkey K, P value V', {'userid': self.eid})) |
12125
1d3a9bb46339
[session] Avoid deprecation warning on access to Connection.data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
12046
diff
changeset
|
82 |
self._cw.transaction_data[key] = properties |
11699
b48020a80dc3
Store user groups and properties as session data
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11352
diff
changeset
|
83 |
return properties |
0 | 84 |
|
8538
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
85 |
def prefered_language(self, language=None): |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
86 |
"""return language used by this user, if explicitly defined (eg not |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
87 |
using http negociation) |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
88 |
""" |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
89 |
language = language or self.property_value('ui.language') |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
90 |
vreg = self._cw.vreg |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
91 |
try: |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
92 |
vreg.config.translations[language] |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
93 |
except KeyError: |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
94 |
language = vreg.property_value('ui.language') |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
95 |
assert language in vreg.config.translations[language], language |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
96 |
return language |
00597256de18
[request/session] refactor language handling: don't attempt to sync web/repo languages
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8483
diff
changeset
|
97 |
|
0 | 98 |
def property_value(self, key): |
99 |
try: |
|
100 |
# properties stored on the user aren't correctly typed |
|
101 |
# (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
|
102 |
return self._cw.vreg.typed_value(key, self.properties[key]) |
0 | 103 |
except KeyError: |
104 |
pass |
|
105 |
except ValueError: |
|
3380
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
106 |
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
|
107 |
key, self.login) |
3be33dc83d8b
use ._cw.vreg instead of vreg on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3378
diff
changeset
|
108 |
return self._cw.vreg.property_value(key) |
1553 | 109 |
|
7110
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
110 |
def set_property(self, pkey, value): |
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
111 |
try: |
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
112 |
prop = self._cw.execute( |
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
113 |
'CWProperty X WHERE X pkey %(k)s, X for_user U, U eid %(u)s', |
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
114 |
{'k': pkey, 'u': self.eid}).get_entity(0, 0) |
7815
2a164a9cf81c
[exceptions] stop catching any exception in various places (closes #1942716)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7782
diff
changeset
|
115 |
except Exception: |
12567
26744ad37953
Drop python2 support
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
12125
diff
changeset
|
116 |
kwargs = dict(pkey=pkey, value=value) |
7120
e8b6fc55df2d
[cwuser, persistent properties] fix recent set_property implementation on CWUser: for_user is automatically handled for non-managers users (this is seriously debatable though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7110
diff
changeset
|
117 |
if self.is_in_group('managers'): |
e8b6fc55df2d
[cwuser, persistent properties] fix recent set_property implementation on CWUser: for_user is automatically handled for non-managers users (this is seriously debatable though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7110
diff
changeset
|
118 |
kwargs['for_user'] = self |
e8b6fc55df2d
[cwuser, persistent properties] fix recent set_property implementation on CWUser: for_user is automatically handled for non-managers users (this is seriously debatable though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7110
diff
changeset
|
119 |
self._cw.create_entity('CWProperty', **kwargs) |
7110
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
120 |
else: |
8483
4ba11607d84a
[entity api] unify set_attributes / set_relations into a cw_set method. Closes #2423719
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7994
diff
changeset
|
121 |
prop.cw_set(value=value) |
7110
73b3e0e095d3
[cwprops] add set_property method on CWUser instances, to ease setting of user specific properties
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
122 |
|
0 | 123 |
def matching_groups(self, groups): |
124 |
"""return the number of the given group(s) in which the user is |
|
125 |
||
126 |
:type groups: str or iterable(str) |
|
127 |
:param groups: a group name or an iterable on group names |
|
128 |
""" |
|
12567
26744ad37953
Drop python2 support
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
12125
diff
changeset
|
129 |
if isinstance(groups, str): |
0 | 130 |
groups = frozenset((groups,)) |
131 |
elif isinstance(groups, (tuple, list)): |
|
132 |
groups = frozenset(groups) |
|
11348
70337ad23145
pep8 + docstrings and comments improvments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11057
diff
changeset
|
133 |
return len(groups & self.groups) # XXX return the resulting set instead of its size |
0 | 134 |
|
135 |
def is_in_group(self, group): |
|
136 |
"""convience / shortcut method to test if the user belongs to `group` |
|
137 |
""" |
|
4402
360c532070f5
[entities] fix CWUser.is_in_group implementation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
4246
diff
changeset
|
138 |
return group in self.groups |
0 | 139 |
|
590 | 140 |
def is_anonymous(self): |
141 |
""" checks if user is an anonymous user""" |
|
11348
70337ad23145
pep8 + docstrings and comments improvments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11057
diff
changeset
|
142 |
# FIXME on the web-side anonymous user is detected according to config['anonymous-user'], |
70337ad23145
pep8 + docstrings and comments improvments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11057
diff
changeset
|
143 |
# we don't have this info on the server side. |
590 | 144 |
return self.groups == frozenset(('guests', )) |
145 |
||
0 | 146 |
def owns(self, eid): |
147 |
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
|
148 |
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
|
149 |
'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
|
150 |
{'x': eid, 'u': self.eid}) |
0 | 151 |
except Unauthorized: |
152 |
return False |
|
153 |
owns = cached(owns, keyarg=1) |
|
154 |
||
155 |
# presentation utilities ################################################## |
|
1553 | 156 |
|
0 | 157 |
def name(self): |
158 |
"""construct a name using firstname / surname or login if not defined""" |
|
1553 | 159 |
|
0 | 160 |
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
|
161 |
return self._cw._('%(firstname)s %(surname)s') % { |
11348
70337ad23145
pep8 + docstrings and comments improvments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
11057
diff
changeset
|
162 |
'firstname': self.firstname, 'surname': self.surname} |
0 | 163 |
if self.firstname: |
164 |
return self.firstname |
|
165 |
return self.login |
|
166 |
||
167 |
def dc_title(self): |
|
168 |
return self.login |
|
169 |
||
170 |
dc_long_title = name |