author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 19 Nov 2009 12:55:47 +0100 | |
branch | reldefsecurity |
changeset 3877 | 7ca53fc72a0a |
parent 3827 | c7142a4e3470 |
child 3890 | d7a270f50f54 |
permissions | -rw-r--r-- |
0 | 1 |
"""classes to define schemas for CubicWeb |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1498
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:
1498
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
2142
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
9 |
_ = unicode |
0 | 10 |
|
11 |
import re |
|
2147
476a75ede2cc
merge and add missing import in schema.py
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2142
diff
changeset
|
12 |
from os.path import join |
0 | 13 |
from logging import getLogger |
1133 | 14 |
from warnings import warn |
0 | 15 |
|
624
258e5692ae06
provide a new RichString attribute type
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
16 |
from logilab.common.decorators import cached, clear_cache, monkeypatch |
2730
bb6fcb8c5d71
to make cw schemas importable, they have to be installed w/ cw code, not in /usr/share/cubicweb/schemas
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2718
diff
changeset
|
17 |
from logilab.common.logging_ext import set_log_methods |
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2531
diff
changeset
|
18 |
from logilab.common.deprecation import deprecated |
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
19 |
from logilab.common.graph import get_cycles |
0 | 20 |
from logilab.common.compat import any |
21 |
||
2531
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
22 |
from yams import BadSchemaDefinition, buildobjs as ybo |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
23 |
from yams.schema import Schema, ERSchema, EntitySchema, RelationSchema, \ |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
24 |
RelationDefinitionSchema, PermissionMixIn |
2531
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
25 |
from yams.constraints import (BaseConstraint, StaticVocabularyConstraint, |
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
26 |
FormatConstraint) |
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
27 |
from yams.reader import (CONSTRAINTS, PyFileReader, SchemaLoader, |
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
28 |
obsolete as yobsolete, cleanup_sys_modules) |
0 | 29 |
|
30 |
from rql import parse, nodes, RQLSyntaxError, TypeResolverException |
|
31 |
||
2730
bb6fcb8c5d71
to make cw schemas importable, they have to be installed w/ cw code, not in /usr/share/cubicweb/schemas
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2718
diff
changeset
|
32 |
import cubicweb |
0 | 33 |
from cubicweb import ETYPE_NAME_MAP, ValidationError, Unauthorized |
34 |
||
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
745
diff
changeset
|
35 |
# XXX <3.2 bw compat |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
745
diff
changeset
|
36 |
from yams import schema |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
745
diff
changeset
|
37 |
schema.use_py_datetime() |
1451 | 38 |
nodes.use_py_datetime() |
0 | 39 |
|
2596
d02eed70937f
[R repo, schema] use VIRTUAL_RTYPES const
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2531
diff
changeset
|
40 |
PURE_VIRTUAL_RTYPES = set(('identity', 'has_text',)) |
d02eed70937f
[R repo, schema] use VIRTUAL_RTYPES const
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2531
diff
changeset
|
41 |
VIRTUAL_RTYPES = set(('eid', 'identity', 'has_text',)) |
d02eed70937f
[R repo, schema] use VIRTUAL_RTYPES const
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2531
diff
changeset
|
42 |
|
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:
1977
diff
changeset
|
43 |
# set of meta-relations available for every entity types |
2622
3c7edaa6c6d2
oops, should have been in a earlier commit (META_RELATION_TYPES renaming)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2616
diff
changeset
|
44 |
META_RTYPES = set(( |
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:
1977
diff
changeset
|
45 |
'owned_by', 'created_by', 'is', 'is_instance_of', 'identity', |
2456
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2437
diff
changeset
|
46 |
'eid', 'creation_date', 'modification_date', 'has_text', 'cwuri', |
2184 | 47 |
)) |
3287
19c1011736a6
tweak catalog generation by adding a new SYSTEM_RTYPES set to schema
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3284
diff
changeset
|
48 |
SYSTEM_RTYPES = set(('require_permission', 'custom_workflow', 'in_state', 'wf_info_for')) |
0 | 49 |
|
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:
1977
diff
changeset
|
50 |
# set of entity and relation types used to build the schema |
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:
1977
diff
changeset
|
51 |
SCHEMA_TYPES = set(( |
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:
1977
diff
changeset
|
52 |
'CWEType', 'CWRType', 'CWAttribute', 'CWRelation', |
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:
1977
diff
changeset
|
53 |
'CWConstraint', 'CWConstraintType', 'RQLExpression', |
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:
1977
diff
changeset
|
54 |
'relation_type', 'from_entity', 'to_entity', |
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:
1977
diff
changeset
|
55 |
'constrained_by', 'cstrtype', |
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:
1977
diff
changeset
|
56 |
)) |
0 | 57 |
|
2142
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
58 |
_LOGGER = getLogger('cubicweb.schemaloader') |
0 | 59 |
|
60 |
# schema entities created from serialized schema have an eid rproperty |
|
61 |
ybo.ETYPE_PROPERTIES += ('eid',) |
|
62 |
ybo.RTYPE_PROPERTIES += ('eid',) |
|
63 |
ybo.RDEF_PROPERTIES += ('eid',) |
|
64 |
||
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
65 |
|
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
66 |
# XXX same algorithm as in reorder_cubes and probably other place, |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
67 |
# may probably extract a generic function |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
68 |
def order_eschemas(eschemas): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
69 |
"""return entity schemas ordered such that entity types which specializes an |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
70 |
other one appears after that one |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
71 |
""" |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
72 |
graph = {} |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
73 |
for eschema in eschemas: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
74 |
if eschema.specializes(): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
75 |
graph[eschema] = set((eschema.specializes(),)) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
76 |
else: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
77 |
graph[eschema] = set() |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
78 |
cycles = get_cycles(graph) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
79 |
if cycles: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
80 |
cycles = '\n'.join(' -> '.join(cycle) for cycle in cycles) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
81 |
raise Exception('cycles in entity schema specialization: %s' |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
82 |
% cycles) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
83 |
eschemas = [] |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
84 |
while graph: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
85 |
# sorted to get predictable results |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
86 |
for eschema, deps in sorted(graph.items()): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
87 |
if not deps: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
88 |
eschemas.append(eschema) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
89 |
del graph[eschema] |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
90 |
for deps in graph.itervalues(): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
91 |
try: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
92 |
deps.remove(eschema) |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
93 |
except KeyError: |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
94 |
continue |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
95 |
return eschemas |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
96 |
|
0 | 97 |
def bw_normalize_etype(etype): |
98 |
if etype in ETYPE_NAME_MAP: |
|
99 |
msg = '%s has been renamed to %s, please update your code' % ( |
|
1451 | 100 |
etype, ETYPE_NAME_MAP[etype]) |
0 | 101 |
warn(msg, DeprecationWarning, stacklevel=4) |
102 |
etype = ETYPE_NAME_MAP[etype] |
|
103 |
return etype |
|
104 |
||
3275
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3240
diff
changeset
|
105 |
def display_name(req, key, form='', context=None): |
0 | 106 |
"""return a internationalized string for the key (schema entity or relation |
107 |
name) in a given form |
|
108 |
""" |
|
109 |
assert form in ('', 'plural', 'subject', 'object') |
|
110 |
if form == 'subject': |
|
111 |
form = '' |
|
112 |
if form: |
|
113 |
key = key + '_' + form |
|
114 |
# ensure unicode |
|
3284
036cf5a25714
ensure pgettext return unicode as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
115 |
# .lower() in case no translation are available XXX done whatever a translation is there or not! |
036cf5a25714
ensure pgettext return unicode as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
116 |
if context is not None: |
036cf5a25714
ensure pgettext return unicode as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
117 |
return unicode(req.pgettext(context, key)).lower() |
3275
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3240
diff
changeset
|
118 |
else: |
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3240
diff
changeset
|
119 |
return unicode(req._(key)).lower() |
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3240
diff
changeset
|
120 |
|
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2531
diff
changeset
|
121 |
__builtins__['display_name'] = deprecated('display_name should be imported from cubicweb.schema')(display_name) |
0 | 122 |
|
123 |
def ERSchema_display_name(self, req, form=''): |
|
124 |
"""return a internationalized string for the entity/relation type name in |
|
125 |
a given form |
|
126 |
""" |
|
127 |
return display_name(req, self.type, form) |
|
128 |
ERSchema.display_name = ERSchema_display_name |
|
129 |
||
130 |
@cached |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
131 |
def get_groups(self, action): |
0 | 132 |
"""return the groups authorized to perform <action> on entities of |
133 |
this type |
|
134 |
||
135 |
:type action: str |
|
136 |
:param action: the name of a permission |
|
137 |
||
138 |
:rtype: tuple |
|
139 |
:return: names of the groups with the given permission |
|
140 |
""" |
|
141 |
assert action in self.ACTIONS, action |
|
142 |
#assert action in self._groups, '%s %s' % (self, action) |
|
143 |
try: |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
144 |
return frozenset(g for g in self.permissions[action] if isinstance(g, basestring)) |
0 | 145 |
except KeyError: |
146 |
return () |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
147 |
PermissionMixIn.get_groups = get_groups |
0 | 148 |
|
149 |
@cached |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
150 |
def get_rqlexprs(self, action): |
0 | 151 |
"""return the rql expressions representing queries to check the user is allowed |
152 |
to perform <action> on entities of this type |
|
153 |
||
154 |
:type action: str |
|
155 |
:param action: the name of a permission |
|
156 |
||
157 |
:rtype: tuple |
|
158 |
:return: the rql expressions with the given permission |
|
159 |
""" |
|
160 |
assert action in self.ACTIONS, action |
|
161 |
#assert action in self._rqlexprs, '%s %s' % (self, action) |
|
162 |
try: |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
163 |
return tuple(g for g in self.permissions[action] if not isinstance(g, basestring)) |
0 | 164 |
except KeyError: |
165 |
return () |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
166 |
PermissionMixIn.get_rqlexprs = get_rqlexprs |
0 | 167 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
168 |
orig_set_action_permissions = PermissionMixIn.set_action_permissions |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
169 |
def set_action_permissions(self, action, permissions): |
0 | 170 |
"""set the groups and rql expressions allowing to perform <action> on |
171 |
entities of this type |
|
172 |
||
173 |
:type action: str |
|
174 |
:param action: the name of a permission |
|
175 |
||
176 |
:type permissions: tuple |
|
177 |
:param permissions: the groups and rql expressions allowing the given action |
|
178 |
""" |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
179 |
orig_set_action_permissions(self, action, tuple(permissions)) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
180 |
clear_cache(self, 'get_rqlexprs') |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
181 |
clear_cache(self, 'get_groups') |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
182 |
PermissionMixIn.set_action_permissions = set_action_permissions |
0 | 183 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
184 |
def has_local_role(self, action): |
0 | 185 |
"""return true if the action *may* be granted localy (eg either rql |
186 |
expressions or the owners group are used in security definition) |
|
187 |
||
188 |
XXX this method is only there since we don't know well how to deal with |
|
189 |
'add' action checking. Also find a better name would be nice. |
|
190 |
""" |
|
191 |
assert action in self.ACTIONS, action |
|
192 |
if self.get_rqlexprs(action): |
|
193 |
return True |
|
194 |
if action in ('update', 'delete'): |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
195 |
return 'owners' in self.get_groups(action) |
0 | 196 |
return False |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
197 |
PermissionMixIn.has_local_role = has_local_role |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
198 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
199 |
def may_have_permission(self, action, req): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
200 |
if action != 'read' and not (self.has_local_role('read') or |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
201 |
self.has_perm(req, 'read')): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
202 |
return False |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
203 |
return self.has_local_role(action) or self.has_perm(req, action) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
204 |
PermissionMixIn.may_have_permission = may_have_permission |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
205 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
206 |
def has_perm(self, session, action, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
207 |
"""return true if the action is granted globaly or localy""" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
208 |
try: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
209 |
self.check_perm(session, action, **kwargs) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
210 |
return True |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
211 |
except Unauthorized: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
212 |
return False |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
213 |
PermissionMixIn.has_perm = has_perm |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
214 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
215 |
def check_perm(self, session, action, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
216 |
# NB: session may be a server session or a request object check user is |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
217 |
# in an allowed group, if so that's enough internal sessions should |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
218 |
# always stop there |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
219 |
groups = self.get_groups(action) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
220 |
if session.user.matching_groups(groups): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
221 |
return |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
222 |
# if 'owners' in allowed groups, check if the user actually owns this |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
223 |
# object, if so that's enough |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
224 |
if 'owners' in groups and 'eid' in kwargs and session.user.owns(kwargs['eid']): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
225 |
return |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
226 |
# else if there is some rql expressions, check them |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
227 |
if any(rqlexpr.check(session, **kwargs) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
228 |
for rqlexpr in self.get_rqlexprs(action)): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
229 |
return |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
230 |
raise Unauthorized(action, str(self)) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
231 |
PermissionMixIn.check_perm = check_perm |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
232 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
233 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
234 |
RelationDefinitionSchema._RPROPERTIES['eid'] = None |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
235 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
236 |
def rql_expression(self, expression, mainvars=None, eid=None): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
237 |
"""rql expression factory""" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
238 |
if self.rtype.final: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
239 |
return ERQLExpression(expression, mainvars, eid) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
240 |
return RRQLExpression(expression, mainvars, eid) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
241 |
RelationDefinitionSchema.rql_expression = rql_expression |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
242 |
|
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
243 |
orig_check_permission_definitions = RelationDefinitionSchema.check_permission_definitions |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
244 |
def check_permission_definitions(self): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
245 |
orig_check_permission_definitions(self) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
246 |
schema = self.subject.schema |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
247 |
for action, groups in self.permissions.iteritems(): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
248 |
for group_or_rqlexpr in groups: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
249 |
if action == 'read' and \ |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
250 |
isinstance(group_or_rqlexpr, RQLExpression): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
251 |
msg = "can't use rql expression for read permission of %s" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
252 |
raise BadSchemaDefinition(msg % self) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
253 |
elif self.final and isinstance(group_or_rqlexpr, RRQLExpression): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
254 |
if schema.reading_from_database: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
255 |
# we didn't have final relation earlier, so turn |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
256 |
# RRQLExpression into ERQLExpression now |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
257 |
rqlexpr = group_or_rqlexpr |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
258 |
newrqlexprs = [x for x in self.get_rqlexprs(action) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
259 |
if not x is rqlexpr] |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
260 |
newrqlexprs.append(ERQLExpression(rqlexpr.expression, |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
261 |
rqlexpr.mainvars, |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
262 |
rqlexpr.eid)) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
263 |
self.set_rqlexprs(action, newrqlexprs) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
264 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
265 |
msg = "can't use RRQLExpression on %s, use an ERQLExpression" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
266 |
raise BadSchemaDefinition(msg % self) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
267 |
elif not self.final and \ |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
268 |
isinstance(group_or_rqlexpr, ERQLExpression): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
269 |
msg = "can't use ERQLExpression on %s, use a RRQLExpression" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
270 |
raise BadSchemaDefinition(msg % self) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
271 |
RelationDefinitionSchema.check_permission_definitions = check_permission_definitions |
0 | 272 |
|
273 |
||
274 |
def system_etypes(schema): |
|
275 |
"""return system entity types only: skip final, schema and application entities |
|
276 |
""" |
|
277 |
for eschema in schema.entities(): |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3554
diff
changeset
|
278 |
if eschema.final or eschema.schema_entity(): |
0 | 279 |
continue |
280 |
yield eschema.type |
|
281 |
||
282 |
# Schema objects definition ################################################### |
|
283 |
||
284 |
class CubicWebEntitySchema(EntitySchema): |
|
285 |
"""a entity has a type, a set of subject and or object relations |
|
286 |
the entity schema defines the possible relations for a given type and some |
|
287 |
constraints on those relations |
|
288 |
""" |
|
289 |
def __init__(self, schema=None, edef=None, eid=None, **kwargs): |
|
290 |
super(CubicWebEntitySchema, self).__init__(schema, edef, **kwargs) |
|
291 |
if eid is None and edef is not None: |
|
292 |
eid = getattr(edef, 'eid', None) |
|
293 |
self.eid = eid |
|
294 |
# take care: no _groups attribute when deep-copying |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
295 |
if getattr(self, 'permissions', None): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
296 |
for groups in self.permissions.itervalues(): |
0 | 297 |
for group_or_rqlexpr in groups: |
298 |
if isinstance(group_or_rqlexpr, RRQLExpression): |
|
299 |
msg = "can't use RRQLExpression on an entity type, use an ERQLExpression (%s)" |
|
300 |
raise BadSchemaDefinition(msg % self.type) |
|
1451 | 301 |
|
0 | 302 |
def attribute_definitions(self): |
303 |
"""return an iterator on attribute definitions |
|
1451 | 304 |
|
0 | 305 |
attribute relations are a subset of subject relations where the |
306 |
object's type is a final entity |
|
1451 | 307 |
|
0 | 308 |
an attribute definition is a 2-uple : |
309 |
* name of the relation |
|
310 |
* schema of the destination entity type |
|
311 |
""" |
|
312 |
iter = super(CubicWebEntitySchema, self).attribute_definitions() |
|
313 |
for rschema, attrschema in iter: |
|
314 |
if rschema.type == 'has_text': |
|
315 |
continue |
|
316 |
yield rschema, attrschema |
|
1451 | 317 |
|
2128
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
318 |
def main_attribute(self): |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
319 |
"""convenience method that returns the *main* (i.e. the first non meta) |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
320 |
attribute defined in the entity schema |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
321 |
""" |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
322 |
for rschema, _ in self.attribute_definitions(): |
2622
3c7edaa6c6d2
oops, should have been in a earlier commit (META_RELATION_TYPES renaming)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2616
diff
changeset
|
323 |
if not (rschema in META_RTYPES |
2128
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
324 |
or self.is_metadata(rschema)): |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
325 |
return rschema |
464edb198faa
drop @ wildcard in relation subject/object, override main_attribute for proper behaviour
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2126
diff
changeset
|
326 |
|
0 | 327 |
def add_subject_relation(self, rschema): |
328 |
"""register the relation schema as possible subject relation""" |
|
329 |
super(CubicWebEntitySchema, self).add_subject_relation(rschema) |
|
330 |
self._update_has_text() |
|
331 |
||
332 |
def del_subject_relation(self, rtype): |
|
333 |
super(CubicWebEntitySchema, self).del_subject_relation(rtype) |
|
2632
920bfaff60a4
B [schema update] may remove has_text unexpectedly, give another argument to fix it
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2622
diff
changeset
|
334 |
self._update_has_text(True) |
1451 | 335 |
|
2632
920bfaff60a4
B [schema update] may remove has_text unexpectedly, give another argument to fix it
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2622
diff
changeset
|
336 |
def _update_has_text(self, deletion=False): |
0 | 337 |
may_need_has_text, has_has_text = False, False |
2632
920bfaff60a4
B [schema update] may remove has_text unexpectedly, give another argument to fix it
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2622
diff
changeset
|
338 |
need_has_text = None |
0 | 339 |
for rschema in self.subject_relations(): |
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3554
diff
changeset
|
340 |
if rschema.final: |
0 | 341 |
if rschema == 'has_text': |
342 |
has_has_text = True |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
343 |
elif self.rdef(rschema).get('fulltextindexed'): |
0 | 344 |
may_need_has_text = True |
345 |
elif rschema.fulltext_container: |
|
346 |
if rschema.fulltext_container == 'subject': |
|
347 |
may_need_has_text = True |
|
348 |
else: |
|
349 |
need_has_text = False |
|
350 |
for rschema in self.object_relations(): |
|
351 |
if rschema.fulltext_container: |
|
352 |
if rschema.fulltext_container == 'object': |
|
353 |
may_need_has_text = True |
|
354 |
else: |
|
355 |
need_has_text = False |
|
356 |
if need_has_text is None: |
|
357 |
need_has_text = may_need_has_text |
|
2632
920bfaff60a4
B [schema update] may remove has_text unexpectedly, give another argument to fix it
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2622
diff
changeset
|
358 |
if need_has_text and not has_has_text and not deletion: |
0 | 359 |
rdef = ybo.RelationDefinition(self.type, 'has_text', 'String') |
360 |
self.schema.add_relation_def(rdef) |
|
361 |
elif not need_has_text and has_has_text: |
|
362 |
self.schema.del_relation_def(self.type, 'has_text', 'String') |
|
1451 | 363 |
|
0 | 364 |
def schema_entity(self): |
365 |
"""return True if this entity type is used to build the schema""" |
|
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:
1977
diff
changeset
|
366 |
return self.type in SCHEMA_TYPES |
0 | 367 |
|
368 |
def rql_expression(self, expression, mainvars=None, eid=None): |
|
369 |
"""rql expression factory""" |
|
370 |
return ERQLExpression(expression, mainvars, eid) |
|
1451 | 371 |
|
2252 | 372 |
|
0 | 373 |
class CubicWebRelationSchema(RelationSchema): |
1451 | 374 |
|
0 | 375 |
def __init__(self, schema=None, rdef=None, eid=None, **kwargs): |
376 |
if rdef is not None: |
|
377 |
# if this relation is inlined |
|
378 |
self.inlined = rdef.inlined |
|
379 |
super(CubicWebRelationSchema, self).__init__(schema, rdef, **kwargs) |
|
380 |
if eid is None and rdef is not None: |
|
381 |
eid = getattr(rdef, 'eid', None) |
|
382 |
self.eid = eid |
|
1451 | 383 |
|
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:
1977
diff
changeset
|
384 |
@property |
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:
1977
diff
changeset
|
385 |
def meta(self): |
2622
3c7edaa6c6d2
oops, should have been in a earlier commit (META_RELATION_TYPES renaming)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2616
diff
changeset
|
386 |
return self.type in META_RTYPES |
1451 | 387 |
|
0 | 388 |
def schema_relation(self): |
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:
1977
diff
changeset
|
389 |
"""return True if this relation type is used to build the schema""" |
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:
1977
diff
changeset
|
390 |
return self.type in SCHEMA_TYPES |
1451 | 391 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
392 |
def may_have_permission(self, action, req, eschema=None, role=None): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
393 |
if eschema is not None: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
394 |
for tschema in rschema.targets(eschema, role): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
395 |
rdef = rschema.role_rdef(eschema, tschema, role) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
396 |
if rdef.may_have_permission(action, req): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
397 |
return True |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
398 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
399 |
for rdef in self.rdefs.itervalues(): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
400 |
if rdef.may_have_permission(action, req): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
401 |
return True |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
402 |
return False |
0 | 403 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
404 |
def has_perm(self, session, action, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
405 |
"""return true if the action is granted globaly or localy""" |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
406 |
if 'fromeid' in kwargs: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
407 |
subjtype = session.describe(kwargs['fromeid']) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
408 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
409 |
subjtype = None |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
410 |
if 'toeid' in kwargs: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
411 |
objtype = session.describe(kwargs['toeid']) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
412 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
413 |
objtype = Nono |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
414 |
if objtype and subjtype: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
415 |
return self.rdef(subjtype, objtype).has_perm(session, action, **kwargs) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
416 |
elif subjtype: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
417 |
for tschema in rschema.targets(subjtype, 'subject'): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
418 |
rdef = rschema.rdef(subjtype, tschema) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
419 |
if not rdef.has_perm(action, req, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
420 |
return False |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
421 |
elif objtype: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
422 |
for tschema in rschema.targets(objtype, 'object'): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
423 |
rdef = rschema.rdef(tschema, objtype) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
424 |
if not rdef.has_perm(action, req, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
425 |
return False |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
426 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
427 |
for rdef in self.rdefs.itervalues(): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
428 |
if not rdef.has_perm(action, req, **kwargs): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
429 |
return False |
0 | 430 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
431 |
@deprecated('use .rdef(subjtype, objtype).role_cardinality(role)') |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
432 |
def cardinality(self, subjtype, objtype, target): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
433 |
return self.rdef(subjtype, objtype).role_cardinality(target) |
0 | 434 |
|
1451 | 435 |
|
0 | 436 |
class CubicWebSchema(Schema): |
437 |
"""set of entities and relations schema defining the possible data sets |
|
438 |
used in an application |
|
439 |
||
440 |
||
441 |
:type name: str |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2460
diff
changeset
|
442 |
:ivar name: name of the schema, usually the instance identifier |
1451 | 443 |
|
0 | 444 |
:type base: str |
445 |
:ivar base: path of the directory where the schema is defined |
|
446 |
""" |
|
1451 | 447 |
reading_from_database = False |
0 | 448 |
entity_class = CubicWebEntitySchema |
449 |
relation_class = CubicWebRelationSchema |
|
2958
44e5446b649b
no inference for the identity relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2926
diff
changeset
|
450 |
no_specialization_inference = ('identity',) |
0 | 451 |
|
452 |
def __init__(self, *args, **kwargs): |
|
453 |
self._eid_index = {} |
|
454 |
super(CubicWebSchema, self).__init__(*args, **kwargs) |
|
455 |
ybo.register_base_types(self) |
|
2300
c8151d004e06
meta has been drop
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
456 |
rschema = self.add_relation_type(ybo.RelationType('eid')) |
0 | 457 |
rschema.final = True |
2300
c8151d004e06
meta has been drop
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
458 |
rschema = self.add_relation_type(ybo.RelationType('has_text')) |
0 | 459 |
rschema.final = True |
2300
c8151d004e06
meta has been drop
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
460 |
rschema = self.add_relation_type(ybo.RelationType('identity')) |
0 | 461 |
rschema.final = False |
1451 | 462 |
|
0 | 463 |
def add_entity_type(self, edef): |
464 |
edef.name = edef.name.encode() |
|
465 |
edef.name = bw_normalize_etype(edef.name) |
|
466 |
assert re.match(r'[A-Z][A-Za-z0-9]*[a-z]+[0-9]*$', edef.name), repr(edef.name) |
|
467 |
eschema = super(CubicWebSchema, self).add_entity_type(edef) |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3554
diff
changeset
|
468 |
if not eschema.final: |
0 | 469 |
# automatically add the eid relation to non final entity types |
470 |
rdef = ybo.RelationDefinition(eschema.type, 'eid', 'Int', |
|
471 |
cardinality='11', uid=True) |
|
472 |
self.add_relation_def(rdef) |
|
473 |
rdef = ybo.RelationDefinition(eschema.type, 'identity', eschema.type) |
|
474 |
self.add_relation_def(rdef) |
|
475 |
self._eid_index[eschema.eid] = eschema |
|
476 |
return eschema |
|
1451 | 477 |
|
0 | 478 |
def add_relation_type(self, rdef): |
479 |
rdef.name = rdef.name.lower().encode() |
|
480 |
rschema = super(CubicWebSchema, self).add_relation_type(rdef) |
|
481 |
self._eid_index[rschema.eid] = rschema |
|
482 |
return rschema |
|
1451 | 483 |
|
0 | 484 |
def add_relation_def(self, rdef): |
485 |
"""build a part of a relation schema |
|
486 |
(i.e. add a relation between two specific entity's types) |
|
487 |
||
488 |
:type subject: str |
|
489 |
:param subject: entity's type that is subject of the relation |
|
490 |
||
491 |
:type rtype: str |
|
492 |
:param rtype: the relation's type (i.e. the name of the relation) |
|
493 |
||
494 |
:type obj: str |
|
495 |
:param obj: entity's type that is object of the relation |
|
496 |
||
497 |
:rtype: RelationSchema |
|
498 |
:param: the newly created or just completed relation schema |
|
499 |
""" |
|
500 |
rdef.name = rdef.name.lower() |
|
501 |
rdef.subject = bw_normalize_etype(rdef.subject) |
|
502 |
rdef.object = bw_normalize_etype(rdef.object) |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
503 |
rdefs = super(CubicWebSchema, self).add_relation_def(rdef) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
504 |
if rdefs: |
1034
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
505 |
try: |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
506 |
self._eid_index[rdef.eid] = rdefs |
1034
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
507 |
except AttributeError: |
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
508 |
pass # not a serialized schema |
1451 | 509 |
|
0 | 510 |
def del_relation_type(self, rtype): |
511 |
rschema = self.rschema(rtype) |
|
512 |
self._eid_index.pop(rschema.eid, None) |
|
513 |
super(CubicWebSchema, self).del_relation_type(rtype) |
|
1451 | 514 |
|
0 | 515 |
def del_relation_def(self, subjtype, rtype, objtype): |
516 |
for k, v in self._eid_index.items(): |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
517 |
if not isinstance(v, RelationDefinitionSchema): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
518 |
continue |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
519 |
if v.subject == subjtype and v.rtype == rtype and v.object == objtype: |
0 | 520 |
del self._eid_index[k] |
2718
3a56b87bb5d6
[schema] break when found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2716
diff
changeset
|
521 |
break |
0 | 522 |
super(CubicWebSchema, self).del_relation_def(subjtype, rtype, objtype) |
1451 | 523 |
|
0 | 524 |
def del_entity_type(self, etype): |
525 |
eschema = self.eschema(etype) |
|
526 |
self._eid_index.pop(eschema.eid, None) |
|
527 |
# deal with has_text first, else its automatic deletion (see above) |
|
528 |
# may trigger an error in ancestor's del_entity_type method |
|
529 |
if 'has_text' in eschema.subject_relations(): |
|
530 |
self.del_relation_def(etype, 'has_text', 'String') |
|
531 |
super(CubicWebSchema, self).del_entity_type(etype) |
|
1451 | 532 |
|
0 | 533 |
def schema_by_eid(self, eid): |
534 |
return self._eid_index[eid] |
|
535 |
||
536 |
||
537 |
# Possible constraints ######################################################## |
|
538 |
||
539 |
class RQLVocabularyConstraint(BaseConstraint): |
|
540 |
"""the rql vocabulary constraint : |
|
541 |
||
542 |
limit the proposed values to a set of entities returned by a rql query, |
|
543 |
but this is not enforced at the repository level |
|
1451 | 544 |
|
0 | 545 |
restriction is additional rql restriction that will be added to |
546 |
a predefined query, where the S and O variables respectivly represent |
|
547 |
the subject and the object of the relation |
|
548 |
""" |
|
1451 | 549 |
|
0 | 550 |
def __init__(self, restriction): |
551 |
self.restriction = restriction |
|
552 |
||
553 |
def serialize(self): |
|
554 |
return self.restriction |
|
1451 | 555 |
|
0 | 556 |
def deserialize(cls, value): |
557 |
return cls(value) |
|
558 |
deserialize = classmethod(deserialize) |
|
1451 | 559 |
|
0 | 560 |
def check(self, entity, rtype, value): |
561 |
"""return true if the value satisfy the constraint, else false""" |
|
562 |
# implemented as a hook in the repository |
|
563 |
return 1 |
|
564 |
||
565 |
def repo_check(self, session, eidfrom, rtype, eidto): |
|
566 |
"""raise ValidationError if the relation doesn't satisfy the constraint |
|
567 |
""" |
|
3554
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
568 |
pass # this is a vocabulary constraint, not enforce XXX why? |
1451 | 569 |
|
0 | 570 |
def __str__(self): |
571 |
return self.restriction |
|
572 |
||
573 |
def __repr__(self): |
|
574 |
return '<%s : %s>' % (self.__class__.__name__, repr(self.restriction)) |
|
575 |
||
576 |
||
577 |
class RQLConstraint(RQLVocabularyConstraint): |
|
578 |
"""the rql constraint is similar to the RQLVocabularyConstraint but |
|
579 |
are also enforced at the repository level |
|
580 |
""" |
|
581 |
def exec_query(self, session, eidfrom, eidto): |
|
3554
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
582 |
if eidto is None: |
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
583 |
rql = 'Any S WHERE S eid %(s)s, ' + self.restriction |
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
584 |
return session.unsafe_execute(rql, {'s': eidfrom}, 's', |
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
585 |
build_descr=False) |
0 | 586 |
rql = 'Any S,O WHERE S eid %(s)s, O eid %(o)s, ' + self.restriction |
587 |
return session.unsafe_execute(rql, {'s': eidfrom, 'o': eidto}, |
|
588 |
('s', 'o'), build_descr=False) |
|
589 |
def error(self, eid, rtype, msg): |
|
590 |
raise ValidationError(eid, {rtype: msg}) |
|
1451 | 591 |
|
3554
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
592 |
def repo_check(self, session, eidfrom, rtype, eidto=None): |
0 | 593 |
"""raise ValidationError if the relation doesn't satisfy the constraint |
594 |
""" |
|
595 |
if not self.exec_query(session, eidfrom, eidto): |
|
596 |
# XXX at this point dunno if the validation error `occured` on |
|
597 |
# eidfrom or eidto (from user interface point of view) |
|
598 |
self.error(eidfrom, rtype, 'constraint %s failed' % self) |
|
599 |
||
600 |
||
601 |
class RQLUniqueConstraint(RQLConstraint): |
|
602 |
"""the unique rql constraint check that the result of the query isn't |
|
603 |
greater than one |
|
604 |
""" |
|
3554
26e586f3c15c
[schema] make RQL* constraints usable w/ attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3347
diff
changeset
|
605 |
def repo_check(self, session, eidfrom, rtype, eidto=None): |
0 | 606 |
"""raise ValidationError if the relation doesn't satisfy the constraint |
607 |
""" |
|
608 |
if len(self.exec_query(session, eidfrom, eidto)) > 1: |
|
609 |
# XXX at this point dunno if the validation error `occured` on |
|
610 |
# eidfrom or eidto (from user interface point of view) |
|
611 |
self.error(eidfrom, rtype, 'unique constraint %s failed' % self) |
|
612 |
||
1451 | 613 |
|
0 | 614 |
def split_expression(rqlstring): |
615 |
for expr in rqlstring.split(','): |
|
616 |
for word in expr.split(): |
|
617 |
yield word |
|
1451 | 618 |
|
0 | 619 |
def normalize_expression(rqlstring): |
620 |
"""normalize an rql expression to ease schema synchronization (avoid |
|
621 |
suppressing and reinserting an expression if only a space has been added/removed |
|
622 |
for instance) |
|
623 |
""" |
|
624 |
return u', '.join(' '.join(expr.split()) for expr in rqlstring.split(',')) |
|
625 |
||
626 |
||
627 |
class RQLExpression(object): |
|
628 |
def __init__(self, expression, mainvars, eid): |
|
629 |
self.eid = eid # eid of the entity representing this rql expression |
|
630 |
if not isinstance(mainvars, unicode): |
|
631 |
mainvars = unicode(mainvars) |
|
632 |
self.mainvars = mainvars |
|
633 |
self.expression = normalize_expression(expression) |
|
634 |
try: |
|
635 |
self.rqlst = parse(self.full_rql, print_errors=False).children[0] |
|
636 |
except RQLSyntaxError: |
|
637 |
raise RQLSyntaxError(expression) |
|
638 |
for mainvar in mainvars.split(','): |
|
639 |
if len(self.rqlst.defined_vars[mainvar].references()) <= 2: |
|
2142
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
640 |
_LOGGER.warn('You did not use the %s variable in your RQL ' |
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
641 |
'expression %s', mainvar, self) |
3825 | 642 |
# syntax tree used by read security (inserted in queries when necessary) |
3240
8604a15995d1
refactor so that rql rewriter may be used outside the server. Enhance it to be usable for RRQLExpression as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2967
diff
changeset
|
643 |
self.snippet_rqlst = parse(self.minimal_rql, print_errors=False).children[0] |
1451 | 644 |
|
0 | 645 |
def __str__(self): |
646 |
return self.full_rql |
|
647 |
def __repr__(self): |
|
648 |
return '%s(%s)' % (self.__class__.__name__, self.full_rql) |
|
1451 | 649 |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
650 |
def __cmp__(self, other): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
651 |
if hasattr(other, 'expression'): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
652 |
return cmp(other.expression, self.expression) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
653 |
return False |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
654 |
|
0 | 655 |
def __deepcopy__(self, memo): |
656 |
return self.__class__(self.expression, self.mainvars) |
|
657 |
def __getstate__(self): |
|
658 |
return (self.expression, self.mainvars) |
|
659 |
def __setstate__(self, state): |
|
660 |
self.__init__(*state) |
|
1451 | 661 |
|
0 | 662 |
@cached |
663 |
def transform_has_permission(self): |
|
664 |
found = None |
|
665 |
rqlst = self.rqlst |
|
666 |
for var in rqlst.defined_vars.itervalues(): |
|
667 |
for varref in var.references(): |
|
668 |
rel = varref.relation() |
|
669 |
if rel is None: |
|
670 |
continue |
|
671 |
try: |
|
672 |
prefix, action, suffix = rel.r_type.split('_') |
|
673 |
except ValueError: |
|
674 |
continue |
|
675 |
if prefix != 'has' or suffix != 'permission' or \ |
|
676 |
not action in ('add', 'delete', 'update', 'read'): |
|
677 |
continue |
|
678 |
if found is None: |
|
679 |
found = [] |
|
680 |
rqlst.save_state() |
|
681 |
assert rel.children[0].name == 'U' |
|
682 |
objvar = rel.children[1].children[0].variable |
|
683 |
rqlst.remove_node(rel) |
|
684 |
selected = [v.name for v in rqlst.get_selected_variables()] |
|
685 |
if objvar.name not in selected: |
|
686 |
colindex = len(selected) |
|
687 |
rqlst.add_selected(objvar) |
|
688 |
else: |
|
689 |
colindex = selected.index(objvar.name) |
|
690 |
found.append((action, objvar, colindex)) |
|
691 |
# remove U eid %(u)s if U is not used in any other relation |
|
692 |
uvrefs = rqlst.defined_vars['U'].references() |
|
693 |
if len(uvrefs) == 1: |
|
694 |
rqlst.remove_node(uvrefs[0].relation()) |
|
695 |
if found is not None: |
|
696 |
rql = rqlst.as_string() |
|
697 |
if len(rqlst.selection) == 1 and isinstance(rqlst.where, nodes.Relation): |
|
698 |
# only "Any X WHERE X eid %(x)s" remaining, no need to execute the rql |
|
699 |
keyarg = rqlst.selection[0].name.lower() |
|
700 |
else: |
|
701 |
keyarg = None |
|
702 |
rqlst.recover() |
|
703 |
return rql, found, keyarg |
|
704 |
return rqlst.as_string(), None, None |
|
1451 | 705 |
|
0 | 706 |
def _check(self, session, **kwargs): |
707 |
"""return True if the rql expression is matching the given relation |
|
708 |
between fromeid and toeid |
|
709 |
||
710 |
session may actually be a request as well |
|
711 |
""" |
|
712 |
if self.eid is not None: |
|
713 |
key = (self.eid, tuple(sorted(kwargs.iteritems()))) |
|
714 |
try: |
|
715 |
return session.local_perm_cache[key] |
|
716 |
except KeyError: |
|
717 |
pass |
|
718 |
rql, has_perm_defs, keyarg = self.transform_has_permission() |
|
719 |
if keyarg is None: |
|
720 |
# on the server side, use unsafe_execute, but this is not available |
|
721 |
# on the client side (session is actually a request) |
|
722 |
execute = getattr(session, 'unsafe_execute', session.execute) |
|
723 |
# XXX what if 'u' in kwargs |
|
724 |
cachekey = kwargs.keys() |
|
725 |
kwargs['u'] = session.user.eid |
|
726 |
try: |
|
727 |
rset = execute(rql, kwargs, cachekey, build_descr=True) |
|
728 |
except NotImplementedError: |
|
729 |
self.critical('cant check rql expression, unsupported rql %s', rql) |
|
730 |
if self.eid is not None: |
|
731 |
session.local_perm_cache[key] = False |
|
732 |
return False |
|
733 |
except TypeResolverException, ex: |
|
734 |
# some expression may not be resolvable with current kwargs |
|
735 |
# (type conflict) |
|
736 |
self.warning('%s: %s', rql, str(ex)) |
|
737 |
if self.eid is not None: |
|
738 |
session.local_perm_cache[key] = False |
|
739 |
return False |
|
740 |
else: |
|
741 |
rset = session.eid_rset(kwargs[keyarg]) |
|
742 |
# if no special has_*_permission relation in the rql expression, just |
|
743 |
# check the result set contains something |
|
744 |
if has_perm_defs is None: |
|
745 |
if rset: |
|
746 |
if self.eid is not None: |
|
747 |
session.local_perm_cache[key] = True |
|
748 |
return True |
|
749 |
elif rset: |
|
750 |
# check every special has_*_permission relation is satisfied |
|
751 |
get_eschema = session.vreg.schema.eschema |
|
752 |
try: |
|
753 |
for eaction, var, col in has_perm_defs: |
|
754 |
for i in xrange(len(rset)): |
|
755 |
eschema = get_eschema(rset.description[i][col]) |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3827
diff
changeset
|
756 |
eschema.check_perm(session, eaction, eid=rset[i][col]) |
0 | 757 |
if self.eid is not None: |
758 |
session.local_perm_cache[key] = True |
|
759 |
return True |
|
760 |
except Unauthorized: |
|
761 |
pass |
|
762 |
if self.eid is not None: |
|
763 |
session.local_perm_cache[key] = False |
|
764 |
return False |
|
1451 | 765 |
|
0 | 766 |
@property |
767 |
def minimal_rql(self): |
|
768 |
return 'Any %s WHERE %s' % (self.mainvars, self.expression) |
|
769 |
||
770 |
||
771 |
class ERQLExpression(RQLExpression): |
|
772 |
def __init__(self, expression, mainvars=None, eid=None): |
|
773 |
RQLExpression.__init__(self, expression, mainvars or 'X', eid) |
|
774 |
||
775 |
@property |
|
776 |
def full_rql(self): |
|
777 |
rql = self.minimal_rql |
|
778 |
rqlst = getattr(self, 'rqlst', None) # may be not set yet |
|
779 |
if rqlst is not None: |
|
780 |
defined = rqlst.defined_vars |
|
781 |
else: |
|
782 |
defined = set(split_expression(self.expression)) |
|
783 |
if 'X' in defined: |
|
784 |
rql += ', X eid %(x)s' |
|
785 |
if 'U' in defined: |
|
786 |
rql += ', U eid %(u)s' |
|
787 |
return rql |
|
1451 | 788 |
|
0 | 789 |
def check(self, session, eid=None): |
790 |
if 'X' in self.rqlst.defined_vars: |
|
791 |
if eid is None: |
|
792 |
return False |
|
793 |
return self._check(session, x=eid) |
|
794 |
return self._check(session) |
|
1451 | 795 |
|
2301
a9e9582d5fb6
obsolete implicit context
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2300
diff
changeset
|
796 |
PyFileReader.context['ERQLExpression'] = yobsolete(ERQLExpression) |
1451 | 797 |
|
0 | 798 |
class RRQLExpression(RQLExpression): |
799 |
def __init__(self, expression, mainvars=None, eid=None): |
|
800 |
if mainvars is None: |
|
801 |
defined = set(split_expression(expression)) |
|
802 |
mainvars = [] |
|
803 |
if 'S' in defined: |
|
804 |
mainvars.append('S') |
|
805 |
if 'O' in defined: |
|
806 |
mainvars.append('O') |
|
3824
860da9755df3
consider U when computing main variables
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
807 |
if 'U' in defined: |
860da9755df3
consider U when computing main variables
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
808 |
mainvars.append('U') |
0 | 809 |
if not mainvars: |
810 |
raise Exception('unable to guess selection variables') |
|
811 |
mainvars = ','.join(mainvars) |
|
812 |
RQLExpression.__init__(self, expression, mainvars, eid) |
|
3827 | 813 |
# graph of links between variable, used by rql rewriter |
3826
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
814 |
self.vargraph = {} |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
815 |
for relation in self.rqlst.get_nodes(nodes.Relation): |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
816 |
try: |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
817 |
rhsvarname = relation.children[1].children[0].variable.name |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
818 |
lhsvarname = relation.children[0].name |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
819 |
except AttributeError: |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
820 |
pass |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
821 |
else: |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
822 |
self.vargraph.setdefault(lhsvarname, []).append(rhsvarname) |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
823 |
self.vargraph.setdefault(rhsvarname, []).append(lhsvarname) |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3825
diff
changeset
|
824 |
#self.vargraph[(lhsvarname, rhsvarname)] = relation.r_type |
0 | 825 |
|
826 |
@property |
|
827 |
def full_rql(self): |
|
828 |
rql = self.minimal_rql |
|
829 |
rqlst = getattr(self, 'rqlst', None) # may be not set yet |
|
830 |
if rqlst is not None: |
|
831 |
defined = rqlst.defined_vars |
|
832 |
else: |
|
833 |
defined = set(split_expression(self.expression)) |
|
834 |
if 'S' in defined: |
|
835 |
rql += ', S eid %(s)s' |
|
836 |
if 'O' in defined: |
|
837 |
rql += ', O eid %(o)s' |
|
838 |
if 'U' in defined: |
|
839 |
rql += ', U eid %(u)s' |
|
840 |
return rql |
|
1451 | 841 |
|
0 | 842 |
def check(self, session, fromeid=None, toeid=None): |
843 |
kwargs = {} |
|
844 |
if 'S' in self.rqlst.defined_vars: |
|
845 |
if fromeid is None: |
|
846 |
return False |
|
847 |
kwargs['s'] = fromeid |
|
848 |
if 'O' in self.rqlst.defined_vars: |
|
849 |
if toeid is None: |
|
850 |
return False |
|
851 |
kwargs['o'] = toeid |
|
852 |
return self._check(session, **kwargs) |
|
1451 | 853 |
|
2301
a9e9582d5fb6
obsolete implicit context
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2300
diff
changeset
|
854 |
PyFileReader.context['RRQLExpression'] = yobsolete(RRQLExpression) |
0 | 855 |
|
629
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
856 |
# workflow extensions ######################################################### |
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
857 |
|
2460
ce1a7ffc6c90
fix a couple NameErrors
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2459
diff
changeset
|
858 |
from yams.buildobjs import _add_relation as yams_add_relation |
629
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
859 |
|
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
860 |
class workflowable_definition(ybo.metadefinition): |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
861 |
"""extends default EntityType's metaclass to add workflow relations |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
862 |
(i.e. in_state and wf_info_for). |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
863 |
This is the default metaclass for WorkflowableEntityType |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
864 |
""" |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
865 |
def __new__(mcs, name, bases, classdict): |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
866 |
abstract = classdict.pop('__abstract__', False) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
867 |
cls = super(workflowable_definition, mcs).__new__(mcs, name, bases, |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
868 |
classdict) |
629
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
869 |
if not abstract: |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
870 |
make_workflowable(cls) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
871 |
return cls |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
872 |
|
2957
2daabf4c646e
[schema] make_workflowable now take an option description for the in_state relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
873 |
def make_workflowable(cls, in_state_descr=None): |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
874 |
existing_rels = set(rdef.name for rdef in cls.__relations__) |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
875 |
# let relation types defined in cw.schemas.workflow carrying |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
876 |
# cardinality, constraints and other relation definition properties |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
877 |
if 'custom_workflow' not in existing_rels: |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
878 |
rdef = ybo.SubjectRelation('Workflow') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
879 |
yams_add_relation(cls.__relations__, rdef, 'custom_workflow') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
880 |
if 'in_state' not in existing_rels: |
2957
2daabf4c646e
[schema] make_workflowable now take an option description for the in_state relation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
881 |
rdef = ybo.SubjectRelation('State', description=in_state_descr) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
882 |
yams_add_relation(cls.__relations__, rdef, 'in_state') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
883 |
if 'wf_info_for' not in existing_rels: |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
884 |
rdef = ybo.ObjectRelation('TrInfo') |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
885 |
yams_add_relation(cls.__relations__, rdef, 'wf_info_for') |
629
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
886 |
|
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
887 |
class WorkflowableEntityType(ybo.EntityType): |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
888 |
__metaclass__ = workflowable_definition |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2782
diff
changeset
|
889 |
__abstract__ = True |
1451 | 890 |
|
629
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
891 |
PyFileReader.context['WorkflowableEntityType'] = WorkflowableEntityType |
59b6542f5729
provide a new WorkflowableEntityType base class (will be refactored later, maybe with schema interfaces)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
628
diff
changeset
|
892 |
|
0 | 893 |
# schema loading ############################################################## |
894 |
||
895 |
CONSTRAINTS['RQLConstraint'] = RQLConstraint |
|
896 |
CONSTRAINTS['RQLUniqueConstraint'] = RQLUniqueConstraint |
|
897 |
CONSTRAINTS['RQLVocabularyConstraint'] = RQLVocabularyConstraint |
|
898 |
PyFileReader.context.update(CONSTRAINTS) |
|
899 |
||
900 |
||
901 |
class BootstrapSchemaLoader(SchemaLoader): |
|
902 |
"""cubicweb specific schema loader, loading only schema necessary to read |
|
903 |
the persistent schema |
|
904 |
""" |
|
905 |
schemacls = CubicWebSchema |
|
906 |
||
1034
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
907 |
def load(self, config, path=(), **kwargs): |
0 | 908 |
"""return a Schema instance from the schema definition read |
909 |
from <directory> |
|
910 |
""" |
|
911 |
return super(BootstrapSchemaLoader, self).load( |
|
1034
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
912 |
path, config.appid, register_base_types=False, **kwargs) |
1451 | 913 |
|
0 | 914 |
def _load_definition_files(self, cubes=None): |
915 |
# bootstraping, ignore cubes |
|
2735
39c942241b48
no need for lib_directory
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
916 |
filepath = join(cubicweb.CW_SOFTWARE_ROOT, 'schemas', 'bootstrap.py') |
2142
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
917 |
self.info('loading %s', filepath) |
098aa2075903
include_schema_files is useless
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
918 |
self.handle_file(filepath) |
1451 | 919 |
|
0 | 920 |
def unhandled_file(self, filepath): |
921 |
"""called when a file without handler associated has been found""" |
|
922 |
self.warning('ignoring file %r', filepath) |
|
923 |
||
924 |
||
925 |
class CubicWebSchemaLoader(BootstrapSchemaLoader): |
|
926 |
"""cubicweb specific schema loader, automatically adding metadata to the |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2460
diff
changeset
|
927 |
instance's schema |
0 | 928 |
""" |
929 |
||
1034
0356bbfb2f26
fix to pass arguments to base class
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
930 |
def load(self, config, **kwargs): |
0 | 931 |
"""return a Schema instance from the schema definition read |
932 |
from <directory> |
|
933 |
""" |
|
934 |
self.info('loading %s schemas', ', '.join(config.cubes())) |
|
2782
998f24dabd0d
compute extrapath, necessary for proper schema module detection when CW_CUBES_PATH is set
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2742
diff
changeset
|
935 |
self.extrapath = {} |
998f24dabd0d
compute extrapath, necessary for proper schema module detection when CW_CUBES_PATH is set
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2742
diff
changeset
|
936 |
for cubesdir in config.cubes_search_path(): |
998f24dabd0d
compute extrapath, necessary for proper schema module detection when CW_CUBES_PATH is set
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2742
diff
changeset
|
937 |
if cubesdir != config.CUBES_DIR: |
998f24dabd0d
compute extrapath, necessary for proper schema module detection when CW_CUBES_PATH is set
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2742
diff
changeset
|
938 |
self.extrapath[cubesdir] = 'cubes' |
372
a8a975a88368
check apphome is not None
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
939 |
if config.apphome: |
2598
a66fe74bd9fc
[R schema] dont give an iterator, it's a trap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2596
diff
changeset
|
940 |
path = tuple(reversed([config.apphome] + config.cubes_path())) |
372
a8a975a88368
check apphome is not None
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
941 |
else: |
2598
a66fe74bd9fc
[R schema] dont give an iterator, it's a trap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2596
diff
changeset
|
942 |
path = tuple(reversed(config.cubes_path())) |
2526
40e41eb34a7d
we've to call cleanup_sys_modules manually for proper schema modules cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
943 |
try: |
40e41eb34a7d
we've to call cleanup_sys_modules manually for proper schema modules cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
944 |
return super(CubicWebSchemaLoader, self).load(config, path=path, **kwargs) |
40e41eb34a7d
we've to call cleanup_sys_modules manually for proper schema modules cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
945 |
finally: |
40e41eb34a7d
we've to call cleanup_sys_modules manually for proper schema modules cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
946 |
# we've to cleanup modules imported from cubicweb.schemas as well |
2735
39c942241b48
no need for lib_directory
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
947 |
cleanup_sys_modules([join(cubicweb.CW_SOFTWARE_ROOT, 'schemas')]) |
0 | 948 |
|
949 |
def _load_definition_files(self, cubes): |
|
2741
148d0cea1fb5
[schema] oops
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2736
diff
changeset
|
950 |
for filepath in (join(cubicweb.CW_SOFTWARE_ROOT, 'schemas', 'bootstrap.py'), |
148d0cea1fb5
[schema] oops
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2736
diff
changeset
|
951 |
join(cubicweb.CW_SOFTWARE_ROOT, 'schemas', 'base.py'), |
148d0cea1fb5
[schema] oops
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2736
diff
changeset
|
952 |
join(cubicweb.CW_SOFTWARE_ROOT, 'schemas', 'workflow.py'), |
148d0cea1fb5
[schema] oops
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2736
diff
changeset
|
953 |
join(cubicweb.CW_SOFTWARE_ROOT, 'schemas', 'Bookmark.py')): |
0 | 954 |
self.info('loading %s', filepath) |
955 |
self.handle_file(filepath) |
|
956 |
for cube in cubes: |
|
957 |
for filepath in self.get_schema_files(cube): |
|
958 |
self.info('loading %s', filepath) |
|
959 |
self.handle_file(filepath) |
|
960 |
||
961 |
||
2459
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
962 |
set_log_methods(CubicWebSchemaLoader, getLogger('cubicweb.schemaloader')) |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
963 |
set_log_methods(BootstrapSchemaLoader, getLogger('cubicweb.bootstrapschemaloader')) |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
964 |
set_log_methods(RQLExpression, getLogger('cubicweb.schema')) |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
965 |
|
0 | 966 |
# _() is just there to add messages to the catalog, don't care about actual |
967 |
# translation |
|
968 |
PERM_USE_TEMPLATE_FORMAT = _('use_template_format') |
|
2459
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
969 |
NEED_PERM_FORMATS = [_('text/cubicweb-page-template')] |
0 | 970 |
|
2531
531ea4e7013e
[cleanup] nicer imports
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2526
diff
changeset
|
971 |
@monkeypatch(FormatConstraint) |
3347
428f95118556
fix vocab param to avoid deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3287
diff
changeset
|
972 |
def vocabulary(self, entity=None, form=None): |
428f95118556
fix vocab param to avoid deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3287
diff
changeset
|
973 |
req = None |
428f95118556
fix vocab param to avoid deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3287
diff
changeset
|
974 |
if form is None and entity is not None: |
2459
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
975 |
req = entity.req |
3347
428f95118556
fix vocab param to avoid deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3287
diff
changeset
|
976 |
elif form is not None: |
428f95118556
fix vocab param to avoid deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3287
diff
changeset
|
977 |
req = form.req |
2459
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
978 |
if req is not None and req.user.has_permission(PERM_USE_TEMPLATE_FORMAT): |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
979 |
return self.regular_formats + tuple(NEED_PERM_FORMATS) |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2456
diff
changeset
|
980 |
return self.regular_formats |
0 | 981 |
|
982 |
# XXX monkey patch PyFileReader.import_erschema until bw_normalize_etype is |
|
983 |
# necessary |
|
984 |
orig_import_erschema = PyFileReader.import_erschema |
|
985 |
def bw_import_erschema(self, ertype, schemamod=None, instantiate=True): |
|
986 |
return orig_import_erschema(self, bw_normalize_etype(ertype), schemamod, instantiate) |
|
987 |
PyFileReader.import_erschema = bw_import_erschema |
|
1451 | 988 |
|
0 | 989 |
# XXX itou for some Statement methods |
990 |
from rql import stmts |
|
991 |
orig_get_etype = stmts.ScopeNode.get_etype |
|
992 |
def bw_get_etype(self, name): |
|
993 |
return orig_get_etype(self, bw_normalize_etype(name)) |
|
994 |
stmts.ScopeNode.get_etype = bw_get_etype |
|
995 |
||
996 |
orig_add_main_variable_delete = stmts.Delete.add_main_variable |
|
997 |
def bw_add_main_variable_delete(self, etype, vref): |
|
998 |
return orig_add_main_variable_delete(self, bw_normalize_etype(etype), vref) |
|
999 |
stmts.Delete.add_main_variable = bw_add_main_variable_delete |
|
1000 |
||
1001 |
orig_add_main_variable_insert = stmts.Insert.add_main_variable |
|
1002 |
def bw_add_main_variable_insert(self, etype, vref): |
|
1003 |
return orig_add_main_variable_insert(self, bw_normalize_etype(etype), vref) |
|
1004 |
stmts.Insert.add_main_variable = bw_add_main_variable_insert |
|
1005 |
||
1006 |
orig_set_statement_type = stmts.Select.set_statement_type |
|
1007 |
def bw_set_statement_type(self, etype): |
|
1008 |
return orig_set_statement_type(self, bw_normalize_etype(etype)) |
|
1009 |
stmts.Select.set_statement_type = bw_set_statement_type |
|
2736
c5048502409f
restore backward compat, still imported a lot
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2735
diff
changeset
|
1010 |
|
c5048502409f
restore backward compat, still imported a lot
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2735
diff
changeset
|
1011 |
# XXX deprecated |
c5048502409f
restore backward compat, still imported a lot
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2735
diff
changeset
|
1012 |
from yams.constraints import format_constraint |
c5048502409f
restore backward compat, still imported a lot
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2735
diff
changeset
|
1013 |
from yams.buildobjs import RichString |
2742
9439c61eb84c
[bw compat] restore format_constraint into schema file context
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2741
diff
changeset
|
1014 |
PyFileReader.context['format_constraint'] = format_constraint |