author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 29 Jun 2009 12:18:59 +0200 | |
changeset 2185 | 09d0445641e2 |
parent 2144 | 51c84d585456 |
child 2381 | caad2367d940 |
permissions | -rw-r--r-- |
0 | 1 |
"""Base class for entity objects manipulated in clients |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1904
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1904
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
1154 | 10 |
from warnings import warn |
11 |
||
0 | 12 |
from logilab.common import interface |
13 |
from logilab.common.compat import all |
|
14 |
from logilab.common.decorators import cached |
|
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
15 |
from logilab.common.deprecation import obsolete |
709 | 16 |
from logilab.mtconverter import TransformData, TransformError, html_escape |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
479
diff
changeset
|
17 |
|
0 | 18 |
from rql.utils import rqlvar_maker |
19 |
||
20 |
from cubicweb import Unauthorized |
|
21 |
from cubicweb.rset import ResultSet |
|
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
631
diff
changeset
|
22 |
from cubicweb.selectors import yes |
707 | 23 |
from cubicweb.appobject import AppRsetObject |
709 | 24 |
from cubicweb.schema import RQLVocabularyConstraint, RQLConstraint, bw_normalize_etype |
25 |
||
26 |
try: |
|
27 |
from cubicweb.common.uilib import printable_value, soup2xhtml |
|
28 |
from cubicweb.common.mixins import MI_REL_TRIGGERS |
|
29 |
from cubicweb.common.mttransforms import ENGINE |
|
30 |
except ImportError: |
|
31 |
# missing -common |
|
32 |
MI_REL_TRIGGERS = {} |
|
0 | 33 |
|
34 |
_marker = object() |
|
35 |
||
36 |
def greater_card(rschema, subjtypes, objtypes, index): |
|
37 |
for subjtype in subjtypes: |
|
38 |
for objtype in objtypes: |
|
39 |
card = rschema.rproperty(subjtype, objtype, 'cardinality')[index] |
|
40 |
if card in '+*': |
|
41 |
return card |
|
42 |
return '1' |
|
43 |
||
44 |
||
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
45 |
_MODE_TAGS = set(('link', 'create')) |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
46 |
_CATEGORY_TAGS = set(('primary', 'secondary', 'generic', 'generated')) # , 'metadata')) |
0 | 47 |
|
1154 | 48 |
try: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
49 |
from cubicweb.web import formwidgets, uicfg |
0 | 50 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
51 |
def _dispatch_rtags(tags, rtype, role, stype, otype): |
1154 | 52 |
for tag in tags: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
53 |
if tag in _MODE_TAGS: |
1739 | 54 |
uicfg.actionbox_appearsin_addmenu.tag_relation( |
55 |
(stype, rtype, otype, role), tag == 'create') |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
56 |
elif tag in _CATEGORY_TAGS: |
1739 | 57 |
uicfg.autoform_section.tag_relation((stype, rtype, otype, role), |
58 |
tag) |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
59 |
elif tag == 'inlineview': |
1739 | 60 |
uicfg.autoform_is_inlined.tag_relation((stype, rtype, otype, role), True) |
1154 | 61 |
else: |
62 |
raise ValueError(tag) |
|
1471
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
63 |
|
1154 | 64 |
except ImportError: |
1734
e8673144bc74
access to rwidgets through uicfg, removing buggy import breaking bw compat on the way
sylvain.thenault@logilab.fr
parents:
1721
diff
changeset
|
65 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
66 |
_dispatch_rtags = None |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
67 |
|
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
68 |
def _get_etype(bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
69 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
70 |
return classdict['id'] |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
71 |
except KeyError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
72 |
for base in bases: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
73 |
etype = getattr(base, 'id', None) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
74 |
if etype and etype != 'Any': |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
75 |
return etype |
1474 | 76 |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
77 |
def _get_defs(attr, name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
78 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
79 |
yield name, classdict.pop(attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
80 |
except KeyError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
81 |
for base in bases: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
82 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
83 |
value = getattr(base, attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
84 |
delattr(base, attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
85 |
yield base.__name__, value |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
86 |
except AttributeError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
87 |
continue |
1474 | 88 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
89 |
class _metaentity(type): |
0 | 90 |
"""this metaclass sets the relation tags on the entity class |
91 |
and deals with the `widgets` attribute |
|
92 |
""" |
|
93 |
def __new__(mcs, name, bases, classdict): |
|
94 |
# collect baseclass' rtags |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
95 |
etype = _get_etype(bases, classdict) |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
96 |
if etype and _dispatch_rtags is not None: |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
97 |
for name, rtags in _get_defs('__rtags__', name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
98 |
warn('%s: __rtags__ is deprecated' % name, DeprecationWarning) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
99 |
for relation, tags in rtags.iteritems(): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
100 |
# tags must become an iterable |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
101 |
if isinstance(tags, basestring): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
102 |
tags = (tags,) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
103 |
# relation must become a 3-uple (rtype, targettype, role) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
104 |
if isinstance(relation, basestring): |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
105 |
_dispatch_rtags(tags, relation, 'subject', etype, '*') |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
106 |
_dispatch_rtags(tags, relation, 'object', '*', etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
107 |
elif len(relation) == 1: # useful ? |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
108 |
_dispatch_rtags(tags, relation[0], 'subject', etype, '*') |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
109 |
_dispatch_rtags(tags, relation[0], 'object', '*', etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
110 |
elif len(relation) == 2: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
111 |
rtype, ttype = relation |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
112 |
ttype = bw_normalize_etype(ttype) # XXX bw compat |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
113 |
_dispatch_rtags(tags, rtype, 'subject', etype, ttype) |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
114 |
_dispatch_rtags(tags, rtype, 'object', ttype, etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
115 |
elif len(relation) == 3: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
116 |
rtype, ttype, role = relation |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
117 |
ttype = bw_normalize_etype(ttype) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
118 |
if role == 'subject': |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
119 |
_dispatch_rtags(tags, rtype, 'subject', etype, ttype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
120 |
else: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
121 |
_dispatch_rtags(tags, rtype, 'object', ttype, etype) |
1154 | 122 |
else: |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
123 |
raise ValueError('bad rtag definition (%r)' % (relation,)) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
124 |
for name, widgets in _get_defs('widgets', name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
125 |
warn('%s: widgets is deprecated' % name, DeprecationWarning) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
126 |
for rtype, wdgname in widgets.iteritems(): |
1804 | 127 |
if wdgname in ('URLWidget', 'EmbededURLWidget', 'RawDynamicComboBoxWidget'): |
1269 | 128 |
warn('%s widget is deprecated' % wdgname, DeprecationWarning) |
129 |
continue |
|
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
130 |
if wdgname == 'StringWidget': |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
131 |
wdgname = 'TextInput' |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
132 |
widget = getattr(formwidgets, wdgname) |
1582 | 133 |
assert hasattr(widget, 'render') |
1754
c9c7618a90de
autoform_widget superseeded by autoform_field_kwargs (api change addiction :-/)
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
134 |
uicfg.autoform_field_kwargs.tag_subject_of( |
c9c7618a90de
autoform_widget superseeded by autoform_field_kwargs (api change addiction :-/)
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
135 |
(etype, rtype, '*'), {'widget': widget}) |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
136 |
return super(_metaentity, mcs).__new__(mcs, name, bases, classdict) |
0 | 137 |
|
138 |
||
139 |
class Entity(AppRsetObject, dict): |
|
140 |
"""an entity instance has e_schema automagically set on |
|
141 |
the class and instances has access to their issuing cursor. |
|
1474 | 142 |
|
0 | 143 |
A property is set for each attribute and relation on each entity's type |
144 |
class. Becare that among attributes, 'eid' is *NEITHER* stored in the |
|
145 |
dict containment (which acts as a cache for other attributes dynamically |
|
146 |
fetched) |
|
147 |
||
148 |
:type e_schema: `cubicweb.schema.EntitySchema` |
|
149 |
:ivar e_schema: the entity's schema |
|
150 |
||
151 |
:type rest_var: str |
|
152 |
:cvar rest_var: indicates which attribute should be used to build REST urls |
|
153 |
If None is specified, the first non-meta attribute will |
|
154 |
be used |
|
1474 | 155 |
|
0 | 156 |
:type skip_copy_for: list |
157 |
:cvar skip_copy_for: a list of relations that should be skipped when copying |
|
158 |
this kind of entity. Note that some relations such |
|
159 |
as composite relations or relations that have '?1' as object |
|
160 |
cardinality |
|
161 |
""" |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
162 |
__metaclass__ = _metaentity |
0 | 163 |
__registry__ = 'etypes' |
717 | 164 |
__select__ = yes() |
1264
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
165 |
|
1474 | 166 |
# class attributes that must be set in class definition |
0 | 167 |
id = None |
168 |
rest_attr = None |
|
1138
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
169 |
fetch_attrs = None |
0 | 170 |
skip_copy_for = () |
1264
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
171 |
# class attributes set automatically at registration time |
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
172 |
e_schema = None |
1474 | 173 |
|
0 | 174 |
@classmethod |
175 |
def registered(cls, registry): |
|
176 |
"""build class using descriptor at registration time""" |
|
177 |
assert cls.id is not None |
|
178 |
super(Entity, cls).registered(registry) |
|
179 |
if cls.id != 'Any': |
|
180 |
cls.__initialize__() |
|
181 |
return cls |
|
1474 | 182 |
|
0 | 183 |
MODE_TAGS = set(('link', 'create')) |
184 |
CATEGORY_TAGS = set(('primary', 'secondary', 'generic', 'generated')) # , 'metadata')) |
|
185 |
@classmethod |
|
186 |
def __initialize__(cls): |
|
187 |
"""initialize a specific entity class by adding descriptors to access |
|
188 |
entity type's attributes and relations |
|
189 |
""" |
|
190 |
etype = cls.id |
|
191 |
assert etype != 'Any', etype |
|
192 |
cls.e_schema = eschema = cls.schema.eschema(etype) |
|
193 |
for rschema, _ in eschema.attribute_definitions(): |
|
194 |
if rschema.type == 'eid': |
|
195 |
continue |
|
196 |
setattr(cls, rschema.type, Attribute(rschema.type)) |
|
197 |
mixins = [] |
|
198 |
for rschema, _, x in eschema.relation_definitions(): |
|
199 |
if (rschema, x) in MI_REL_TRIGGERS: |
|
200 |
mixin = MI_REL_TRIGGERS[(rschema, x)] |
|
201 |
if not (issubclass(cls, mixin) or mixin in mixins): # already mixed ? |
|
202 |
mixins.append(mixin) |
|
203 |
for iface in getattr(mixin, '__implements__', ()): |
|
204 |
if not interface.implements(cls, iface): |
|
205 |
interface.extend(cls, iface) |
|
206 |
if x == 'subject': |
|
207 |
setattr(cls, rschema.type, SubjectRelation(rschema)) |
|
208 |
else: |
|
209 |
attr = 'reverse_%s' % rschema.type |
|
210 |
setattr(cls, attr, ObjectRelation(rschema)) |
|
211 |
if mixins: |
|
212 |
cls.__bases__ = tuple(mixins + [p for p in cls.__bases__ if not p is object]) |
|
213 |
cls.debug('plugged %s mixins on %s', mixins, etype) |
|
1474 | 214 |
|
0 | 215 |
@classmethod |
216 |
def fetch_rql(cls, user, restriction=None, fetchattrs=None, mainvar='X', |
|
217 |
settype=True, ordermethod='fetch_order'): |
|
218 |
"""return a rql to fetch all entities of the class type""" |
|
219 |
restrictions = restriction or [] |
|
220 |
if settype: |
|
221 |
restrictions.append('%s is %s' % (mainvar, cls.id)) |
|
222 |
if fetchattrs is None: |
|
223 |
fetchattrs = cls.fetch_attrs |
|
224 |
selection = [mainvar] |
|
225 |
orderby = [] |
|
226 |
# start from 26 to avoid possible conflicts with X |
|
227 |
varmaker = rqlvar_maker(index=26) |
|
228 |
cls._fetch_restrictions(mainvar, varmaker, fetchattrs, selection, |
|
229 |
orderby, restrictions, user, ordermethod) |
|
230 |
rql = 'Any %s' % ','.join(selection) |
|
231 |
if orderby: |
|
232 |
rql += ' ORDERBY %s' % ','.join(orderby) |
|
233 |
rql += ' WHERE %s' % ', '.join(restrictions) |
|
234 |
return rql |
|
1474 | 235 |
|
0 | 236 |
@classmethod |
237 |
def _fetch_restrictions(cls, mainvar, varmaker, fetchattrs, |
|
238 |
selection, orderby, restrictions, user, |
|
239 |
ordermethod='fetch_order', visited=None): |
|
240 |
eschema = cls.e_schema |
|
241 |
if visited is None: |
|
242 |
visited = set((eschema.type,)) |
|
243 |
elif eschema.type in visited: |
|
244 |
# avoid infinite recursion |
|
245 |
return |
|
246 |
else: |
|
247 |
visited.add(eschema.type) |
|
248 |
_fetchattrs = [] |
|
249 |
for attr in fetchattrs: |
|
250 |
try: |
|
251 |
rschema = eschema.subject_relation(attr) |
|
252 |
except KeyError: |
|
253 |
cls.warning('skipping fetch_attr %s defined in %s (not found in schema)', |
|
254 |
attr, cls.id) |
|
255 |
continue |
|
256 |
if not user.matching_groups(rschema.get_groups('read')): |
|
257 |
continue |
|
258 |
var = varmaker.next() |
|
259 |
selection.append(var) |
|
260 |
restriction = '%s %s %s' % (mainvar, attr, var) |
|
261 |
restrictions.append(restriction) |
|
262 |
if not rschema.is_final(): |
|
263 |
# XXX this does not handle several destination types |
|
264 |
desttype = rschema.objects(eschema.type)[0] |
|
265 |
card = rschema.rproperty(eschema, desttype, 'cardinality')[0] |
|
266 |
if card not in '?1': |
|
267 |
selection.pop() |
|
268 |
restrictions.pop() |
|
269 |
continue |
|
270 |
if card == '?': |
|
271 |
restrictions[-1] += '?' # left outer join if not mandatory |
|
272 |
destcls = cls.vreg.etype_class(desttype) |
|
273 |
destcls._fetch_restrictions(var, varmaker, destcls.fetch_attrs, |
|
274 |
selection, orderby, restrictions, |
|
275 |
user, ordermethod, visited=visited) |
|
276 |
orderterm = getattr(cls, ordermethod)(attr, var) |
|
277 |
if orderterm: |
|
278 |
orderby.append(orderterm) |
|
279 |
return selection, orderby, restrictions |
|
280 |
||
1471
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
281 |
@classmethod |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
282 |
@cached |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
283 |
def parent_classes(cls): |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
284 |
parents = [cls.vreg.etype_class(e.type) for e in cls.e_schema.ancestors()] |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
285 |
parents.append(cls.vreg.etype_class('Any')) |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
286 |
return parents |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
287 |
|
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
288 |
@classmethod |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
289 |
@cached |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
290 |
def _rest_attr_info(cls): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
291 |
mainattr, needcheck = 'eid', True |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
292 |
if cls.rest_attr: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
293 |
mainattr = cls.rest_attr |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
294 |
needcheck = not cls.e_schema.has_unique_values(mainattr) |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
295 |
else: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
296 |
for rschema in cls.e_schema.subject_relations(): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
297 |
if rschema.is_final() and rschema != 'eid' and cls.e_schema.has_unique_values(rschema): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
298 |
mainattr = str(rschema) |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
299 |
needcheck = False |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
300 |
break |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
301 |
if mainattr == 'eid': |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
302 |
needcheck = False |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
303 |
return mainattr, needcheck |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
304 |
|
1435
6cd6172718bb
allow to instantiate an entity without rset
sylvain.thenault@logilab.fr
parents:
1363
diff
changeset
|
305 |
def __init__(self, req, rset=None, row=None, col=0): |
1363
d8f2c3953eb5
AppRsetObject now handle row and col
sylvain.thenault@logilab.fr
parents:
1360
diff
changeset
|
306 |
AppRsetObject.__init__(self, req, rset, row, col) |
0 | 307 |
dict.__init__(self) |
308 |
self._related_cache = {} |
|
309 |
if rset is not None: |
|
310 |
self.eid = rset[row][col] |
|
311 |
else: |
|
312 |
self.eid = None |
|
313 |
self._is_saved = True |
|
1474 | 314 |
|
0 | 315 |
def __repr__(self): |
316 |
return '<Entity %s %s %s at %s>' % ( |
|
317 |
self.e_schema, self.eid, self.keys(), id(self)) |
|
318 |
||
319 |
def __nonzero__(self): |
|
320 |
return True |
|
321 |
||
322 |
def __hash__(self): |
|
323 |
return id(self) |
|
324 |
||
325 |
def pre_add_hook(self): |
|
326 |
"""hook called by the repository before doing anything to add the entity |
|
327 |
(before_add entity hooks have not been called yet). This give the |
|
328 |
occasion to do weird stuff such as autocast (File -> Image for instance). |
|
1474 | 329 |
|
0 | 330 |
This method must return the actual entity to be added. |
331 |
""" |
|
332 |
return self |
|
1474 | 333 |
|
0 | 334 |
def set_eid(self, eid): |
335 |
self.eid = self['eid'] = eid |
|
336 |
||
337 |
def has_eid(self): |
|
338 |
"""return True if the entity has an attributed eid (False |
|
339 |
meaning that the entity has to be created |
|
340 |
""" |
|
341 |
try: |
|
342 |
int(self.eid) |
|
343 |
return True |
|
344 |
except (ValueError, TypeError): |
|
345 |
return False |
|
346 |
||
347 |
def is_saved(self): |
|
348 |
"""during entity creation, there is some time during which the entity |
|
349 |
has an eid attributed though it's not saved (eg during before_add_entity |
|
350 |
hooks). You can use this method to ensure the entity has an eid *and* is |
|
351 |
saved in its source. |
|
352 |
""" |
|
353 |
return self.has_eid() and self._is_saved |
|
1474 | 354 |
|
0 | 355 |
@cached |
356 |
def metainformation(self): |
|
357 |
res = dict(zip(('type', 'source', 'extid'), self.req.describe(self.eid))) |
|
358 |
res['source'] = self.req.source_defs()[res['source']] |
|
359 |
return res |
|
360 |
||
475
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
361 |
def clear_local_perm_cache(self, action): |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
362 |
for rqlexpr in self.e_schema.get_rqlexprs(action): |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
363 |
self.req.local_perm_cache.pop((rqlexpr.eid, (('x', self.eid),)), None) |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
364 |
|
0 | 365 |
def check_perm(self, action): |
366 |
self.e_schema.check_perm(self.req, action, self.eid) |
|
367 |
||
368 |
def has_perm(self, action): |
|
369 |
return self.e_schema.has_perm(self.req, action, self.eid) |
|
1474 | 370 |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
371 |
def view(self, vid, **kwargs): |
0 | 372 |
"""shortcut to apply a view on this entity""" |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
373 |
return self.vreg.render(vid, self.req, rset=self.rset, |
0 | 374 |
row=self.row, col=self.col, **kwargs) |
375 |
||
2059
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
376 |
def absolute_url(self, *args, **kwargs): |
0 | 377 |
"""return an absolute url to view this entity""" |
2059
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
378 |
# use *args since we don't want first argument to be "anonymous" to |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
379 |
# avoid potential clash with kwargs |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
380 |
if args: |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
381 |
assert len(args) == 1, 'only 0 or 1 non-named-argument expected' |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
382 |
method = args[0] |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
383 |
else: |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
384 |
method = None |
0 | 385 |
# in linksearch mode, we don't want external urls else selecting |
386 |
# the object for use in the relation is tricky |
|
387 |
# XXX search_state is web specific |
|
388 |
if getattr(self.req, 'search_state', ('normal',))[0] == 'normal': |
|
389 |
kwargs['base_url'] = self.metainformation()['source'].get('base-url') |
|
1904
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
390 |
if method in (None, 'view'): |
1842
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
391 |
try: |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
392 |
kwargs['_restpath'] = self.rest_path(kwargs.get('base_url')) |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
393 |
except TypeError: |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
394 |
warn('%s: rest_path() now take use_ext_eid argument, ' |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
395 |
'please update' % self.id, DeprecationWarning) |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
396 |
kwargs['_restpath'] = self.rest_path() |
0 | 397 |
else: |
398 |
kwargs['rql'] = 'Any X WHERE X eid %s' % self.eid |
|
399 |
return self.build_url(method, **kwargs) |
|
400 |
||
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
401 |
def rest_path(self, use_ext_eid=False): |
0 | 402 |
"""returns a REST-like (relative) path for this entity""" |
403 |
mainattr, needcheck = self._rest_attr_info() |
|
404 |
etype = str(self.e_schema) |
|
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
405 |
path = etype.lower() |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
406 |
if mainattr != 'eid': |
0 | 407 |
value = getattr(self, mainattr) |
2125
19861294506f
https://www.logilab.net/cwo/ticket/343724
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
408 |
if value is None or unicode(value) == u'': |
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
409 |
mainattr = 'eid' |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
410 |
path += '/eid' |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
411 |
elif needcheck: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
412 |
# make sure url is not ambiguous |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
413 |
rql = 'Any COUNT(X) WHERE X is %s, X %s %%(value)s' % ( |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
414 |
etype, mainattr) |
1904
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
415 |
nbresults = self.req.execute(rql, {'value' : value})[0][0] |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
416 |
if nbresults != 1: # ambiguity? |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
417 |
mainattr = 'eid' |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
418 |
path += '/eid' |
0 | 419 |
if mainattr == 'eid': |
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
420 |
if use_ext_eid: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
421 |
value = self.metainformation()['extid'] |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
422 |
else: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
423 |
value = self.eid |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
424 |
return '%s/%s' % (path, self.req.url_quote(value)) |
0 | 425 |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
426 |
def attr_metadata(self, attr, metadata): |
1101
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
427 |
"""return a metadata for an attribute (None if unspecified)""" |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
428 |
value = getattr(self, '%s_%s' % (attr, metadata), None) |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
429 |
if value is None and metadata == 'encoding': |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
430 |
value = self.vreg.property_value('ui.encoding') |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
431 |
return value |
0 | 432 |
|
433 |
def printable_value(self, attr, value=_marker, attrtype=None, |
|
434 |
format='text/html', displaytime=True): |
|
435 |
"""return a displayable value (i.e. unicode string) which may contains |
|
436 |
html tags |
|
437 |
""" |
|
438 |
attr = str(attr) |
|
439 |
if value is _marker: |
|
440 |
value = getattr(self, attr) |
|
441 |
if isinstance(value, basestring): |
|
442 |
value = value.strip() |
|
443 |
if value is None or value == '': # don't use "not", 0 is an acceptable value |
|
444 |
return u'' |
|
445 |
if attrtype is None: |
|
446 |
attrtype = self.e_schema.destination(attr) |
|
447 |
props = self.e_schema.rproperties(attr) |
|
448 |
if attrtype == 'String': |
|
449 |
# internalinalized *and* formatted string such as schema |
|
450 |
# description... |
|
451 |
if props.get('internationalizable'): |
|
452 |
value = self.req._(value) |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
453 |
attrformat = self.attr_metadata(attr, 'format') |
0 | 454 |
if attrformat: |
455 |
return self.mtc_transform(value, attrformat, format, |
|
456 |
self.req.encoding) |
|
457 |
elif attrtype == 'Bytes': |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
458 |
attrformat = self.attr_metadata(attr, 'format') |
0 | 459 |
if attrformat: |
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
460 |
encoding = self.attr_metadata(attr, 'encoding') |
0 | 461 |
return self.mtc_transform(value.getvalue(), attrformat, format, |
462 |
encoding) |
|
463 |
return u'' |
|
464 |
value = printable_value(self.req, attrtype, value, props, displaytime) |
|
465 |
if format == 'text/html': |
|
466 |
value = html_escape(value) |
|
467 |
return value |
|
468 |
||
469 |
def mtc_transform(self, data, format, target_format, encoding, |
|
470 |
_engine=ENGINE): |
|
471 |
trdata = TransformData(data, format, encoding, appobject=self) |
|
472 |
data = _engine.convert(trdata, target_format).decode() |
|
473 |
if format == 'text/html': |
|
1474 | 474 |
data = soup2xhtml(data, self.req.encoding) |
0 | 475 |
return data |
1474 | 476 |
|
0 | 477 |
# entity cloning ########################################################## |
478 |
||
479 |
def copy_relations(self, ceid): |
|
480 |
"""copy relations of the object with the given eid on this object |
|
481 |
||
482 |
By default meta and composite relations are skipped. |
|
483 |
Overrides this if you want another behaviour |
|
484 |
""" |
|
485 |
assert self.has_eid() |
|
486 |
execute = self.req.execute |
|
487 |
for rschema in self.e_schema.subject_relations(): |
|
2126
a25859917ccc
stop using meta attribute from yams schema. Use instead sets defining meta relations and another defining schema types. Refactor various schema view based on this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2059
diff
changeset
|
488 |
if rschema.is_final() or rschema.meta: |
0 | 489 |
continue |
490 |
# skip already defined relations |
|
491 |
if getattr(self, rschema.type): |
|
492 |
continue |
|
493 |
if rschema.type in self.skip_copy_for: |
|
494 |
continue |
|
495 |
if rschema.type == 'in_state': |
|
496 |
# if the workflow is defining an initial state (XXX AND we are |
|
497 |
# not in the managers group? not done to be more consistent) |
|
498 |
# don't try to copy in_state |
|
499 |
if execute('Any S WHERE S state_of ET, ET initial_state S,' |
|
500 |
'ET name %(etype)s', {'etype': str(self.e_schema)}): |
|
501 |
continue |
|
502 |
# skip composite relation |
|
503 |
if self.e_schema.subjrproperty(rschema, 'composite'): |
|
504 |
continue |
|
505 |
# skip relation with card in ?1 else we either change the copied |
|
506 |
# object (inlined relation) or inserting some inconsistency |
|
507 |
if self.e_schema.subjrproperty(rschema, 'cardinality')[1] in '?1': |
|
508 |
continue |
|
509 |
rql = 'SET X %s V WHERE X eid %%(x)s, Y eid %%(y)s, Y %s V' % ( |
|
510 |
rschema.type, rschema.type) |
|
511 |
execute(rql, {'x': self.eid, 'y': ceid}, ('x', 'y')) |
|
512 |
self.clear_related_cache(rschema.type, 'subject') |
|
513 |
for rschema in self.e_schema.object_relations(): |
|
514 |
if rschema.meta: |
|
515 |
continue |
|
516 |
# skip already defined relations |
|
517 |
if getattr(self, 'reverse_%s' % rschema.type): |
|
518 |
continue |
|
519 |
# skip composite relation |
|
520 |
if self.e_schema.objrproperty(rschema, 'composite'): |
|
521 |
continue |
|
522 |
# skip relation with card in ?1 else we either change the copied |
|
523 |
# object (inlined relation) or inserting some inconsistency |
|
524 |
if self.e_schema.objrproperty(rschema, 'cardinality')[0] in '?1': |
|
525 |
continue |
|
526 |
rql = 'SET V %s X WHERE X eid %%(x)s, Y eid %%(y)s, V %s Y' % ( |
|
527 |
rschema.type, rschema.type) |
|
528 |
execute(rql, {'x': self.eid, 'y': ceid}, ('x', 'y')) |
|
529 |
self.clear_related_cache(rschema.type, 'object') |
|
530 |
||
531 |
# data fetching methods ################################################### |
|
532 |
||
533 |
@cached |
|
534 |
def as_rset(self): |
|
535 |
"""returns a resultset containing `self` information""" |
|
536 |
rset = ResultSet([(self.eid,)], 'Any X WHERE X eid %(x)s', |
|
537 |
{'x': self.eid}, [(self.id,)]) |
|
538 |
return self.req.decorate_rset(rset) |
|
1474 | 539 |
|
0 | 540 |
def to_complete_relations(self): |
541 |
"""by default complete final relations to when calling .complete()""" |
|
542 |
for rschema in self.e_schema.subject_relations(): |
|
543 |
if rschema.is_final(): |
|
544 |
continue |
|
545 |
if len(rschema.objects(self.e_schema)) > 1: |
|
546 |
# ambigous relations, the querier doesn't handle |
|
547 |
# outer join correctly in this case |
|
548 |
continue |
|
549 |
if rschema.inlined: |
|
550 |
matching_groups = self.req.user.matching_groups |
|
551 |
if matching_groups(rschema.get_groups('read')) and \ |
|
552 |
all(matching_groups(es.get_groups('read')) |
|
553 |
for es in rschema.objects(self.e_schema)): |
|
554 |
yield rschema, 'subject' |
|
1474 | 555 |
|
0 | 556 |
def to_complete_attributes(self, skip_bytes=True): |
557 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
558 |
# skip binary data by default |
|
559 |
if skip_bytes and attrschema.type == 'Bytes': |
|
560 |
continue |
|
561 |
attr = rschema.type |
|
562 |
if attr == 'eid': |
|
563 |
continue |
|
564 |
# password retreival is blocked at the repository server level |
|
565 |
if not self.req.user.matching_groups(rschema.get_groups('read')) \ |
|
566 |
or attrschema.type == 'Password': |
|
567 |
self[attr] = None |
|
568 |
continue |
|
569 |
yield attr |
|
1474 | 570 |
|
0 | 571 |
def complete(self, attributes=None, skip_bytes=True): |
572 |
"""complete this entity by adding missing attributes (i.e. query the |
|
573 |
repository to fill the entity) |
|
574 |
||
575 |
:type skip_bytes: bool |
|
576 |
:param skip_bytes: |
|
577 |
if true, attribute of type Bytes won't be considered |
|
578 |
""" |
|
579 |
assert self.has_eid() |
|
580 |
varmaker = rqlvar_maker() |
|
581 |
V = varmaker.next() |
|
582 |
rql = ['WHERE %s eid %%(x)s' % V] |
|
583 |
selected = [] |
|
584 |
for attr in (attributes or self.to_complete_attributes(skip_bytes)): |
|
585 |
# if attribute already in entity, nothing to do |
|
586 |
if self.has_key(attr): |
|
587 |
continue |
|
588 |
# case where attribute must be completed, but is not yet in entity |
|
589 |
var = varmaker.next() |
|
590 |
rql.append('%s %s %s' % (V, attr, var)) |
|
591 |
selected.append((attr, var)) |
|
592 |
# +1 since this doen't include the main variable |
|
593 |
lastattr = len(selected) + 1 |
|
594 |
if attributes is None: |
|
595 |
# fetch additional relations (restricted to 0..1 relations) |
|
596 |
for rschema, role in self.to_complete_relations(): |
|
597 |
rtype = rschema.type |
|
598 |
if self.relation_cached(rtype, role): |
|
599 |
continue |
|
600 |
var = varmaker.next() |
|
601 |
if role == 'subject': |
|
602 |
targettype = rschema.objects(self.e_schema)[0] |
|
603 |
card = rschema.rproperty(self.e_schema, targettype, |
|
604 |
'cardinality')[0] |
|
605 |
if card == '1': |
|
606 |
rql.append('%s %s %s' % (V, rtype, var)) |
|
607 |
else: # '?" |
|
608 |
rql.append('%s %s %s?' % (V, rtype, var)) |
|
609 |
else: |
|
610 |
targettype = rschema.subjects(self.e_schema)[1] |
|
611 |
card = rschema.rproperty(self.e_schema, targettype, |
|
612 |
'cardinality')[1] |
|
613 |
if card == '1': |
|
614 |
rql.append('%s %s %s' % (var, rtype, V)) |
|
615 |
else: # '?" |
|
616 |
rql.append('%s? %s %s' % (var, rtype, V)) |
|
617 |
assert card in '1?', '%s %s %s %s' % (self.e_schema, rtype, |
|
618 |
role, card) |
|
619 |
selected.append(((rtype, role), var)) |
|
620 |
if selected: |
|
621 |
# select V, we need it as the left most selected variable |
|
622 |
# if some outer join are included to fetch inlined relations |
|
623 |
rql = 'Any %s,%s %s' % (V, ','.join(var for attr, var in selected), |
|
624 |
','.join(rql)) |
|
625 |
execute = getattr(self.req, 'unsafe_execute', self.req.execute) |
|
626 |
rset = execute(rql, {'x': self.eid}, 'x', build_descr=False)[0] |
|
627 |
# handle attributes |
|
628 |
for i in xrange(1, lastattr): |
|
629 |
self[str(selected[i-1][0])] = rset[i] |
|
630 |
# handle relations |
|
631 |
for i in xrange(lastattr, len(rset)): |
|
632 |
rtype, x = selected[i-1][0] |
|
633 |
value = rset[i] |
|
634 |
if value is None: |
|
635 |
rrset = ResultSet([], rql, {'x': self.eid}) |
|
636 |
self.req.decorate_rset(rrset) |
|
637 |
else: |
|
638 |
rrset = self.req.eid_rset(value) |
|
639 |
self.set_related_cache(rtype, x, rrset) |
|
1474 | 640 |
|
0 | 641 |
def get_value(self, name): |
642 |
"""get value for the attribute relation <name>, query the repository |
|
643 |
to get the value if necessary. |
|
644 |
||
645 |
:type name: str |
|
646 |
:param name: name of the attribute to get |
|
647 |
""" |
|
648 |
try: |
|
649 |
value = self[name] |
|
650 |
except KeyError: |
|
651 |
if not self.is_saved(): |
|
652 |
return None |
|
653 |
rql = "Any A WHERE X eid %%(x)s, X %s A" % name |
|
654 |
# XXX should we really use unsafe_execute here?? |
|
655 |
execute = getattr(self.req, 'unsafe_execute', self.req.execute) |
|
656 |
try: |
|
657 |
rset = execute(rql, {'x': self.eid}, 'x') |
|
658 |
except Unauthorized: |
|
659 |
self[name] = value = None |
|
660 |
else: |
|
661 |
assert rset.rowcount <= 1, (self, rql, rset.rowcount) |
|
662 |
try: |
|
663 |
self[name] = value = rset.rows[0][0] |
|
664 |
except IndexError: |
|
665 |
# probably a multisource error |
|
666 |
self.critical("can't get value for attribute %s of entity with eid %s", |
|
667 |
name, self.eid) |
|
668 |
if self.e_schema.destination(name) == 'String': |
|
669 |
self[name] = value = self.req._('unaccessible') |
|
670 |
else: |
|
671 |
self[name] = value = None |
|
672 |
return value |
|
673 |
||
674 |
def related(self, rtype, role='subject', limit=None, entities=False): |
|
675 |
"""returns a resultset of related entities |
|
1474 | 676 |
|
0 | 677 |
:param role: is the role played by 'self' in the relation ('subject' or 'object') |
678 |
:param limit: resultset's maximum size |
|
679 |
:param entities: if True, the entites are returned; if False, a result set is returned |
|
680 |
""" |
|
681 |
try: |
|
682 |
return self.related_cache(rtype, role, entities, limit) |
|
683 |
except KeyError: |
|
684 |
pass |
|
685 |
assert self.has_eid() |
|
686 |
rql = self.related_rql(rtype, role) |
|
687 |
rset = self.req.execute(rql, {'x': self.eid}, 'x') |
|
688 |
self.set_related_cache(rtype, role, rset) |
|
689 |
return self.related(rtype, role, limit, entities) |
|
690 |
||
691 |
def related_rql(self, rtype, role='subject'): |
|
692 |
rschema = self.schema[rtype] |
|
693 |
if role == 'subject': |
|
694 |
targettypes = rschema.objects(self.e_schema) |
|
695 |
restriction = 'E eid %%(x)s, E %s X' % rtype |
|
696 |
card = greater_card(rschema, (self.e_schema,), targettypes, 0) |
|
697 |
else: |
|
698 |
targettypes = rschema.subjects(self.e_schema) |
|
699 |
restriction = 'E eid %%(x)s, X %s E' % rtype |
|
700 |
card = greater_card(rschema, targettypes, (self.e_schema,), 1) |
|
701 |
if len(targettypes) > 1: |
|
413
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
702 |
fetchattrs_list = [] |
0 | 703 |
for ttype in targettypes: |
704 |
etypecls = self.vreg.etype_class(ttype) |
|
413
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
705 |
fetchattrs_list.append(set(etypecls.fetch_attrs)) |
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
706 |
fetchattrs = reduce(set.intersection, fetchattrs_list) |
0 | 707 |
rql = etypecls.fetch_rql(self.req.user, [restriction], fetchattrs, |
708 |
settype=False) |
|
709 |
else: |
|
710 |
etypecls = self.vreg.etype_class(targettypes[0]) |
|
711 |
rql = etypecls.fetch_rql(self.req.user, [restriction], settype=False) |
|
712 |
# optimisation: remove ORDERBY if cardinality is 1 or ? (though |
|
713 |
# greater_card return 1 for those both cases) |
|
714 |
if card == '1': |
|
715 |
if ' ORDERBY ' in rql: |
|
716 |
rql = '%s WHERE %s' % (rql.split(' ORDERBY ', 1)[0], |
|
717 |
rql.split(' WHERE ', 1)[1]) |
|
718 |
elif not ' ORDERBY ' in rql: |
|
719 |
args = tuple(rql.split(' WHERE ', 1)) |
|
720 |
rql = '%s ORDERBY Z DESC WHERE X modification_date Z, %s' % args |
|
721 |
return rql |
|
1474 | 722 |
|
0 | 723 |
# generic vocabulary methods ############################################## |
724 |
||
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
725 |
@obsolete('see new form api') |
0 | 726 |
def vocabulary(self, rtype, role='subject', limit=None): |
727 |
"""vocabulary functions must return a list of couples |
|
728 |
(label, eid) that will typically be used to fill the |
|
729 |
edition view's combobox. |
|
1474 | 730 |
|
0 | 731 |
If `eid` is None in one of these couples, it should be |
732 |
interpreted as a separator in case vocabulary results are grouped |
|
733 |
""" |
|
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
734 |
from logilab.common.testlib import mock_object |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
735 |
form = self.vreg.select('forms', 'edition', self.req, entity=self) |
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
736 |
field = mock_object(name=rtype, role=role) |
1031
1a89683cb687
restore limit on form_field_vocabulary, actually used
sylvain.thenault@logilab.fr
parents:
1008
diff
changeset
|
737 |
return form.form_field_vocabulary(field, limit) |
1474 | 738 |
|
0 | 739 |
def unrelated_rql(self, rtype, targettype, role, ordermethod=None, |
740 |
vocabconstraints=True): |
|
741 |
"""build a rql to fetch `targettype` entities unrelated to this entity |
|
742 |
using (rtype, role) relation |
|
743 |
""" |
|
744 |
ordermethod = ordermethod or 'fetch_unrelated_order' |
|
745 |
if isinstance(rtype, basestring): |
|
746 |
rtype = self.schema.rschema(rtype) |
|
747 |
if role == 'subject': |
|
748 |
evar, searchedvar = 'S', 'O' |
|
749 |
subjtype, objtype = self.e_schema, targettype |
|
750 |
else: |
|
751 |
searchedvar, evar = 'S', 'O' |
|
752 |
objtype, subjtype = self.e_schema, targettype |
|
753 |
if self.has_eid(): |
|
754 |
restriction = ['NOT S %s O' % rtype, '%s eid %%(x)s' % evar] |
|
755 |
else: |
|
756 |
restriction = [] |
|
757 |
constraints = rtype.rproperty(subjtype, objtype, 'constraints') |
|
758 |
if vocabconstraints: |
|
759 |
# RQLConstraint is a subclass for RQLVocabularyConstraint, so they |
|
760 |
# will be included as well |
|
761 |
restriction += [cstr.restriction for cstr in constraints |
|
762 |
if isinstance(cstr, RQLVocabularyConstraint)] |
|
763 |
else: |
|
764 |
restriction += [cstr.restriction for cstr in constraints |
|
765 |
if isinstance(cstr, RQLConstraint)] |
|
766 |
etypecls = self.vreg.etype_class(targettype) |
|
767 |
rql = etypecls.fetch_rql(self.req.user, restriction, |
|
768 |
mainvar=searchedvar, ordermethod=ordermethod) |
|
769 |
# ensure we have an order defined |
|
770 |
if not ' ORDERBY ' in rql: |
|
771 |
before, after = rql.split(' WHERE ', 1) |
|
772 |
rql = '%s ORDERBY %s WHERE %s' % (before, searchedvar, after) |
|
773 |
return rql |
|
1474 | 774 |
|
0 | 775 |
def unrelated(self, rtype, targettype, role='subject', limit=None, |
776 |
ordermethod=None): |
|
777 |
"""return a result set of target type objects that may be related |
|
778 |
by a given relation, with self as subject or object |
|
779 |
""" |
|
780 |
rql = self.unrelated_rql(rtype, targettype, role, ordermethod) |
|
781 |
if limit is not None: |
|
782 |
before, after = rql.split(' WHERE ', 1) |
|
783 |
rql = '%s LIMIT %s WHERE %s' % (before, limit, after) |
|
784 |
if self.has_eid(): |
|
785 |
return self.req.execute(rql, {'x': self.eid}) |
|
786 |
return self.req.execute(rql) |
|
1474 | 787 |
|
0 | 788 |
# relations cache handling ################################################ |
1474 | 789 |
|
0 | 790 |
def relation_cached(self, rtype, role): |
791 |
"""return true if the given relation is already cached on the instance |
|
792 |
""" |
|
793 |
return '%s_%s' % (rtype, role) in self._related_cache |
|
1474 | 794 |
|
0 | 795 |
def related_cache(self, rtype, role, entities=True, limit=None): |
796 |
"""return values for the given relation if it's cached on the instance, |
|
797 |
else raise `KeyError` |
|
798 |
""" |
|
799 |
res = self._related_cache['%s_%s' % (rtype, role)][entities] |
|
800 |
if limit: |
|
801 |
if entities: |
|
802 |
res = res[:limit] |
|
803 |
else: |
|
804 |
res = res.limit(limit) |
|
805 |
return res |
|
1474 | 806 |
|
0 | 807 |
def set_related_cache(self, rtype, role, rset, col=0): |
808 |
"""set cached values for the given relation""" |
|
809 |
if rset: |
|
810 |
related = list(rset.entities(col)) |
|
811 |
rschema = self.schema.rschema(rtype) |
|
812 |
if role == 'subject': |
|
813 |
rcard = rschema.rproperty(self.e_schema, related[0].e_schema, |
|
814 |
'cardinality')[1] |
|
815 |
target = 'object' |
|
816 |
else: |
|
817 |
rcard = rschema.rproperty(related[0].e_schema, self.e_schema, |
|
818 |
'cardinality')[0] |
|
819 |
target = 'subject' |
|
820 |
if rcard in '?1': |
|
821 |
for rentity in related: |
|
822 |
rentity._related_cache['%s_%s' % (rtype, target)] = (self.as_rset(), [self]) |
|
823 |
else: |
|
824 |
related = [] |
|
825 |
self._related_cache['%s_%s' % (rtype, role)] = (rset, related) |
|
1474 | 826 |
|
0 | 827 |
def clear_related_cache(self, rtype=None, role=None): |
828 |
"""clear cached values for the given relation or the entire cache if |
|
829 |
no relation is given |
|
830 |
""" |
|
831 |
if rtype is None: |
|
832 |
self._related_cache = {} |
|
833 |
else: |
|
834 |
assert role |
|
835 |
self._related_cache.pop('%s_%s' % (rtype, role), None) |
|
1474 | 836 |
|
0 | 837 |
# raw edition utilities ################################################### |
1474 | 838 |
|
0 | 839 |
def set_attributes(self, **kwargs): |
840 |
assert kwargs |
|
841 |
relations = [] |
|
842 |
for key in kwargs: |
|
843 |
relations.append('X %s %%(%s)s' % (key, key)) |
|
397
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
844 |
# update current local object |
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
845 |
self.update(kwargs) |
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
846 |
# and now update the database |
0 | 847 |
kwargs['x'] = self.eid |
848 |
self.req.execute('SET %s WHERE X eid %%(x)s' % ','.join(relations), |
|
849 |
kwargs, 'x') |
|
1474 | 850 |
|
0 | 851 |
def delete(self): |
852 |
assert self.has_eid(), self.eid |
|
853 |
self.req.execute('DELETE %s X WHERE X eid %%(x)s' % self.e_schema, |
|
854 |
{'x': self.eid}) |
|
1474 | 855 |
|
0 | 856 |
# server side utilities ################################################### |
1474 | 857 |
|
0 | 858 |
def set_defaults(self): |
859 |
"""set default values according to the schema""" |
|
860 |
self._default_set = set() |
|
861 |
for attr, value in self.e_schema.defaults(): |
|
862 |
if not self.has_key(attr): |
|
863 |
self[str(attr)] = value |
|
864 |
self._default_set.add(attr) |
|
865 |
||
866 |
def check(self, creation=False): |
|
867 |
"""check this entity against its schema. Only final relation |
|
868 |
are checked here, constraint on actual relations are checked in hooks |
|
869 |
""" |
|
870 |
# necessary since eid is handled specifically and yams require it to be |
|
871 |
# in the dictionary |
|
872 |
if self.req is None: |
|
873 |
_ = unicode |
|
874 |
else: |
|
875 |
_ = self.req._ |
|
876 |
self.e_schema.check(self, creation=creation, _=_) |
|
877 |
||
878 |
def fti_containers(self, _done=None): |
|
879 |
if _done is None: |
|
880 |
_done = set() |
|
881 |
_done.add(self.eid) |
|
882 |
containers = tuple(self.e_schema.fulltext_containers()) |
|
883 |
if containers: |
|
476
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
884 |
yielded = False |
0 | 885 |
for rschema, target in containers: |
886 |
if target == 'object': |
|
887 |
targets = getattr(self, rschema.type) |
|
888 |
else: |
|
889 |
targets = getattr(self, 'reverse_%s' % rschema) |
|
890 |
for entity in targets: |
|
891 |
if entity.eid in _done: |
|
892 |
continue |
|
893 |
for container in entity.fti_containers(_done): |
|
894 |
yield container |
|
476
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
895 |
yielded = True |
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
896 |
if not yielded: |
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
897 |
yield self |
0 | 898 |
else: |
899 |
yield self |
|
1474 | 900 |
|
0 | 901 |
def get_words(self): |
902 |
"""used by the full text indexer to get words to index |
|
903 |
||
904 |
this method should only be used on the repository side since it depends |
|
905 |
on the indexer package |
|
1474 | 906 |
|
0 | 907 |
:rtype: list |
908 |
:return: the list of indexable word of this entity |
|
909 |
""" |
|
910 |
from indexer.query_objects import tokenize |
|
911 |
words = [] |
|
912 |
for rschema in self.e_schema.indexable_attributes(): |
|
913 |
try: |
|
914 |
value = self.printable_value(rschema, format='text/plain') |
|
1132 | 915 |
except TransformError: |
0 | 916 |
continue |
917 |
except: |
|
918 |
self.exception("can't add value of %s to text index for entity %s", |
|
919 |
rschema, self.eid) |
|
920 |
continue |
|
921 |
if value: |
|
922 |
words += tokenize(value) |
|
1474 | 923 |
|
0 | 924 |
for rschema, role in self.e_schema.fulltext_relations(): |
925 |
if role == 'subject': |
|
926 |
for entity in getattr(self, rschema.type): |
|
927 |
words += entity.get_words() |
|
928 |
else: # if role == 'object': |
|
929 |
for entity in getattr(self, 'reverse_%s' % rschema.type): |
|
930 |
words += entity.get_words() |
|
931 |
return words |
|
932 |
||
933 |
||
934 |
# attribute and relation descriptors ########################################## |
|
935 |
||
936 |
class Attribute(object): |
|
937 |
"""descriptor that controls schema attribute access""" |
|
938 |
||
939 |
def __init__(self, attrname): |
|
940 |
assert attrname != 'eid' |
|
941 |
self._attrname = attrname |
|
942 |
||
943 |
def __get__(self, eobj, eclass): |
|
944 |
if eobj is None: |
|
945 |
return self |
|
946 |
return eobj.get_value(self._attrname) |
|
947 |
||
948 |
def __set__(self, eobj, value): |
|
949 |
# XXX bw compat |
|
950 |
# would be better to generate UPDATE queries than the current behaviour |
|
951 |
eobj.warning("deprecated usage, don't use 'entity.attr = val' notation)") |
|
952 |
eobj[self._attrname] = value |
|
953 |
||
954 |
||
955 |
class Relation(object): |
|
956 |
"""descriptor that controls schema relation access""" |
|
957 |
_role = None # for pylint |
|
958 |
||
959 |
def __init__(self, rschema): |
|
960 |
self._rschema = rschema |
|
961 |
self._rtype = rschema.type |
|
962 |
||
963 |
def __get__(self, eobj, eclass): |
|
964 |
if eobj is None: |
|
965 |
raise AttributeError('%s cannot be only be accessed from instances' |
|
966 |
% self._rtype) |
|
967 |
return eobj.related(self._rtype, self._role, entities=True) |
|
1474 | 968 |
|
0 | 969 |
def __set__(self, eobj, value): |
970 |
raise NotImplementedError |
|
971 |
||
972 |
||
973 |
class SubjectRelation(Relation): |
|
974 |
"""descriptor that controls schema relation access""" |
|
975 |
_role = 'subject' |
|
1474 | 976 |
|
0 | 977 |
class ObjectRelation(Relation): |
978 |
"""descriptor that controls schema relation access""" |
|
979 |
_role = 'object' |
|
980 |
||
981 |
from logging import getLogger |
|
982 |
from cubicweb import set_log_methods |
|
983 |
set_log_methods(Entity, getLogger('cubicweb.entity')) |