author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 11 Jun 2010 14:57:51 +0200 | |
branch | stable |
changeset 5735 | 548b8f99f758 |
parent 5577 | 4e3ca117c275 |
child 5896 | 67683b7e591a |
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
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:
4759
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""core CubicWeb schema, but not necessary at bootstrap time |
19 |
||
20 |
""" |
|
21 |
__docformat__ = "restructuredtext en" |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
22 |
_ = unicode |
0 | 23 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
24 |
from yams.buildobjs import (EntityType, RelationType, SubjectRelation, |
4719
aaed3f813ef8
kill dead/useless code as suggested by pylint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4590
diff
changeset
|
25 |
String, Datetime, Password) |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
26 |
from cubicweb.schema import ( |
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
27 |
RQLConstraint, WorkflowableEntityType, ERQLExpression, RRQLExpression, |
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
28 |
PUB_SYSTEM_ENTITY_PERMS, PUB_SYSTEM_REL_PERMS, PUB_SYSTEM_ATTR_PERMS) |
0 | 29 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1303
diff
changeset
|
30 |
class CWUser(WorkflowableEntityType): |
0 | 31 |
"""define a CubicWeb user""" |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
32 |
__permissions__ = { |
0 | 33 |
'read': ('managers', 'users', ERQLExpression('X identity U')), |
34 |
'add': ('managers',), |
|
35 |
'delete': ('managers',), |
|
36 |
'update': ('managers', ERQLExpression('X identity U, NOT U in_group G, G name "guests"'),), |
|
37 |
} |
|
38 |
||
39 |
login = String(required=True, unique=True, maxsize=64, |
|
40 |
description=_('unique identifier used to connect to the application')) |
|
41 |
upassword = Password(required=True) # password is a reserved word for mysql |
|
42 |
firstname = String(maxsize=64) |
|
43 |
surname = String(maxsize=64) |
|
44 |
last_login_time = Datetime(description=_('last connection date')) |
|
45 |
# allowing an email to be the primary email of multiple entities is necessary for |
|
1451 | 46 |
# test at least :-/ |
0 | 47 |
primary_email = SubjectRelation('EmailAddress', cardinality='??', |
48 |
description=_('email address to use for notification')) |
|
49 |
use_email = SubjectRelation('EmailAddress', cardinality='*?', composite='subject') |
|
50 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1303
diff
changeset
|
51 |
in_group = SubjectRelation('CWGroup', cardinality='+*', |
0 | 52 |
constraints=[RQLConstraint('NOT O name "owners"')], |
53 |
description=_('groups grant permissions to the user')) |
|
54 |
||
55 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
56 |
class EmailAddress(EntityType): |
0 | 57 |
"""an electronic mail address associated to a short alias""" |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
58 |
__permissions__ = { |
0 | 59 |
'read': ('managers', 'users', 'guests',), # XXX if P use_email X, U has_read_permission P |
60 |
'add': ('managers', 'users',), |
|
61 |
'delete': ('managers', 'owners', ERQLExpression('P use_email X, U has_update_permission P')), |
|
62 |
'update': ('managers', 'owners', ERQLExpression('P use_email X, U has_update_permission P')), |
|
63 |
} |
|
1451 | 64 |
|
0 | 65 |
alias = String(fulltextindexed=True, maxsize=56) |
1451 | 66 |
address = String(required=True, fulltextindexed=True, |
0 | 67 |
indexed=True, unique=True, maxsize=128) |
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
68 |
prefered_form = SubjectRelation('EmailAddress', cardinality='?*', |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
69 |
description=_('when multiple addresses are equivalent \ |
0 | 70 |
(such as python-projects@logilab.org and python-projects@lists.logilab.org), set this \ |
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
71 |
to indicate which is the preferred form.')) |
0 | 72 |
|
73 |
class use_email(RelationType): |
|
1742
25a765e756c4
fix self on initfunc
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1477
diff
changeset
|
74 |
""" """ |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
75 |
__permissions__ = { |
0 | 76 |
'read': ('managers', 'users', 'guests',), |
77 |
'add': ('managers', RRQLExpression('U has_update_permission S'),), |
|
78 |
'delete': ('managers', RRQLExpression('U has_update_permission S'),), |
|
79 |
} |
|
80 |
fulltext_container = 'subject' |
|
81 |
||
82 |
class primary_email(RelationType): |
|
83 |
"""the prefered email""" |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
84 |
__permissions__ = use_email.__permissions__ |
1451 | 85 |
|
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
86 |
class prefered_form(RelationType): |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
87 |
__permissions__ = { |
0 | 88 |
'read': ('managers', 'users', 'guests',), |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
89 |
# XXX should have update __permissions__ on both subject and object, |
0 | 90 |
# though by doing this we will probably have no way to add |
91 |
# this relation in the web ui. The easiest way to acheive this |
|
92 |
# is probably to be able to have "U has_update_permission O" as |
|
93 |
# RQLConstraint of the relation definition, though this is not yet |
|
94 |
# possible |
|
95 |
'add': ('managers', RRQLExpression('U has_update_permission S'),), |
|
96 |
'delete': ('managers', RRQLExpression('U has_update_permission S'),), |
|
97 |
} |
|
98 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
99 |
class in_group(RelationType): |
0 | 100 |
"""core relation indicating a user's groups""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
101 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
1451 | 102 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
103 |
class owned_by(RelationType): |
0 | 104 |
"""core relation indicating owners of an entity. This relation |
105 |
implicitly put the owner into the owners group for the entity |
|
106 |
""" |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
107 |
__permissions__ = { |
0 | 108 |
'read': ('managers', 'users', 'guests'), |
1451 | 109 |
'add': ('managers', RRQLExpression('S owned_by U'),), |
0 | 110 |
'delete': ('managers', RRQLExpression('S owned_by U'),), |
111 |
} |
|
112 |
# 0..n cardinality for entities created by internal session (no attached user) |
|
113 |
# and to support later deletion of a user which has created some entities |
|
114 |
cardinality = '**' |
|
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2297
diff
changeset
|
115 |
subject = '*' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1303
diff
changeset
|
116 |
object = 'CWUser' |
1451 | 117 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
118 |
class created_by(RelationType): |
0 | 119 |
"""core relation indicating the original creator of an entity""" |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
120 |
__permissions__ = { |
0 | 121 |
'read': ('managers', 'users', 'guests'), |
122 |
'add': ('managers',), |
|
123 |
'delete': ('managers',), |
|
124 |
} |
|
125 |
# 0..1 cardinality for entities created by internal session (no attached user) |
|
126 |
# and to support later deletion of a user which has created some entities |
|
1451 | 127 |
cardinality = '?*' |
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2297
diff
changeset
|
128 |
subject = '*' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1303
diff
changeset
|
129 |
object = 'CWUser' |
0 | 130 |
|
1451 | 131 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
132 |
class creation_date(RelationType): |
0 | 133 |
"""creation time of an entity""" |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
134 |
__permissions__ = PUB_SYSTEM_ATTR_PERMS |
0 | 135 |
cardinality = '11' |
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2297
diff
changeset
|
136 |
subject = '*' |
0 | 137 |
object = 'Datetime' |
138 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
139 |
class modification_date(RelationType): |
0 | 140 |
"""latest modification time of an entity""" |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
141 |
__permissions__ = PUB_SYSTEM_ATTR_PERMS |
0 | 142 |
cardinality = '11' |
2438
576f4d51f826
[cleanup] fix deprecation warnings
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2297
diff
changeset
|
143 |
subject = '*' |
0 | 144 |
object = 'Datetime' |
145 |
||
2456
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2441
diff
changeset
|
146 |
class cwuri(RelationType): |
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2441
diff
changeset
|
147 |
"""internal entity uri""" |
4755
13a5d3a7410e
[schema] tweaks meta-relations and schema/workflow entities attributes permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4754
diff
changeset
|
148 |
__permissions__ = PUB_SYSTEM_ATTR_PERMS |
2456
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2441
diff
changeset
|
149 |
cardinality = '11' |
2464
926696e38502
usage of '**' is deprecated in RelationType declaration, use '*' instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2456
diff
changeset
|
150 |
subject = '*' |
2456
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2441
diff
changeset
|
151 |
object = 'String' |
aa25d6b244c8
new cwuri metadata + a few tests fixes on the way
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2441
diff
changeset
|
152 |
|
0 | 153 |
|
3392
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3277
diff
changeset
|
154 |
# XXX find a better relation name |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
155 |
class for_user(RelationType): |
0 | 156 |
"""link a property to the user which want this property customization. Unless |
157 |
you're a site manager, this relation will be handled automatically. |
|
158 |
""" |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
159 |
__permissions__ = { |
0 | 160 |
'read': ('managers', 'users', 'guests'), |
161 |
'add': ('managers',), |
|
162 |
'delete': ('managers',), |
|
163 |
} |
|
164 |
inlined = True |
|
3392
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3277
diff
changeset
|
165 |
subject = 'CWProperty' |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3277
diff
changeset
|
166 |
object = 'CWUser' |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3277
diff
changeset
|
167 |
composite = 'object' |
36bcf206e157
[schema] CWProperty is required at bootstrap time
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3277
diff
changeset
|
168 |
cardinality = '?*' |
0 | 169 |
|
170 |
||
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
171 |
class CWPermission(EntityType): |
0 | 172 |
"""entity type that may be used to construct some advanced security configuration |
173 |
""" |
|
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
174 |
__permissions__ = PUB_SYSTEM_ENTITY_PERMS |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
175 |
|
0 | 176 |
name = String(required=True, indexed=True, internationalizable=True, maxsize=100, |
177 |
description=_('name or identifier of the permission')) |
|
178 |
label = String(required=True, internationalizable=True, maxsize=100, |
|
5577
4e3ca117c275
[schema] fix same_as cardinality and bump Bookmark.path max length to approximative max url size
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
179 |
description=_('distinct label to distinguate between other ' |
4e3ca117c275
[schema] fix same_as cardinality and bump Bookmark.path max length to approximative max url size
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
180 |
'permission entity of the same name')) |
1451 | 181 |
require_group = SubjectRelation('CWGroup', |
0 | 182 |
description=_('groups to which the permission is granted')) |
183 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1303
diff
changeset
|
184 |
# explicitly add X require_permission CWPermission for each entity that should have |
0 | 185 |
# configurable security |
186 |
class require_permission(RelationType): |
|
187 |
"""link a permission to the entity. This permission should be used in the |
|
188 |
security definition of the entity's type to be useful. |
|
189 |
""" |
|
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
190 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
1451 | 191 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
192 |
class require_group(RelationType): |
0 | 193 |
"""used to grant a permission to a group""" |
4754
6bf17f810975
[schema] new constants for permissions definitions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
194 |
__permissions__ = PUB_SYSTEM_REL_PERMS |
0 | 195 |
|
1451 | 196 |
|
2434
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
197 |
class ExternalUri(EntityType): |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
198 |
"""a URI representing an object in external data store""" |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
199 |
uri = String(required=True, unique=True, maxsize=256, |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
200 |
description=_('the URI of the object')) |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
201 |
|
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
202 |
class same_as(RelationType): |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
203 |
"""generic relation to specify that an external entity represent the same |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
204 |
object as a local one: |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
205 |
http://www.w3.org/TR/owl-ref/#sameAs-def |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
206 |
""" |
4535
71c86a315a9a
update translatable docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
207 |
#NOTE: You'll have to explicitly declare which entity types can have a |
71c86a315a9a
update translatable docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
208 |
#same_as relation |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
209 |
__permissions__ = { |
2434
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
210 |
'read': ('managers', 'users', 'guests',), |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
211 |
'add': ('managers', 'users'), |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
212 |
'delete': ('managers', 'owners'), |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
213 |
} |
5577
4e3ca117c275
[schema] fix same_as cardinality and bump Bookmark.path max length to approximative max url size
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
214 |
cardinality = '**' |
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:
4252
diff
changeset
|
215 |
symmetric = True |
2434
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
216 |
# NOTE: the 'object = ExternalUri' declaration will still be mandatory |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
217 |
# in the cube's schema. |
ed85d69576b4
add sameAs support in cubicweb standard schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2297
diff
changeset
|
218 |
object = 'ExternalUri' |
1477 | 219 |
|
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
220 |
class CWCache(EntityType): |
59
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
221 |
"""a simple cache entity characterized by a name and |
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
222 |
a validity date. |
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
223 |
|
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
224 |
The target application is responsible for updating timestamp |
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
225 |
when necessary to invalidate the cache (typically in hooks). |
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
226 |
|
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2464
diff
changeset
|
227 |
Also, checkout the AppObject.get_cache() method. |
59
9660bd221553
ECache should be a meta entity
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6
diff
changeset
|
228 |
""" |
4759 | 229 |
# XXX only handle by hooks, shouldn't be readable/editable at all through |
230 |
# the ui and so no permissions should be granted, no? |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
231 |
__permissions__ = { |
6
29ab115b9fcb
change permissions for Ecache
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
232 |
'read': ('managers', 'users', 'guests'), |
29ab115b9fcb
change permissions for Ecache
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
233 |
'add': ('managers',), |
2140
1cba3393ba01
update schema definition to avoid deprecation warning with new yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
234 |
'update': ('managers', 'users',), # XXX |
6
29ab115b9fcb
change permissions for Ecache
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
235 |
'delete': ('managers',), |
29ab115b9fcb
change permissions for Ecache
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
236 |
} |
29ab115b9fcb
change permissions for Ecache
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
237 |
|
1445
d3c9b075ceb7
set a size constraint on ECache's title
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1281
diff
changeset
|
238 |
name = String(required=True, unique=True, indexed=True, maxsize=128, |
0 | 239 |
description=_('name of the cache')) |
240 |
timestamp = Datetime(default='NOW') |
|
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
241 |
|
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
242 |
|
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
243 |
# "abtract" relation types, not used in cubicweb itself |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
244 |
|
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
245 |
class identical_to(RelationType): |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
246 |
"""identical to""" |
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:
4252
diff
changeset
|
247 |
symmetric = True |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
248 |
__permissions__ = { |
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
249 |
'read': ('managers', 'users', 'guests',), |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
250 |
# XXX should have update __permissions__ on both subject and object, |
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
251 |
# though by doing this we will probably have no way to add |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
252 |
# this relation in the web ui. The easiest way to acheive this |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
253 |
# is probably to be able to have "U has_update_permission O" as |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
254 |
# RQLConstraint of the relation definition, though this is not yet |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
255 |
# possible |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
256 |
'add': ('managers', RRQLExpression('U has_update_permission S'),), |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
257 |
'delete': ('managers', RRQLExpression('U has_update_permission S'),), |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
258 |
} |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
259 |
|
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
260 |
class see_also(RelationType): |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
261 |
"""generic relation to link one entity to another""" |
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:
4252
diff
changeset
|
262 |
symmetric = True |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3277
diff
changeset
|
263 |
__permissions__ = { |
3277
4fdb165ae3de
fix see_also permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
264 |
'read': ('managers', 'users', 'guests',), |
4fdb165ae3de
fix see_also permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
265 |
'add': ('managers', RRQLExpression('U has_update_permission S'),), |
4fdb165ae3de
fix see_also permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
266 |
'delete': ('managers', RRQLExpression('U has_update_permission S'),), |
4fdb165ae3de
fix see_also permissions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
267 |
} |