author | sylvain.thenault@logilab.fr |
Thu, 09 Apr 2009 14:31:32 +0200 | |
branch | tls-sprint |
changeset 1318 | 50e1a778c5ee |
parent 1313 | 9cff1eee0208 |
child 1320 | c85f4d8eff8b |
permissions | -rw-r--r-- |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
1 |
"""Set of HTML automatic forms to create, delete, copy or edit a single entity |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
2 |
or a list of entities of the same type |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
3 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
4 |
:organization: Logilab |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
7 |
""" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
8 |
__docformat__ = "restructuredtext en" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
9 |
|
1147 | 10 |
from copy import copy |
11 |
||
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
12 |
from simplejson import dumps |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
13 |
|
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
14 |
from logilab.common.decorators import iclassmethod |
1147 | 15 |
from logilab.mtconverter import html_escape |
16 |
||
17 |
from cubicweb import typed_eid |
|
18 |
from cubicweb.selectors import (match_kwargs, one_line_rset, non_final_entity, |
|
19 |
specified_etype_implements, yes) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
20 |
from cubicweb.utils import make_uid |
1132 | 21 |
from cubicweb.view import EntityView |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
22 |
from cubicweb.common import tags |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
23 |
from cubicweb.web import INTERNAL_FIELD_VALUE, stdmsgs, uicfg |
1276
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
24 |
from cubicweb.web.form import (FieldNotFound, CompositeForm, EntityFieldsForm, |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
25 |
FormViewMixIn) |
1132 | 26 |
from cubicweb.web.formfields import guess_field |
1304 | 27 |
from cubicweb.web.formwidgets import Button, SubmitButton, ResetButton |
1147 | 28 |
from cubicweb.web.formrenderers import (FormRenderer, EntityFormRenderer, |
29 |
EntityCompositeFormRenderer, |
|
30 |
EntityInlinedFormRenderer) |
|
31 |
_ = unicode |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
32 |
|
1147 | 33 |
def relation_id(eid, rtype, role, reid): |
34 |
"""return an identifier for a relation between two entities""" |
|
35 |
if role == 'subject': |
|
36 |
return u'%s:%s:%s' % (eid, rtype, reid) |
|
37 |
return u'%s:%s:%s' % (reid, rtype, eid) |
|
38 |
||
39 |
def toggable_relation_link(eid, nodeid, label='x'): |
|
40 |
"""return javascript snippet to delete/undelete a relation between two |
|
41 |
entities |
|
42 |
""" |
|
43 |
js = u"javascript: togglePendingDelete('%s', %s);" % (nodeid, html_escape(dumps(eid))) |
|
44 |
return u'[<a class="handle" href="%s" id="handle%s">%s</a>]' % (js, nodeid, label) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
45 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
46 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
47 |
class DeleteConfForm(FormViewMixIn, EntityView): |
1147 | 48 |
"""form used to confirm deletion of some entities""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
49 |
id = 'deleteconf' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
50 |
title = _('delete') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
51 |
# don't use navigation, all entities asked to be deleted should be displayed |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
52 |
# else we will only delete the displayed page |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
53 |
need_navigation = False |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
54 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
55 |
def call(self): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
56 |
"""ask for confirmation before real deletion""" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
57 |
req, w = self.req, self.w |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
58 |
_ = req._ |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
59 |
w(u'<script type="text/javascript">updateMessage(\'%s\');</script>\n' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
60 |
% _('this action is not reversible!')) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
61 |
# XXX above message should have style of a warning |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
62 |
w(u'<h4>%s</h4>\n' % _('Do you want to delete the following element(s) ?')) |
1304 | 63 |
form = CompositeForm(req, domid='deleteconf', copy_nav_params=True, |
64 |
action=self.build_url('edit'), onsubmit=None, |
|
65 |
form_buttons=[Button(stdmsgs.YES, cwaction='delete'), |
|
66 |
Button(stdmsgs.NO, cwaction='cancel')]) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
67 |
done = set() |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
68 |
w(u'<ul>\n') |
1147 | 69 |
for entity in self.rset.entities(): |
70 |
if entity.eid in done: |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
71 |
continue |
1147 | 72 |
done.add(entity.eid) |
73 |
subform = EntityFieldsForm(req, entity=entity, set_error_url=False) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
74 |
form.form_add_subform(subform) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
75 |
# don't use outofcontext view or any other that may contain inline edition form |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
76 |
w(u'<li>%s</li>' % tags.a(entity.view('textoutofcontext'), |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
77 |
href=entity.absolute_url())) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
78 |
w(u'</ul>\n') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
79 |
w(form.form_render()) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
80 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
81 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
82 |
class ClickAndEditFormView(FormViewMixIn, EntityView): |
1147 | 83 |
"""form used to permit ajax edition of an attribute of an entity in a view |
84 |
|
|
85 |
(double-click on the field to see an appropriate edition widget) |
|
86 |
""" |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
87 |
id = 'reledit' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
88 |
__select__ = non_final_entity() & match_kwargs('rtype') |
1147 | 89 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
90 |
# FIXME editableField class could be toggleable from userprefs |
1147 | 91 |
|
92 |
onsubmit = ("return inlineValidateForm('%(divid)s-form', '%(rtype)s', " |
|
93 |
"'%(eid)s', '%(divid)s', %(reload)s);") |
|
94 |
ondblclick = "showInlineEditionForm(%(eid)s, '%(rtype)s', '%(divid)s')" |
|
95 |
||
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
96 |
def cell_call(self, row, col, rtype=None, role='subject', reload=False): |
1147 | 97 |
"""display field to edit entity's `rtype` relation on double-click""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
98 |
entity = self.entity(row, col) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
99 |
if getattr(entity, rtype) is None: |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
100 |
value = self.req._('not specified') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
101 |
else: |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
102 |
value = entity.printable_value(rtype) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
103 |
if not entity.has_perm('update'): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
104 |
self.w(value) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
105 |
return |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
106 |
eid = entity.eid |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
107 |
edit_key = make_uid('%s-%s' % (rtype, eid)) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
108 |
divid = 'd%s' % edit_key |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
109 |
reload = dumps(reload) |
1304 | 110 |
buttons = [SubmitButton(stdmsgs.BUTTON_OK, cwaction='apply'), |
111 |
Button(stdmsgs.BUTTON_CANCEL, |
|
112 |
onclick="cancelInlineEdit(%s,\'%s\',\'%s\')" % (eid, rtype, divid))] |
|
1147 | 113 |
form = self.vreg.select_object('forms', 'edition', self.req, self.rset, |
1304 | 114 |
row=row, col=col, form_buttons=buttons, |
1147 | 115 |
domid='%s-form' % divid, action='#', |
116 |
cssstyle='display: none', |
|
117 |
onsubmit=self.onsubmit % locals()) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
118 |
renderer = FormRenderer(display_label=False, display_help=False, |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
119 |
display_fields=(rtype,), button_bar_class='buttonbar') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
120 |
self.w(tags.div(value, klass='editableField', id=divid, |
1147 | 121 |
ondblclick=self.ondblclick % locals())) |
122 |
self.w(form.form_render(renderer=renderer)) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
123 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
124 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
125 |
class AutomaticEntityForm(EntityFieldsForm): |
1147 | 126 |
"""base automatic form to edit any entity |
127 |
||
128 |
Designed to be flly generated from schema but highly configurable through: |
|
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
129 |
* rtags (rcategories, rfields, rwidgets, inlined, rpermissions) |
1147 | 130 |
* various standard form parameters |
131 |
||
132 |
You can also easily customise it by adding/removing fields in |
|
133 |
AutomaticEntityForm instances. |
|
134 |
""" |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
135 |
id = 'edition' |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
136 |
|
1147 | 137 |
cwtarget = 'eformframe' |
138 |
cssclass = 'entityForm' |
|
139 |
copy_nav_params = True |
|
1304 | 140 |
form_buttons = [SubmitButton(stdmsgs.BUTTON_OK), |
141 |
Button(stdmsgs.BUTTON_APPLY, cwaction='apply'), |
|
142 |
Button(stdmsgs.BUTTON_CANCEL, cwaction='cancel')] |
|
1147 | 143 |
attrcategories = ('primary', 'secondary') |
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
144 |
# class attributes below are actually stored in the uicfg module since we |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
145 |
# don't want them to be reloaded |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
146 |
rcategories = uicfg.rcategories |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
147 |
rfields = uicfg.rfields |
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
148 |
rwidgets = uicfg.rwidgets |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
149 |
rinlined = uicfg.rinlined |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
150 |
rpermissions_overrides = uicfg.rpermissions_overrides |
1147 | 151 |
|
152 |
@classmethod |
|
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
1277
diff
changeset
|
153 |
def vreg_initialization_completed(cls): |
1147 | 154 |
"""set default category tags for relations where it's not yet defined in |
155 |
the category relation tags |
|
156 |
""" |
|
157 |
for eschema in cls.schema.entities(): |
|
158 |
for rschema, tschemas, role in eschema.relation_definitions(True): |
|
159 |
for tschema in tschemas: |
|
160 |
if role == 'subject': |
|
161 |
X, Y = eschema, tschema |
|
162 |
card = rschema.rproperty(X, Y, 'cardinality')[0] |
|
163 |
composed = rschema.rproperty(X, Y, 'composite') == 'object' |
|
164 |
else: |
|
165 |
X, Y = tschema, eschema |
|
166 |
card = rschema.rproperty(X, Y, 'cardinality')[1] |
|
167 |
composed = rschema.rproperty(X, Y, 'composite') == 'subject' |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
168 |
if not cls.rcategories.rtag(rschema, role, X, Y): |
1147 | 169 |
if card in '1+': |
170 |
if not rschema.is_final() and composed: |
|
171 |
category = 'generated' |
|
172 |
else: |
|
173 |
category = 'primary' |
|
174 |
elif rschema.is_final(): |
|
175 |
category = 'secondary' |
|
176 |
else: |
|
177 |
category = 'generic' |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
178 |
cls.rcategories.set_rtag(category, rschema, role, X, Y) |
1154 | 179 |
|
180 |
@classmethod |
|
1291
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
181 |
def erelations_by_category(cls, entity, categories=None, permission=None, rtags=None): |
1147 | 182 |
"""return a list of (relation schema, target schemas, role) matching |
183 |
categories and permission |
|
184 |
""" |
|
185 |
if categories is not None: |
|
186 |
if not isinstance(categories, (list, tuple, set, frozenset)): |
|
187 |
categories = (categories,) |
|
188 |
if not isinstance(categories, (set, frozenset)): |
|
189 |
categories = frozenset(categories) |
|
1154 | 190 |
eschema = entity.e_schema |
1291
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
191 |
if rtags is None: |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
192 |
rtags = cls.rcategories |
1154 | 193 |
permsoverrides = cls.rpermissions_overrides |
194 |
if entity.has_eid(): |
|
195 |
eid = entity.eid |
|
1147 | 196 |
else: |
197 |
eid = None |
|
198 |
for rschema, targetschemas, role in eschema.relation_definitions(True): |
|
199 |
# check category first, potentially lower cost than checking |
|
200 |
# permission which may imply rql queries |
|
201 |
if categories is not None: |
|
202 |
targetschemas = [tschema for tschema in targetschemas |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
203 |
if rtags.etype_rtag(eschema, rschema, role, tschema) in categories] |
1147 | 204 |
if not targetschemas: |
205 |
continue |
|
206 |
if permission is not None: |
|
207 |
# tag allowing to hijack the permission machinery when |
|
208 |
# permission is not verifiable until the entity is actually |
|
209 |
# created... |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
210 |
if eid is None and '%s_on_new' % permission in permsoverrides.etype_rtags(eschema, rschema, role): |
1147 | 211 |
yield (rschema, targetschemas, role) |
212 |
continue |
|
213 |
if rschema.is_final(): |
|
1154 | 214 |
if not rschema.has_perm(entity.req, permission, eid): |
1147 | 215 |
continue |
216 |
elif role == 'subject': |
|
217 |
if not ((eid is None and rschema.has_local_role(permission)) or |
|
1154 | 218 |
rschema.has_perm(entity.req, permission, fromeid=eid)): |
1147 | 219 |
continue |
220 |
# on relation with cardinality 1 or ?, we need delete perm as well |
|
221 |
# if the relation is already set |
|
222 |
if (permission == 'add' |
|
223 |
and rschema.cardinality(eschema, targetschemas[0], role) in '1?' |
|
1154 | 224 |
and eid and entity.related(rschema.type, role) |
225 |
and not rschema.has_perm(entity.req, 'delete', fromeid=eid, |
|
226 |
toeid=entity.related(rschema.type, role)[0][0])): |
|
1147 | 227 |
continue |
228 |
elif role == 'object': |
|
229 |
if not ((eid is None and rschema.has_local_role(permission)) or |
|
1154 | 230 |
rschema.has_perm(entity.req, permission, toeid=eid)): |
1147 | 231 |
continue |
232 |
# on relation with cardinality 1 or ?, we need delete perm as well |
|
233 |
# if the relation is already set |
|
234 |
if (permission == 'add' |
|
235 |
and rschema.cardinality(targetschemas[0], eschema, role) in '1?' |
|
1154 | 236 |
and eid and entity.related(rschema.type, role) |
237 |
and not rschema.has_perm(entity.req, 'delete', toeid=eid, |
|
238 |
fromeid=entity.related(rschema.type, role)[0][0])): |
|
1147 | 239 |
continue |
240 |
yield (rschema, targetschemas, role) |
|
241 |
||
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
242 |
@classmethod |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
243 |
def esrelations_by_category(cls, entity, categories=None, permission=None): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
244 |
"""filter out result of relations_by_category(categories, permission) by |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
245 |
removing final relations |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
246 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
247 |
return a sorted list of (relation's label, relation'schema, role) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
248 |
""" |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
249 |
result = [] |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
250 |
for rschema, ttypes, role in cls.erelations_by_category( |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
251 |
entity, categories, permission): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
252 |
if rschema.is_final(): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
253 |
continue |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
254 |
result.append((rschema.display_name(entity.req, role), rschema, role)) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
255 |
return sorted(result) |
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
256 |
|
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
257 |
@iclassmethod |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
258 |
def field_by_name(cls_or_self, name, role='subject', eclass=None): |
1276
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
259 |
"""return field with the given name and role. If field is not explicitly |
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
260 |
defined for the form but `eclass` is specified, guess_field will be |
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
261 |
called. |
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
262 |
""" |
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
263 |
try: |
1234 | 264 |
return super(AutomaticEntityForm, cls_or_self).field_by_name(name, role) |
1276
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
265 |
except FieldNotFound: # XXX should raise more explicit exception |
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
266 |
if eclass is None: |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
267 |
raise |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
268 |
field = guess_field(eclass, cls_or_self.schema.rschema(name), role, |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
269 |
eidparam=True) |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
270 |
if field is None: |
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1179
diff
changeset
|
271 |
raise |
1276
f213008fad2c
catch FieldNotFound instead of Exception in field_by_name, return the field if guessable
sylvain.thenault@logilab.fr
parents:
1234
diff
changeset
|
272 |
return field |
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
273 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
274 |
def __init__(self, *args, **kwargs): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
275 |
super(AutomaticEntityForm, self).__init__(*args, **kwargs) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
276 |
if self.edited_entity.has_eid(): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
277 |
self.edited_entity.complete() |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
278 |
for rschema, role in self.editable_attributes(): |
1277
2eeef019e186
don't guess field if explicitly defined, rename init_rtags_category
sylvain.thenault@logilab.fr
parents:
1276
diff
changeset
|
279 |
try: |
2eeef019e186
don't guess field if explicitly defined, rename init_rtags_category
sylvain.thenault@logilab.fr
parents:
1276
diff
changeset
|
280 |
self.field_by_name(rschema.type, role) |
2eeef019e186
don't guess field if explicitly defined, rename init_rtags_category
sylvain.thenault@logilab.fr
parents:
1276
diff
changeset
|
281 |
continue # explicitly specified |
2eeef019e186
don't guess field if explicitly defined, rename init_rtags_category
sylvain.thenault@logilab.fr
parents:
1276
diff
changeset
|
282 |
except FieldNotFound: |
2eeef019e186
don't guess field if explicitly defined, rename init_rtags_category
sylvain.thenault@logilab.fr
parents:
1276
diff
changeset
|
283 |
pass # has to be guessed |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
284 |
fieldcls = self.rfields.etype_rtag(self.edited_entity.id, rschema, |
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
285 |
role) |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
286 |
if fieldcls: |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
287 |
field = fieldcls(name=rschema.type, role=role, eidparam=True) |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
288 |
self.fields.append(field) |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
289 |
continue |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
290 |
widget = self.rwidgets.etype_rtag(self.edited_entity.id, rschema, |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
291 |
role) |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1305
diff
changeset
|
292 |
if widget: |
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
293 |
field = guess_field(self.edited_entity.__class__, rschema, role, |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
294 |
eidparam=True, widget=widget) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
295 |
else: |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
296 |
field = guess_field(self.edited_entity.__class__, rschema, role, |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
297 |
eidparam=True) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
298 |
if field is not None: |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
299 |
self.fields.append(field) |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
300 |
self.maxrelitems = self.req.property_value('navigation.related-limit') |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
301 |
self.force_display = not not req.form.get('__force_display') |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
302 |
|
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
303 |
@property |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
304 |
def related_limit(self): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
305 |
if self.force_display: |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
306 |
return None |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
307 |
return self.maxrelitems + 1 |
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
308 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
309 |
def relations_by_category(self, categories=None, permission=None): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
310 |
"""return a list of (relation schema, target schemas, role) matching |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
311 |
given category(ies) and permission |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
312 |
""" |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
313 |
return self.erelations_by_category(self.edited_entity, categories, |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
314 |
permission) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
315 |
|
1291
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
316 |
def inlined_relations(self): |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
317 |
"""return a list of (relation schema, target schemas, role) matching |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
318 |
given category(ies) and permission |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
319 |
""" |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
320 |
# we'll need an initialized varmaker if there are some inlined relation |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
321 |
self.initialize_varmaker() |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
322 |
return self.erelations_by_category(self.edited_entity, True, 'add', self.rinlined) |
22b4d300d18d
inlineview is no more a 'category', needs specific handling
sylvain.thenault@logilab.fr
parents:
1286
diff
changeset
|
323 |
|
1147 | 324 |
def srelations_by_category(self, categories=None, permission=None): |
325 |
"""filter out result of relations_by_category(categories, permission) by |
|
326 |
removing final relations |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
327 |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
328 |
return a sorted list of (relation's label, relation'schema, role) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
329 |
""" |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
330 |
return self.esrelations_by_category(self.edited_entity, categories, |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
331 |
permission) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
332 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
333 |
def action(self): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
334 |
"""return the form's action attribute. Default to validateform if not |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
335 |
explicitly overriden. |
1147 | 336 |
""" |
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
337 |
try: |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
338 |
return self._action |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
339 |
except AttributeError: |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
340 |
return self.build_url('validateform') |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
341 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
342 |
def set_action(self, value): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
343 |
"""override default action""" |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
344 |
self._action = value |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
345 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
346 |
action = property(action, set_action) |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
347 |
|
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
348 |
def editable_attributes(self): |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
349 |
"""return a list of (relation schema, role) to edit for the entity""" |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
350 |
return [(rschema, x) for rschema, _, x in self.relations_by_category( |
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
351 |
self.attrcategories, 'add') if rschema != 'eid'] |
1147 | 352 |
|
353 |
def relations_table(self): |
|
354 |
"""yiels 3-tuples (rtype, target, related_list) |
|
355 |
where <related_list> itself a list of : |
|
356 |
- node_id (will be the entity element's DOM id) |
|
357 |
- appropriate javascript's togglePendingDelete() function call |
|
358 |
- status 'pendingdelete' or '' |
|
359 |
- oneline view of related entity |
|
360 |
""" |
|
361 |
entity = self.edited_entity |
|
362 |
pending_deletes = self.req.get_pending_deletes(entity.eid) |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
363 |
for label, rschema, role in self.srelations_by_category('generic', 'add'): |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
364 |
relatedrset = entity.related(rschema, role, limit=self.related_limit) |
1147 | 365 |
if rschema.has_perm(self.req, 'delete'): |
366 |
toggable_rel_link_func = toggable_relation_link |
|
367 |
else: |
|
368 |
toggable_rel_link_func = lambda x, y, z: u'' |
|
369 |
related = [] |
|
370 |
for row in xrange(relatedrset.rowcount): |
|
371 |
nodeid = relation_id(entity.eid, rschema, role, |
|
372 |
relatedrset[row][0]) |
|
373 |
if nodeid in pending_deletes: |
|
374 |
status = u'pendingDelete' |
|
375 |
label = '+' |
|
376 |
else: |
|
377 |
status = u'' |
|
378 |
label = 'x' |
|
379 |
dellink = toggable_rel_link_func(entity.eid, nodeid, label) |
|
380 |
eview = self.view('oneline', relatedrset, row=row) |
|
381 |
related.append((nodeid, dellink, status, eview)) |
|
382 |
yield (rschema, role, related) |
|
383 |
||
384 |
def restore_pending_inserts(self, cell=False): |
|
385 |
"""used to restore edition page as it was before clicking on |
|
386 |
'search for <some entity type>' |
|
387 |
""" |
|
388 |
eid = self.edited_entity.eid |
|
389 |
cell = cell and "div_insert_" or "tr" |
|
390 |
pending_inserts = set(self.req.get_pending_inserts(eid)) |
|
391 |
for pendingid in pending_inserts: |
|
392 |
eidfrom, rtype, eidto = pendingid.split(':') |
|
393 |
if typed_eid(eidfrom) == eid: # subject |
|
394 |
label = display_name(self.req, rtype, 'subject') |
|
395 |
reid = eidto |
|
396 |
else: |
|
397 |
label = display_name(self.req, rtype, 'object') |
|
398 |
reid = eidfrom |
|
399 |
jscall = "javascript: cancelPendingInsert('%s', '%s', null, %s);" \ |
|
400 |
% (pendingid, cell, eid) |
|
401 |
rset = self.req.eid_rset(reid) |
|
402 |
eview = self.view('text', rset, row=0) |
|
403 |
# XXX find a clean way to handle baskets |
|
404 |
if rset.description[0][0] == 'Basket': |
|
405 |
eview = '%s (%s)' % (eview, display_name(self.req, 'Basket')) |
|
406 |
yield rtype, pendingid, jscall, label, reid, eview |
|
407 |
||
408 |
# should_* method extracted to allow overriding |
|
409 |
||
410 |
def should_inline_relation_form(self, rschema, targettype, role): |
|
411 |
"""return true if the given relation with entity has role and a |
|
412 |
targettype target should be inlined |
|
413 |
""" |
|
1179
70825477c6ce
fix *relations_by_categories + rtags api/key mess
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
414 |
return self.rinlined.etype_rtag(self.edited_entity.id, rschema, role, targettype) |
1147 | 415 |
|
416 |
def should_display_inline_creation_form(self, rschema, existant, card): |
|
417 |
"""return true if a creation form should be inlined |
|
418 |
||
419 |
by default true if there is no related entity and we need at least one |
|
420 |
""" |
|
421 |
return not existant and card in '1+' |
|
422 |
||
423 |
def should_display_add_new_relation_link(self, rschema, existant, card): |
|
424 |
"""return true if we should add a link to add a new creation form |
|
425 |
(through ajax call) |
|
426 |
||
427 |
by default true if there is no related entity or if the relation has |
|
428 |
multiple cardinality |
|
429 |
""" |
|
430 |
return not existant or card in '+*' |
|
431 |
||
432 |
||
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
433 |
class EditionFormView(FormViewMixIn, EntityView): |
1147 | 434 |
"""display primary entity edition form""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
435 |
id = 'edition' |
1147 | 436 |
# add yes() so it takes precedence over deprecated views in baseforms, |
437 |
# though not baseforms based customized view |
|
438 |
__select__ = one_line_rset() & non_final_entity() & yes() |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
439 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
440 |
title = _('edition') |
1147 | 441 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
442 |
def cell_call(self, row, col, **kwargs): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
443 |
entity = self.complete_entity(row, col) |
1147 | 444 |
self.render_form(entity) |
445 |
||
446 |
def render_form(self, entity): |
|
447 |
"""fetch and render the form""" |
|
448 |
self.form_title(entity) |
|
1286
cb68c8af3858
use entity's rset and row/col info
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
449 |
form = self.vreg.select_object('forms', 'edition', self.req, entity.rset, |
cb68c8af3858
use entity's rset and row/col info
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
450 |
row=entity.row, col=entity.col, entity=entity, |
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
451 |
submitmsg=self.submited_message()) |
1147 | 452 |
self.init_form(form, entity) |
453 |
self.w(form.form_render(renderer=EntityFormRenderer(), formvid=u'edition')) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
454 |
|
1147 | 455 |
def init_form(self, form, entity): |
456 |
"""customize your form before rendering here""" |
|
457 |
form.form_add_hidden(u'__maineid', entity.eid) |
|
458 |
||
459 |
def form_title(self, entity): |
|
460 |
"""the form view title""" |
|
461 |
ptitle = self.req._(self.title) |
|
462 |
self.w(u'<div class="formTitle"><span>%s %s</span></div>' % ( |
|
463 |
entity.dc_type(), ptitle and '(%s)' % ptitle)) |
|
464 |
||
465 |
def submited_message(self): |
|
466 |
"""return the message that will be displayed on successful edition""" |
|
467 |
return self.req._('entity edited') |
|
468 |
||
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
469 |
|
1147 | 470 |
class CreationFormView(EditionFormView): |
471 |
"""display primary entity creation form""" |
|
472 |
id = 'creation' |
|
473 |
__select__ = specified_etype_implements('Any') & yes() |
|
474 |
||
475 |
title = _('creation') |
|
476 |
||
477 |
def call(self, **kwargs): |
|
478 |
"""creation view for an entity""" |
|
479 |
etype = kwargs.pop('etype', self.req.form.get('etype')) |
|
480 |
try: |
|
481 |
entity = self.vreg.etype_class(etype)(self.req, None, None) |
|
482 |
except: |
|
483 |
self.w(self.req._('no such entity type %s') % etype) |
|
484 |
else: |
|
485 |
self.initialize_varmaker() |
|
486 |
entity.eid = self.varmaker.next() |
|
487 |
self.render_form(entity) |
|
488 |
||
489 |
def form_title(self, entity): |
|
490 |
"""the form view title""" |
|
491 |
if '__linkto' in self.req.form: |
|
492 |
if isinstance(self.req.form['__linkto'], list): |
|
493 |
# XXX which one should be considered (case: add a ticket to a |
|
494 |
# version in jpl) |
|
495 |
rtype, linkto_eid, role = self.req.form['__linkto'][0].split(':') |
|
496 |
else: |
|
497 |
rtype, linkto_eid, role = self.req.form['__linkto'].split(':') |
|
498 |
linkto_rset = self.req.eid_rset(linkto_eid) |
|
499 |
linkto_type = linkto_rset.description[0][0] |
|
500 |
if role == 'subject': |
|
501 |
title = self.req.__('creating %s (%s %s %s %%(linkto)s)' % ( |
|
502 |
entity.e_schema, entity.e_schema, rtype, linkto_type)) |
|
503 |
else: |
|
504 |
title = self.req.__('creating %s (%s %%(linkto)s %s %s)' % ( |
|
505 |
entity.e_schema, linkto_type, rtype, entity.e_schema)) |
|
506 |
msg = title % {'linkto' : self.view('incontext', linkto_rset)} |
|
507 |
self.w(u'<div class="formTitle notransform"><span>%s</span></div>' % msg) |
|
508 |
else: |
|
509 |
super(CreationFormView, self).form_title(entity) |
|
510 |
||
511 |
def url(self): |
|
512 |
"""return the url associated with this view""" |
|
513 |
return self.create_url(self.req.form.get('etype')) |
|
514 |
||
515 |
def submited_message(self): |
|
516 |
"""return the message that will be displayed on successful edition""" |
|
517 |
return self.req._('entity created') |
|
518 |
||
519 |
||
520 |
class CopyFormView(EditionFormView): |
|
521 |
"""display primary entity creation form initialized with values from another |
|
522 |
entity |
|
523 |
""" |
|
524 |
id = 'copy' |
|
525 |
def render_form(self, entity): |
|
526 |
"""fetch and render the form""" |
|
527 |
# make a copy of entity to avoid altering the entity in the |
|
528 |
# request's cache. |
|
529 |
self.newentity = copy(entity) |
|
530 |
self.copying = self.newentity.eid |
|
531 |
self.newentity.eid = None |
|
532 |
self.w(u'<script type="text/javascript">updateMessage("%s");</script>\n' |
|
533 |
% self.req._('Please note that this is only a shallow copy')) |
|
534 |
super(CopyFormView, self).render_form(entity) |
|
535 |
del self.newentity |
|
536 |
||
537 |
def init_form(self, form, entity): |
|
538 |
"""customize your form before rendering here""" |
|
539 |
super(CopyFormView, self).init_form(form, entity) |
|
540 |
if entity.eid == self.newentity.eid: |
|
541 |
form.form_add_hidden('__cloned_eid', self.copying, eidparam=True) |
|
542 |
||
543 |
def submited_message(self): |
|
544 |
"""return the message that will be displayed on successful edition""" |
|
545 |
return self.req._('entity copied') |
|
546 |
||
547 |
||
548 |
class TableEditForm(CompositeForm): |
|
549 |
id = 'muledit' |
|
550 |
onsubmit = "return validateForm('entityForm', null);" |
|
1304 | 551 |
form_buttons = [SubmitButton(_('validate modifications on selected items')), |
552 |
ResetButton(_('revert changes'))] |
|
1147 | 553 |
|
554 |
def __init__(self, *args, **kwargs): |
|
555 |
super(TableEditForm, self).__init__(*args, **kwargs) |
|
556 |
for row in xrange(len(self.rset)): |
|
557 |
form = self.vreg.select_object('forms', 'edition', self.req, self.rset, |
|
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
558 |
row=row, attrcategories=('primary',), |
1147 | 559 |
set_error_url=False) |
560 |
# XXX rely on the MultipleEntityFormRenderer to put the eid input |
|
561 |
form.remove_field(form.field_by_name('eid')) |
|
562 |
self.form_add_subform(form) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
563 |
|
1147 | 564 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
565 |
class TableEditFormView(FormViewMixIn, EntityView): |
1147 | 566 |
id = 'muledit' |
567 |
__select__ = EntityView.__select__ & yes() |
|
568 |
title = _('multiple edit') |
|
569 |
||
570 |
def call(self, **kwargs): |
|
571 |
"""a view to edit multiple entities of the same type the first column |
|
572 |
should be the eid |
|
573 |
""" |
|
574 |
#self.form_title(entity) |
|
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
575 |
form = self.vreg.select_object('forms', self.id, self.req, self.rset) |
1147 | 576 |
self.w(form.form_render(renderer=EntityCompositeFormRenderer())) |
577 |
||
578 |
||
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
579 |
class InlineEntityEditionFormView(FormViewMixIn, EntityView): |
1147 | 580 |
id = 'inline-edition' |
581 |
__select__ = non_final_entity() & match_kwargs('peid', 'rtype') |
|
582 |
removejs = "removeInlinedEntity('%s', '%s', '%s')" |
|
583 |
||
584 |
def call(self, **kwargs): |
|
585 |
"""redefine default call() method to avoid automatic |
|
586 |
insertions of <div class="section"> between each row of |
|
587 |
the resultset |
|
588 |
""" |
|
589 |
rset = self.rset |
|
590 |
for i in xrange(len(rset)): |
|
591 |
self.wview(self.id, rset, row=i, **kwargs) |
|
592 |
||
593 |
def cell_call(self, row, col, peid, rtype, role='subject', **kwargs): |
|
594 |
""" |
|
595 |
:param peid: the parent entity's eid hosting the inline form |
|
596 |
:param rtype: the relation bridging `etype` and `peid` |
|
597 |
:param role: the role played by the `peid` in the relation |
|
598 |
""" |
|
599 |
entity = self.entity(row, col) |
|
600 |
divonclick = "restoreInlinedEntity('%s', '%s', '%s')" % (peid, rtype, |
|
601 |
entity.eid) |
|
602 |
self.render_form(entity, peid, rtype, role, divonclick=divonclick) |
|
603 |
||
604 |
def render_form(self, entity, peid, rtype, role, **kwargs): |
|
605 |
"""fetch and render the form""" |
|
606 |
rschema = self.schema.rschema(rtype) |
|
607 |
divid = '%s-%s-%s' % (peid, rtype, entity.eid) |
|
608 |
title = rschema.display_name(self.req, role) |
|
1297 | 609 |
form = self.vreg.select_object('forms', 'edition', self.req, None, |
1147 | 610 |
entity=entity) |
611 |
removejs = self.removejs % (peid, rtype,entity.eid) |
|
612 |
if self.keep_entity(entity, peid, rtype): |
|
613 |
if entity.has_eid(): |
|
614 |
rval = entity.eid |
|
615 |
else: |
|
616 |
rval = INTERNAL_FIELD_VALUE |
|
617 |
form.form_add_hidden('edit%s-%s:%s' % (role[0], rtype, peid), rval) |
|
618 |
form.form_add_hidden(name='%s:%s' % (rtype, peid), value=entity.eid, |
|
619 |
id='rel-%s-%s-%s' % (peid, rtype, entity.eid)) |
|
620 |
self.w(form.form_render(renderer=EntityInlinedFormRenderer(), divid=divid, |
|
621 |
title=title, removejs=removejs,**kwargs)) |
|
622 |
||
623 |
def keep_entity(self, entity, peid, rtype): |
|
624 |
if not entity.has_eid(): |
|
625 |
return True |
|
626 |
# are we regenerating form because of a validation error ? |
|
627 |
erroneous_post = self.req.data.get('formvalues') |
|
628 |
if erroneous_post: |
|
629 |
cdvalues = self.req.list_form_param('%s:%s' % (rtype, peid), |
|
630 |
erroneous_post) |
|
631 |
if unicode(entity.eid) not in cdvalues: |
|
632 |
return False |
|
633 |
return True |
|
634 |
||
635 |
||
636 |
class InlineEntityCreationFormView(InlineEntityEditionFormView): |
|
637 |
id = 'inline-creation' |
|
638 |
__select__ = (match_kwargs('peid', 'rtype') |
|
639 |
& specified_etype_implements('Any')) |
|
640 |
||
641 |
def call(self, etype, peid, rtype, role='subject', **kwargs): |
|
642 |
""" |
|
643 |
:param etype: the entity type being created in the inline form |
|
644 |
:param peid: the parent entity's eid hosting the inline form |
|
645 |
:param rtype: the relation bridging `etype` and `peid` |
|
646 |
:param role: the role played by the `peid` in the relation |
|
647 |
""" |
|
648 |
try: |
|
649 |
entity = self.vreg.etype_class(etype)(self.req, None, None) |
|
650 |
except: |
|
651 |
self.w(self.req._('no such entity type %s') % etype) |
|
652 |
return |
|
653 |
self.initialize_varmaker() |
|
654 |
entity.eid = self.varmaker.next() |
|
655 |
self.render_form(entity, peid, rtype, role) |