author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 09 Jun 2010 09:54:35 +0200 | |
branch | stable |
changeset 5693 | 8af6623f3d4e |
parent 5424 | 8ecbcbff9777 |
child 5782 | 8ff48d1a319f |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
18 |
"""core CubicWeb schema necessary for bootstrapping the actual instance's schema |
0 | 19 |
|
20 |
""" |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
21 |
__docformat__ = "restructuredtext en" |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
22 |
_ = unicode |
0 | 23 |
|
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
24 |
from yams.buildobjs import (EntityType, RelationType, RelationDefinition, |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
25 |
SubjectRelation, RichString, String, Boolean, Int) |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
26 |
from cubicweb.schema import ( |
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
27 |
RQLConstraint, |
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
28 |
PUB_SYSTEM_ENTITY_PERMS, PUB_SYSTEM_REL_PERMS, PUB_SYSTEM_ATTR_PERMS |
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
29 |
) |
0 | 30 |
|
31 |
# not restricted since as "is" is handled as other relations, guests need |
|
32 |
# access to this |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
33 |
class CWEType(EntityType): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
34 |
"""define an entity type, used to build the instance schema""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
35 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
0 | 36 |
name = String(required=True, indexed=True, internationalizable=True, |
37 |
unique=True, maxsize=64) |
|
1451 | 38 |
description = RichString(internationalizable=True, |
627
36ade1128af7
use RichString wherever possible in the stdlib
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
39 |
description=_('semantic description of this entity type')) |
0 | 40 |
# necessary to filter using RQL |
41 |
final = Boolean(description=_('automatic')) |
|
42 |
||
43 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
44 |
class CWRType(EntityType): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
45 |
"""define a relation type, used to build the instance schema""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
46 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
0 | 47 |
name = String(required=True, indexed=True, internationalizable=True, |
48 |
unique=True, maxsize=64) |
|
2129
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
49 |
description = RichString(internationalizable=True, |
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
50 |
description=_('semantic description of this relation type')) |
4467
0e73d299730a
fix long-waiting symetric typo: should be spelled symmetric. Add auto database migration on schema deserialization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4319
diff
changeset
|
51 |
symmetric = Boolean(description=_('is this relation equivalent in both direction ?')) |
0 | 52 |
inlined = Boolean(description=_('is this relation physically inlined? you should know what you\'re doing if you are changing this!')) |
53 |
fulltext_container = String(description=_('if full text content of subject/object entity ' |
|
54 |
'should be added to other side entity (the container).'), |
|
55 |
vocabulary=('', _('subject'), _('object')), |
|
56 |
maxsize=8, default=None) |
|
57 |
final = Boolean(description=_('automatic')) |
|
58 |
||
59 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
60 |
class CWAttribute(EntityType): |
0 | 61 |
"""define a final relation: link a final relation type from a non final |
1451 | 62 |
entity to a final entity type. |
0 | 63 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
64 |
used to build the instance schema |
0 | 65 |
""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
66 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
67 |
relation_type = SubjectRelation('CWRType', cardinality='1*', |
0 | 68 |
constraints=[RQLConstraint('O final TRUE')], |
69 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
70 |
from_entity = SubjectRelation('CWEType', cardinality='1*', |
0 | 71 |
constraints=[RQLConstraint('O final FALSE')], |
72 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
73 |
to_entity = SubjectRelation('CWEType', cardinality='1*', |
0 | 74 |
constraints=[RQLConstraint('O final TRUE')], |
75 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
76 |
constrained_by = SubjectRelation('CWConstraint', cardinality='*1', composite='subject') |
1451 | 77 |
|
0 | 78 |
cardinality = String(maxsize=2, internationalizable=True, |
1979
daf297034197
remove meaningless cards for attributes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
79 |
vocabulary=[_('?1'), _('11')], |
0 | 80 |
description=_('subject/object cardinality')) |
81 |
ordernum = Int(description=('control subject entity\'s relations order'), default=0) |
|
1451 | 82 |
|
0 | 83 |
indexed = Boolean(description=_('create an index for quick search on this attribute')) |
84 |
fulltextindexed = Boolean(description=_('index this attribute\'s value in the plain text index')) |
|
85 |
internationalizable = Boolean(description=_('is this attribute\'s value translatable')) |
|
86 |
defaultval = String(maxsize=256) |
|
1451 | 87 |
|
2129
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
88 |
description = RichString(internationalizable=True, |
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
89 |
description=_('semantic description of this attribute')) |
1451 | 90 |
|
0 | 91 |
|
1451 | 92 |
CARDINALITY_VOCAB = [_('?*'), _('1*'), _('+*'), _('**'), |
93 |
_('?+'), _('1+'), _('++'), _('*+'), |
|
0 | 94 |
_('?1'), _('11'), _('+1'), _('*1'), |
95 |
_('??'), _('1?'), _('+?'), _('*?')] |
|
96 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
97 |
class CWRelation(EntityType): |
0 | 98 |
"""define a non final relation: link a non final relation type from a non |
1451 | 99 |
final entity to a non final entity type. |
0 | 100 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
101 |
used to build the instance schema |
0 | 102 |
""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
103 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
104 |
relation_type = SubjectRelation('CWRType', cardinality='1*', |
0 | 105 |
constraints=[RQLConstraint('O final FALSE')], |
106 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
107 |
from_entity = SubjectRelation('CWEType', cardinality='1*', |
0 | 108 |
constraints=[RQLConstraint('O final FALSE')], |
109 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
110 |
to_entity = SubjectRelation('CWEType', cardinality='1*', |
0 | 111 |
constraints=[RQLConstraint('O final FALSE')], |
112 |
composite='object') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
113 |
constrained_by = SubjectRelation('CWConstraint', cardinality='*1', composite='subject') |
1451 | 114 |
|
0 | 115 |
cardinality = String(maxsize=2, internationalizable=True, |
116 |
vocabulary=CARDINALITY_VOCAB, |
|
117 |
description=_('subject/object cardinality')) |
|
118 |
ordernum = Int(description=_('control subject entity\'s relations order'), |
|
119 |
default=0) |
|
120 |
composite = String(description=_('is the subject/object entity of the relation ' |
|
121 |
'composed of the other ? This implies that when ' |
|
122 |
'the composite is deleted, composants are also ' |
|
123 |
'deleted.'), |
|
124 |
vocabulary=('', _('subject'), _('object')), |
|
125 |
maxsize=8, default=None) |
|
1451 | 126 |
|
2129
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
127 |
description = RichString(internationalizable=True, |
fbfab570a276
use RichString
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2127
diff
changeset
|
128 |
description=_('semantic description of this relation')) |
1451 | 129 |
|
0 | 130 |
|
131 |
# not restricted since it has to be read when checking allowed transitions |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
132 |
class RQLExpression(EntityType): |
4535
71c86a315a9a
update translatable docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
133 |
"""define a rql expression used to define permissions""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
134 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
0 | 135 |
exprtype = String(required=True, vocabulary=['ERQLExpression', 'RRQLExpression']) |
136 |
mainvars = String(maxsize=8, |
|
137 |
description=_('name of the main variables which should be ' |
|
138 |
'used in the selection if necessary (comma ' |
|
139 |
'separated)')) |
|
1451 | 140 |
expression = String(required=True, |
0 | 141 |
description=_('restriction part of a rql query. ' |
142 |
'For entity rql expression, X and U are ' |
|
143 |
'predefined respectivly to the current object and to ' |
|
144 |
'the request user. For relation rql expression, ' |
|
145 |
'S, O and U are predefined respectivly to the current ' |
|
146 |
'relation\'subject, object and to ' |
|
147 |
'the request user. ')) |
|
148 |
||
149 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
150 |
class CWConstraint(EntityType): |
0 | 151 |
"""define a schema constraint""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
152 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
153 |
cstrtype = SubjectRelation('CWConstraintType', cardinality='1*') |
0 | 154 |
value = String(description=_('depends on the constraint type')) |
155 |
||
156 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
157 |
class CWConstraintType(EntityType): |
0 | 158 |
"""define a schema constraint type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
159 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
0 | 160 |
name = String(required=True, indexed=True, internationalizable=True, |
161 |
unique=True, maxsize=64) |
|
162 |
||
163 |
||
164 |
# not restricted since it has to be read when checking allowed transitions |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
165 |
class CWGroup(EntityType): |
0 | 166 |
"""define a CubicWeb users group""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
167 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
0 | 168 |
name = String(required=True, indexed=True, internationalizable=True, |
169 |
unique=True, maxsize=64) |
|
170 |
||
1451 | 171 |
|
3392
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
172 |
class CWProperty(EntityType): |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
173 |
"""used for cubicweb configuration. Once a property has been created you |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
174 |
can't change the key. |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
175 |
""" |
4003
b9436fe77c9e
fix bad merge
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3890
diff
changeset
|
176 |
__permissions__ = { |
3392
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
177 |
'read': ('managers', 'users', 'guests'), |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
178 |
'add': ('managers', 'users',), |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
179 |
'update': ('managers', 'owners',), |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
180 |
'delete': ('managers', 'owners',), |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
181 |
} |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
182 |
# key is a reserved word for mysql |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
183 |
pkey = String(required=True, internationalizable=True, maxsize=256, |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
184 |
description=_('defines what\'s the property is applied for. ' |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
185 |
'You must select this first to be able to set ' |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
186 |
'value')) |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
187 |
value = String(internationalizable=True, maxsize=256) |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2476
diff
changeset
|
188 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
189 |
class relation_type(RelationType): |
0 | 190 |
"""link a relation definition to its relation type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
191 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
0 | 192 |
inlined = True |
1451 | 193 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
194 |
class from_entity(RelationType): |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
195 |
"""link a relation definition to its subject entity type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
196 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
0 | 197 |
inlined = True |
198 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
199 |
class to_entity(RelationType): |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
200 |
"""link a relation definition to its object entity type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
201 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
202 |
inlined = True |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
203 |
|
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
204 |
class constrained_by(RelationType): |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
205 |
"""constraints applying on this relation""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
206 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
207 |
|
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
208 |
class cstrtype(RelationType): |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
209 |
"""constraint factory""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
210 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
211 |
inlined = True |
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
212 |
|
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
213 |
|
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
214 |
class read_permission_cwgroup(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
215 |
"""groups allowed to read entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
216 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
217 |
name = 'read_permission' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
218 |
subject = ('CWEType', 'CWAttribute', 'CWRelation') |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
219 |
object = 'CWGroup' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
220 |
cardinality = '**' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
221 |
|
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
222 |
class add_permission_cwgroup(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
223 |
"""groups allowed to add entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
224 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
225 |
name = 'add_permission' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
226 |
subject = ('CWEType', 'CWRelation') |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
227 |
object = 'CWGroup' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
228 |
cardinality = '**' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
229 |
|
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
230 |
class delete_permission_cwgroup(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
231 |
"""groups allowed to delete entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
232 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
233 |
name = 'delete_permission' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
234 |
subject = ('CWEType', 'CWRelation') |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
235 |
object = 'CWGroup' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
236 |
cardinality = '**' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
237 |
|
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
238 |
class update_permission_cwgroup(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
239 |
"""groups allowed to update entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
240 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
241 |
name = 'update_permission' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
242 |
subject = ('CWEType', 'CWAttribute') |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
243 |
object = 'CWGroup' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
244 |
cardinality = '**' |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
245 |
|
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
246 |
class read_permission_rqlexpr(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
247 |
"""rql expression allowing to read entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
248 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
249 |
name = 'read_permission' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
250 |
subject = ('CWEType', 'CWAttribute', 'CWRelation') |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
251 |
object = 'RQLExpression' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
252 |
cardinality = '*?' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
253 |
composite = 'subject' |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
254 |
|
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
255 |
class add_permission_rqlexpr(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
256 |
"""rql expression allowing to add entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
257 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
258 |
name = 'add_permission' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
259 |
subject = ('CWEType', 'CWRelation') |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
260 |
object = 'RQLExpression' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
261 |
cardinality = '*?' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
262 |
composite = 'subject' |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
263 |
|
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
264 |
class delete_permission_rqlexpr(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
265 |
"""rql expression allowing to delete entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
266 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
267 |
name = 'delete_permission' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
268 |
subject = ('CWEType', 'CWRelation') |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
269 |
object = 'RQLExpression' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
270 |
cardinality = '*?' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
271 |
composite = 'subject' |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
272 |
|
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
273 |
class update_permission_rqlexpr(RelationDefinition): |
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
274 |
"""rql expression allowing to update entities/relations of this type""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4588
diff
changeset
|
275 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
276 |
name = 'update_permission' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
277 |
subject = ('CWEType', 'CWAttribute') |
4588
36b700c00d38
fix *_permissions schema: using the same cardinality/composite properties for cwgroup/rqlexpr leads to important pbs...
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
278 |
object = 'RQLExpression' |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
279 |
cardinality = '*?' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4535
diff
changeset
|
280 |
composite = 'subject' |
0 | 281 |
|
282 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
283 |
class is_(RelationType): |
0 | 284 |
"""core relation indicating the type of an entity |
285 |
""" |
|
286 |
name = 'is' |
|
287 |
# don't explicitly set composite here, this is handled anyway |
|
288 |
#composite = 'object' |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
289 |
__permissions__ = { |
0 | 290 |
'read': ('managers', 'users', 'guests'), |
291 |
'add': (), |
|
292 |
'delete': (), |
|
293 |
} |
|
294 |
cardinality = '1*' |
|
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2140
diff
changeset
|
295 |
subject = '*' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
296 |
object = 'CWEType' |
0 | 297 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
298 |
class is_instance_of(RelationType): |
0 | 299 |
"""core relation indicating the types (including specialized types) |
300 |
of an entity |
|
301 |
""" |
|
302 |
# don't explicitly set composite here, this is handled anyway |
|
303 |
#composite = 'object' |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
304 |
__permissions__ = { |
0 | 305 |
'read': ('managers', 'users', 'guests'), |
306 |
'add': (), |
|
307 |
'delete': (), |
|
308 |
} |
|
309 |
cardinality = '+*' |
|
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2140
diff
changeset
|
310 |
subject = '*' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
311 |
object = 'CWEType' |
0 | 312 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2129
diff
changeset
|
313 |
class specializes(RelationType): |
0 | 314 |
name = 'specializes' |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
315 |
__permissions__ = { |
0 | 316 |
'read': ('managers', 'users', 'guests'), |
317 |
'add': ('managers',), |
|
318 |
'delete': ('managers',), |
|
319 |
} |
|
320 |
cardinality = '?*' |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
321 |
subject = 'CWEType' |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
628
diff
changeset
|
322 |
object = 'CWEType' |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
323 |
|
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
324 |
def post_build_callback(schema): |
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
325 |
"""set attributes permissions for schema/workflow entities""" |
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
326 |
from cubicweb.schema import SCHEMA_TYPES, WORKFLOW_TYPES, META_RTYPES |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4755
diff
changeset
|
327 |
wftypes = WORKFLOW_TYPES - set(('TrInfo',)) |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
328 |
for eschema in schema.entities(): |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4755
diff
changeset
|
329 |
if eschema in SCHEMA_TYPES or eschema in wftypes: |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
330 |
for rschema in eschema.subject_relations(): |
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
331 |
if rschema.final and not rschema in META_RTYPES: |
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
332 |
rdef = eschema.rdef(rschema) |
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
333 |
rdef.permissions = PUB_SYSTEM_ATTR_PERMS |