Wiki source code of ClassEditSheet
Last modified by Bimit Administrator on 05.12.2023, 13:23
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{include reference="AppWithinMinutes.VelocityMacros" /}} | ||
2 | |||
3 | {{groovy}} | ||
4 | import com.xpn.xwiki.XWikiContext; | ||
5 | import com.xpn.xwiki.api.Context; | ||
6 | import com.xpn.xwiki.api.Object; | ||
7 | import com.xpn.xwiki.api.PropertyClass; | ||
8 | import com.xpn.xwiki.doc.XWikiDocument; | ||
9 | import com.xpn.xwiki.objects.BaseObject; | ||
10 | |||
11 | /** | ||
12 | * Used to preview class fields that have a custom display associated, before they are actually added/saved to the | ||
13 | * class. For instance, when the user drags a Date field from the palette to the field canvas the class editor needs to | ||
14 | * display that Date field as if the user would be editing an object with this Date field in "Inline form" edit mode. | ||
15 | * This means that if the Date field has a custom display, the custom display should be used (e.g. using a Date picker). | ||
16 | */ | ||
17 | class PropertyCustomDisplayer | ||
18 | { | ||
19 | private XWikiContext context; | ||
20 | |||
21 | public PropertyCustomDisplayer(Context context) | ||
22 | { | ||
23 | this.context = context.getContext(); | ||
24 | } | ||
25 | |||
26 | public String display(PropertyClass property, String prefix, com.xpn.xwiki.api.Object object) | ||
27 | { | ||
28 | HashMap<String, Object> backup = new HashMap<String, Object>(); | ||
29 | try { | ||
30 | XWikiDocument.backupContext(backup, this.context); | ||
31 | return this.displayInternal(property.getPropertyClass(), prefix, object.getXWikiObject()); | ||
32 | } finally { | ||
33 | XWikiDocument.restoreContext(backup, this.context); | ||
34 | } | ||
35 | } | ||
36 | |||
37 | private String displayInternal(com.xpn.xwiki.objects.classes.PropertyClass property, String prefix, BaseObject object) | ||
38 | { | ||
39 | StringBuffer result = new StringBuffer(); | ||
40 | property.displayCustom(result, property.getName(), prefix, "edit", object, this.context); | ||
41 | return result.toString(); | ||
42 | } | ||
43 | } | ||
44 | xcontext.put('propertyCustomDisplayer', new PropertyCustomDisplayer(xcontext)) | ||
45 | {{/groovy}} | ||
46 | |||
47 | {{velocity output="false"}} | ||
48 | #** | ||
49 | * Constants | ||
50 | *# | ||
51 | ## Magic date used to mark in AWM that the date field is not set for the current entry. See https://jira.xwiki.org/browse/XWIKI-10296 | ||
52 | #set($MAGIC_DATE = $datetool.toDate('yyyy-MM-dd', '9999-12-31')) | ||
53 | |||
54 | #** | ||
55 | * Displays the field palette. | ||
56 | *# | ||
57 | #macro (displayFieldPalette) | ||
58 | <div id="palette"> | ||
59 | <p><strong>$services.localization.render('platform.appwithinminutes.classEditorPaletteTitle')</strong></p> | ||
60 | <p class="xHint">$services.localization.render('platform.appwithinminutes.classEditorPaletteHint')</p> | ||
61 | ## List all form field types, grouped by category. | ||
62 | #set ($formFieldDocs = []) | ||
63 | #set ($formFieldClassName = 'AppWithinMinutes.FormFieldClass') | ||
64 | #set ($categoryListStatement = 'from doc.object(AppWithinMinutes.FormFieldCategoryClass) as category order by category.priority') | ||
65 | <ul> | ||
66 | #foreach ($category in $services.query.xwql($categoryListStatement).execute()) | ||
67 | #set ($categoryDoc = $xwiki.getDocument($category)) | ||
68 | <li> | ||
69 | <div class="category">$escapetool.xml($categoryDoc.plainTitle)</div> | ||
70 | #set ($formFieldsForCategoryStatement = "from doc.object($formFieldClassName) as field where field.category = :category order by field.priority") | ||
71 | #set ($formFieldsForCategoryQuery = $services.query.xwql($formFieldsForCategoryStatement).bindValue('category', $category)) | ||
72 | <ul> | ||
73 | #foreach ($formField in $formFieldsForCategoryQuery.execute()) | ||
74 | #set ($formFieldDoc = $xwiki.getDocument($formField)) | ||
75 | #set ($discard = $formFieldDocs.add($formFieldDoc)) | ||
76 | #set ($formFieldIcon = $formFieldDoc.getObject($formFieldClassName).getProperty('icon').value) | ||
77 | #set ($formFieldIconRendered = $services.icon.renderHTML($formFieldIcon)) | ||
78 | #if ("$!formFieldIconRendered" == "") | ||
79 | #if ($formFieldIcon.contains('/')) | ||
80 | #set ($formFieldIconURL = $xwiki.getSkinFile($formFieldIcon)) | ||
81 | #else | ||
82 | #set ($formFieldIconURL = $formFieldDoc.getAttachmentURL($formFieldIcon)) | ||
83 | #end | ||
84 | #set ($formFieldIconRendered = "<img src='$escapetool.xml($formFieldIconURL)' alt='$escapetool.xml($formFieldDoc.plainTitle)' class='icon' />") | ||
85 | #end | ||
86 | <li class="field"> | ||
87 | $formFieldIconRendered | ||
88 | $escapetool.xml($formFieldDoc.plainTitle) | ||
89 | ## FIXME: We should use the 'get' action instead to prevent the stats module from recording this AJAX request. | ||
90 | ## The 'edit' action is a temporary solution until the sheet module is modified to allow a sheet to be enforced through | ||
91 | ## the query string even if it doesn't match the action (e.g. the 'get' action). | ||
92 | ## The sheet parameter is required when editing a new class because the request will be made to a document that doesn't exist. | ||
93 | ## FIXME2: In the future don't force the text editor type and instead use the default editor. This means | ||
94 | ## that if the WYSIWYG editor is used, we'll need to convert the HTML into the target syntax so that the | ||
95 | ## Template in #updateAndSaveTemplate is saved with target syntax and not HTML. | ||
96 | ## See https://jira.xwiki.org/browse/XWIKI-13789 | ||
97 | #set ($fieldURL = $doc.getURL('edit', $escapetool.url({ | ||
98 | 'xpage': 'plain', | ||
99 | 'sheet': 'AppWithinMinutes.ClassEditSheet', | ||
100 | 'form_token': $services.csrf.getToken(), | ||
101 | 'template': 'AppWithinMinutes.ClassTemplate', | ||
102 | 'field': $formFieldDoc.fullName, | ||
103 | 'xeditmode': 'text' | ||
104 | }))) | ||
105 | <input type="hidden" value="$escapetool.xml($fieldURL)" class="data"/> | ||
106 | </li> | ||
107 | #end | ||
108 | </ul> | ||
109 | </li> | ||
110 | #end | ||
111 | </ul> | ||
112 | </div> | ||
113 | #end | ||
114 | |||
115 | #** | ||
116 | * Displays the field canvas. | ||
117 | *# | ||
118 | #macro (displayFieldCanvas) | ||
119 | #set ($propertyType2FormField = {}) | ||
120 | #foreach ($formFieldDoc in $formFieldDocs) | ||
121 | ## Use the type of the field template. | ||
122 | #set ($type = $formFieldDoc.getxWikiClass().properties.get(0).classType) | ||
123 | #set ($discard = $propertyType2FormField.put($type, $formFieldDoc)) | ||
124 | #end | ||
125 | <div id="canvas"> | ||
126 | <p class="hint"> | ||
127 | $services.localization.render('platform.appwithinminutes.classEditorCanvasHint') | ||
128 | </p> | ||
129 | <ul> | ||
130 | #set ($unknownFields = []) | ||
131 | #foreach ($field in $doc.getxWikiClass().properties) | ||
132 | #set ($formFieldDoc = $propertyType2FormField.get($field.classType)) | ||
133 | #if ($formFieldDoc) | ||
134 | <li>#displayField($field $formFieldDoc)</li> | ||
135 | #else | ||
136 | #set($discard = $unknownFields.add($field)) | ||
137 | #end | ||
138 | #end | ||
139 | </ul> | ||
140 | <div class="hidden"> | ||
141 | ## Output the field meta data even if the field is not supported to preserve it when the class is saved. | ||
142 | #foreach ($field in $unknownFields) | ||
143 | #displayFieldMetaData($field) | ||
144 | #end | ||
145 | </div> | ||
146 | </div> | ||
147 | #end | ||
148 | |||
149 | #** | ||
150 | * Display the options to create/update the class template, the class sheet and the class translation bundle. | ||
151 | *# | ||
152 | #macro (displayClassOptions) | ||
153 | #set ($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
154 | #set ($templateReference = $services.model.resolveDocument("${className}Template")) | ||
155 | #set ($translationsReference = $services.model.resolveDocument("${className}Translations")) | ||
156 | #set ($classSheets = $services.sheet.getClassSheets($doc)) | ||
157 | #set ($sheetReference = $null) | ||
158 | #if ($classSheets.isEmpty()) | ||
159 | #set ($sheetReference = $services.model.resolveDocument("${className}Sheet")) | ||
160 | #elseif ($classSheets.size() == 1) | ||
161 | #set ($sheetReference = $classSheets.get(0)) | ||
162 | #end | ||
163 | ## Hide the options if neither the sheet nor the template nor the translation bundle exists. They don't have to be | ||
164 | ## updated, they have to be created. | ||
165 | <dl id="options" #if (!$xwiki.exists($sheetReference) && !$xwiki.exists($templateReference) | ||
166 | && !$xwiki.exists($translationsReference))class="hidden"#end> | ||
167 | <dt> | ||
168 | <label for="updateClassTemplate"> | ||
169 | <input type="checkbox" id="updateClassTemplate" name="updateClassTemplate" checked="checked" /> | ||
170 | $services.localization.render('platform.appwithinminutes.classEditorUpdateTemplateLabel') | ||
171 | </label> | ||
172 | </dt> | ||
173 | <dd> | ||
174 | <span class="xHint"> | ||
175 | $services.localization.render('platform.appwithinminutes.classEditorUpdateTemplateHint', | ||
176 | ["#pageLink($templateReference)"]) | ||
177 | </span> | ||
178 | </dd> | ||
179 | <dt> | ||
180 | <label for="updateClassSheet"> | ||
181 | <input type="checkbox" id="updateClassSheet" name="updateClassSheet" | ||
182 | #if ($sheetReference)checked="checked" #{else}disabled="disabled" #end/> | ||
183 | $services.localization.render('platform.appwithinminutes.classEditorUpdateSheetLabel') | ||
184 | </label> | ||
185 | </dt> | ||
186 | <dd> | ||
187 | #if ($sheetReference) | ||
188 | <span class="xHint"> | ||
189 | $services.localization.render('platform.appwithinminutes.classEditorUpdateSheetHint', | ||
190 | ["#pageLink($sheetReference)"]) | ||
191 | </span> | ||
192 | #else | ||
193 | <span class="warningmessage"> | ||
194 | $services.localization.render('platform.appwithinminutes.classEditorMultipleSheetsWarning') | ||
195 | </span> | ||
196 | #end | ||
197 | </dd> | ||
198 | <dt> | ||
199 | <label for="updateClassTranslations"> | ||
200 | <input type="checkbox" id="updateClassTranslations" name="updateClassTranslations" checked="checked" /> | ||
201 | $services.localization.render('platform.appwithinminutes.classEditorUpdateTranslationsLabel') | ||
202 | </label> | ||
203 | </dt> | ||
204 | <dd> | ||
205 | <span class="xHint"> | ||
206 | $services.localization.render('platform.appwithinminutes.classEditorUpdateTranslationsHint', | ||
207 | ["#pageLink($translationsReference)"]) | ||
208 | </span> | ||
209 | </dd> | ||
210 | </dl> | ||
211 | #end | ||
212 | |||
213 | #macro (pageLink $reference) | ||
214 | #set ($class = 'wikilink') | ||
215 | #set ($action = 'view') | ||
216 | #set ($params = {}) | ||
217 | #if (!$xwiki.exists($reference)) | ||
218 | #set ($class = 'wikicreatelink') | ||
219 | #set ($action = 'create') | ||
220 | #set ($discard = $params.put('parent', $doc.fullName)) | ||
221 | #end | ||
222 | <span class="$class"><a href="$escapetool.xml($xwiki.getURL($reference, $action, $escapetool.url($params)))" | ||
223 | >$escapetool.xml($reference.name)</a></span>## | ||
224 | #end | ||
225 | |||
226 | #** | ||
227 | * Display a form field. | ||
228 | *# | ||
229 | #macro (displayField $field $formFieldDoc) | ||
230 | #if ($formFieldDoc.getObject('XWiki.StyleSheetExtension')) | ||
231 | #set ($discard = $xwiki.ssx.use($formFieldDoc.fullName)) | ||
232 | #end | ||
233 | #if ($formFieldDoc.getObject('XWiki.JavaScriptExtension')) | ||
234 | #set ($discard = $xwiki.jsx.use($formFieldDoc.fullName)) | ||
235 | #end | ||
236 | <div class="hidden"> | ||
237 | #displayFieldMetaData($field) | ||
238 | ## We need this information to avoid querying and loading all FormField documents twice. | ||
239 | ## NOTE: We use a different ID format to avoid collisions with the field meta properties. | ||
240 | <input type="hidden" id="template-$field.name" name="template-$field.name" | ||
241 | value="$escapetool.xml($formFieldDoc.fullName)" | ||
242 | data-propertyName="$escapetool.xml($formFieldDoc.getxWikiClass().propertyNames[0])" /> | ||
243 | </div> | ||
244 | #set ($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
245 | #set ($templateRef = $services.model.resolveDocument("${className}Template")) | ||
246 | #set ($templateDoc = $xwiki.getDocument($templateRef)) | ||
247 | ## Simulate the editing of the class instance from the template document. | ||
248 | ## Note that we can't simply call display on the template document because $field could be a new field that hasn't | ||
249 | ## been added to the class yet (so the object from the template doesn't have this field yet). | ||
250 | <dl class="field-viewer"> | ||
251 | #displayFieldProperty($field "${doc.fullName}_0_" $templateDoc.getObject($doc.fullName, true)) | ||
252 | </dl> | ||
253 | #set ($propertyNames = ['name', 'prettyName', 'number', 'required', 'hint']) | ||
254 | #set ($formFieldObj = $formFieldDoc.getObject('AppWithinMinutes.FormFieldClass')) | ||
255 | #set ($customPropertyNames = $formFieldObj.getProperty('properties').value.split('\s+')) | ||
256 | #set ($discard = $customPropertyNames.removeAll($propertyNames)) | ||
257 | #set ($discard = $propertyNames.addAll($customPropertyNames.subList(0, $customPropertyNames.size()))) | ||
258 | <dl class="field-config"> | ||
259 | #foreach ($propertyName in $propertyNames) | ||
260 | #set ($propertyDefinition = $field.xWikiClass.get($propertyName)) | ||
261 | #if ($propertyDefinition) | ||
262 | #displayFieldProperty($propertyDefinition "field-${field.name}_" $field) | ||
263 | #end | ||
264 | #end | ||
265 | </dl> | ||
266 | #end | ||
267 | |||
268 | #** | ||
269 | * Display the field meta data. This is needed to preserve the field when its type is not supported by the editor. | ||
270 | *# | ||
271 | #macro (displayFieldMetaData $field) | ||
272 | <input type="hidden" id="type-$field.name" name="type-$field.name" value="$field.classType" /> | ||
273 | #end | ||
274 | |||
275 | #** | ||
276 | * Displays a configuration property of a class field. This macro can also be used to display a property of an object. | ||
277 | *# | ||
278 | #macro (displayFieldProperty $property $prefix $field) | ||
279 | #set ($displayFormType = $property.getProperty('displayFormType')) | ||
280 | #if ($property.classType == 'Boolean' && (!$displayFormType || $displayFormType.value == 'checkbox')) | ||
281 | <dt> | ||
282 | <label for="$!{prefix}$property.name"> | ||
283 | #displayPropertyEditInput($property, $prefix, $field)$escapetool.xml($property.prettyName) | ||
284 | </label> | ||
285 | </dt> | ||
286 | <dd></dd> | ||
287 | #else | ||
288 | <dt><label for="${prefix}$property.name">$escapetool.xml($property.prettyName)</label></dt> | ||
289 | <dd>#displayPropertyEditInput($property, $prefix, $field)</dd> | ||
290 | #end | ||
291 | #end | ||
292 | |||
293 | #** | ||
294 | * Displays the input used to edit the specified property of the given object. The given object can be either an | ||
295 | * instance of an XWiki class or a class field. In the first case the property represents an object field and in the | ||
296 | * second case the property represents a field meta property. We currently don't use custom display for metaproperty, | ||
297 | * so in that case we fallback on displayEdit. | ||
298 | *# | ||
299 | #macro (displayPropertyEditInput $property $prefix $object) | ||
300 | #set ($wrappedProperty = $property.propertyClass) | ||
301 | #if ($wrappedProperty.isCustomDisplayed($xcontext.context)) | ||
302 | #set ($customDisplayer = $!xcontext.get('propertyCustomDisplayer').display($property, $prefix, $object)) | ||
303 | #if ((! $customDisplayer) && ("$!customDisplayer" == "")) | ||
304 | $doc.displayEdit($property, $prefix, $object) | ||
305 | #else | ||
306 | $customDisplayer | ||
307 | #end | ||
308 | #else | ||
309 | $doc.displayEdit($property, $prefix, $object) | ||
310 | #end | ||
311 | #end | ||
312 | |||
313 | #** | ||
314 | * Called when a new form field is added via AJAX. | ||
315 | *# | ||
316 | #macro (displayNewField) | ||
317 | ## Output the SkinExtension hooks to allow field displayers to pull JavaScript/CSS resources. | ||
318 | ## Output also the LinkExtension hook because $xwiki.linkx.use() is used to load CSS files from WebJars. | ||
319 | ## The class editor moves this resource includes in the HTML page head. | ||
320 | <!-- com.xpn.xwiki.plugin.skinx.LinkExtensionPlugin --> | ||
321 | #skinExtensionHooks | ||
322 | #set ($formFieldDoc = $xwiki.getDocument($request.field)) | ||
323 | #set ($formFieldDocClassFields = $formFieldDoc.getxWikiClass().getXWikiClass().properties) | ||
324 | #if ($formFieldDocClassFields.size() > 0) | ||
325 | ## Clone the field template. | ||
326 | #set ($field = $formFieldDocClassFields.get(0).clone()) | ||
327 | #if ("$!field.prettyName" == '') | ||
328 | #set ($discard = $field.setPrettyName($formFieldDoc.title)) | ||
329 | #end | ||
330 | #set ($xclass = $doc.getxWikiClass().getXWikiClass()) | ||
331 | #set ($discard = $xclass.addField($field.name, $field)) | ||
332 | #set ($discard = $field.setObject($xclass)) | ||
333 | #displayField($doc.getxWikiClass().get($field.name) $formFieldDoc) | ||
334 | #else | ||
335 | Unsupported form field. | ||
336 | #end | ||
337 | #end | ||
338 | |||
339 | #** | ||
340 | * Preview a class field (requires Programming Right). | ||
341 | *# | ||
342 | #macro (previewField) | ||
343 | ## Find the request parameter that specifies the field template. | ||
344 | #foreach ($paramName in $request.getParameterMap().keySet()) | ||
345 | #if ($paramName.startsWith('template-')) | ||
346 | #set ($fieldName = $paramName.substring(9)) | ||
347 | #set ($fieldTemplateDoc = $xwiki.getDocument($request.getParameter($paramName))) | ||
348 | #break | ||
349 | #end | ||
350 | #end | ||
351 | ## | ||
352 | ## Clone the field template. | ||
353 | #set ($field = $fieldTemplateDoc.getxWikiClass().getXWikiClass().properties.get(0).clone()) | ||
354 | ## | ||
355 | ## Update the field meta properties based on the submitted data. | ||
356 | #set ($valuesFromRequest = $xcontext.context.getForm().getObject("field-$fieldName")) | ||
357 | #set ($discard = $field.getxWikiClass().fromMap($valuesFromRequest, $field)) | ||
358 | ## | ||
359 | ## Don't rename the field (ignore the submitted name). | ||
360 | #set ($discard = $field.setName($fieldName)) | ||
361 | ## | ||
362 | ## We have to add the field to the class before setting its value. | ||
363 | ## (otherwise the field value from the request is ignored). | ||
364 | #set ($xclass = $doc.getxWikiClass().getXWikiClass()) | ||
365 | #set ($discard = $xclass.addField($fieldName, $field)) | ||
366 | #set ($discard = $field.setObject($xclass)) | ||
367 | ## | ||
368 | ## Create an object that has this field and set its value from request. | ||
369 | #set ($object = $fieldTemplateDoc.getObject($doc.fullName, true)) | ||
370 | ## | ||
371 | ## Filter empty values from the request, otherwise the update method could try to select an invalid value. | ||
372 | #set ($values = []) | ||
373 | #foreach ($value in $request.getParameterValues("${doc.fullName}_0_$fieldName")) | ||
374 | #if ($value != '') | ||
375 | #set ($discard = $values.add($value)) | ||
376 | #end | ||
377 | #end | ||
378 | #if ($values.size() > 0) | ||
379 | #set ($stringArray = $request.getParameterValues("template-$fieldName")) | ||
380 | #set ($discard = $xclass.fromMap({$fieldName: $values.toArray($stringArray)}, $object.getXWikiObject())) | ||
381 | #end | ||
382 | ## | ||
383 | ## Display the field. | ||
384 | #set ($field = $doc.getxWikiClass().get($fieldName)) | ||
385 | #displayPropertyEditInput($field, "${doc.fullName}_0_", $object) | ||
386 | #end | ||
387 | |||
388 | #** | ||
389 | * Display the edit class form. | ||
390 | *# | ||
391 | #macro (displayEditForm) | ||
392 | #set ($discard = $xwiki.jsx.use('AppWithinMinutes.ClassEditSheet')) | ||
393 | #set ($discard = $xwiki.ssx.use('AppWithinMinutes.ClassEditSheet')) | ||
394 | #set ($discard = $xwiki.ssx.use('AppWithinMinutes.ClassSheetGenerator')) | ||
395 | #if ("$!request.wizard" == 'true') | ||
396 | #appWizardHeader('structure') | ||
397 | #end | ||
398 | #displayFieldPalette() | ||
399 | #displayFieldCanvas() | ||
400 | #displayClassOptions() | ||
401 | #if("$!request.wizard" == 'true') | ||
402 | #appWizardFooter('structure') | ||
403 | #end | ||
404 | <div class="clearfloats"></div> | ||
405 | #end | ||
406 | |||
407 | #** | ||
408 | * Displays either the edit class form or a new form field. The later is used when adding a new form field via AJAX. | ||
409 | *# | ||
410 | #macro (doEdit) | ||
411 | #if ("$!request.field" != '') | ||
412 | #displayNewField() | ||
413 | #elseif ("$!request.preview" == 'true') | ||
414 | #previewField() | ||
415 | #else | ||
416 | ## Make sure that only the sheet content is rendered when the class is saved using AJAX. | ||
417 | <div class="hidden"> | ||
418 | <input type="hidden" name="xpage" value="plain" /> | ||
419 | #if ($request.wizard == 'true') | ||
420 | ## Preserve the wizard mode. | ||
421 | <input type="hidden" name="wizard" value="true" /> | ||
422 | #end | ||
423 | ## Compute the application title to be used as the wizard step title. | ||
424 | #getAppTitle | ||
425 | </div> | ||
426 | #displayEditForm() | ||
427 | #end | ||
428 | #end | ||
429 | |||
430 | #** | ||
431 | * Create the home page of the application code space, if it doesn't exist already. | ||
432 | *# | ||
433 | #macro (maybeCreateCodeSpace) | ||
434 | #set ($codeHomePageReference = $services.model.resolveDocument('', 'default', $doc.documentReference.parent)) | ||
435 | #if (!$xwiki.exists($codeHomePageReference)) | ||
436 | #set ($codeSpaceTemplate = $services.model.resolveDocument('AppWithinMinutes.CodeSpaceTemplate')) | ||
437 | #set ($copyAsJob = $services.refactoring.copyAs($codeSpaceTemplate, $codeHomePageReference)) | ||
438 | #try() | ||
439 | #set ($discard = $copyAsJob.join()) | ||
440 | #set ($copyAsJobStatus = $services.job.getJobStatus($copyAsJob.request.id)) | ||
441 | #set ($errorMessage = $copyAsJobStatus.logTail.getFirstLogEvent('ERROR').toString()) | ||
442 | #end | ||
443 | #end | ||
444 | #end | ||
445 | |||
446 | #** | ||
447 | * Updates and saves the class definition based on the submitted data. | ||
448 | *# | ||
449 | #macro(updateAndSaveClass) | ||
450 | #set($class = $doc.xWikiClass) | ||
451 | #set($xclass = $class.getXWikiClass().clone()) | ||
452 | #set($xdoc = $doc.document) | ||
453 | ## | ||
454 | ## Handle new fields and field type changes. | ||
455 | ## | ||
456 | #set($fieldNames = []) | ||
457 | #foreach($paramName in $request.getParameterMap().keySet()) | ||
458 | #if($paramName.startsWith('type-')) | ||
459 | #set($fieldName = $paramName.substring(5)) | ||
460 | #set($fieldType = $request.getParameter($paramName)) | ||
461 | #set($field = $class.get($fieldName)) | ||
462 | #if(!$field || $field.classType != $fieldType) | ||
463 | #if($field) | ||
464 | ## The field type has changed. Remove the field and add a new one with the proper type. | ||
465 | #set($discard = $xclass.removeField($fieldName)) | ||
466 | #end | ||
467 | ## Add a new class field with the specified type. | ||
468 | #set($fieldTemplateRef = $request.getParameter("template-$fieldName")) | ||
469 | #if("$!fieldTemplateRef" != '') | ||
470 | #set($fieldTemplateDoc = $xwiki.getDocument($fieldTemplateRef)) | ||
471 | #set($field = $fieldTemplateDoc.getxWikiClass().getXWikiClass().properties.get(0).clone()) | ||
472 | #set($discard = $field.setObject($xclass)) | ||
473 | #set($discard = $xclass.addField($fieldName, $field)) | ||
474 | #set($discard = $fieldNames.add($fieldName)) | ||
475 | #set($discard = $xdoc.setMetaDataDirty(true)) | ||
476 | #end | ||
477 | #else | ||
478 | #set($discard = $fieldNames.add($fieldName)) | ||
479 | #end | ||
480 | #end | ||
481 | #end | ||
482 | ## | ||
483 | ## Handle deleted fields. | ||
484 | ## | ||
485 | #foreach($field in $class.properties) | ||
486 | #if(!$fieldNames.contains($field.name)) | ||
487 | #set($discard = $xclass.removeField($field.name)) | ||
488 | #end | ||
489 | #end | ||
490 | ## | ||
491 | ## Handle field updates. | ||
492 | ## | ||
493 | #set($fieldsToRename = {}) | ||
494 | #foreach($fieldName in $xclass.propertyNames) | ||
495 | #set($field = $xclass.get($fieldName)) | ||
496 | #set($valuesFromRequest = $xcontext.context.getForm().getObject("field-$fieldName")) | ||
497 | #set($discard = $field.getxWikiClass().fromMap($valuesFromRequest, $field)) | ||
498 | #if($field.name.matches('^[a-zA-Z_][\w:\-\.]*$')) | ||
499 | #if($fieldName != $field.name) | ||
500 | ## The field name has changed. | ||
501 | #if($xclass.get($field.name)) | ||
502 | ## There is already a field with the same name. | ||
503 | #set($errorMessage = $services.localization.render('platform.appwithinminutes.classEditorDuplicateFieldNameError', [$field.name])) | ||
504 | #break | ||
505 | #else | ||
506 | #set($discard = $xclass.removeField($fieldName)) | ||
507 | #set($discard = $xclass.addField($field.name, $field)) | ||
508 | #set($originalField = $class.get($fieldName)) | ||
509 | #if($originalField) | ||
510 | ## This is not a new field. | ||
511 | #set($discard = $fieldsToRename.put($fieldName, $field.name)) | ||
512 | #set($discard = $xclass.addPropertyForRemoval($originalField.propertyClass)) | ||
513 | #end | ||
514 | #end | ||
515 | #end | ||
516 | #else | ||
517 | #set($errorMessage = $services.localization.render('propertynamenotcorrect')) | ||
518 | #break | ||
519 | #end | ||
520 | #end | ||
521 | ## | ||
522 | ## Save | ||
523 | ## | ||
524 | #if(!$errorMessage) | ||
525 | #set($discard = $xdoc.setXClass($xclass)) | ||
526 | #set($discard = $xdoc.renameProperties($doc.documentReference, $fieldsToRename)) | ||
527 | #set($discard = $xdoc.setHidden(true)) | ||
528 | #set($discard = $xdoc.setMetaDataDirty(true)) | ||
529 | #set($discard = $doc.save($services.localization.render('core.comment.updateClassProperty'), $minorEdit)) | ||
530 | #end | ||
531 | ## | ||
532 | ## Handle field renames. | ||
533 | ## | ||
534 | #if(!$errorMessage && !$fieldsToRename.isEmpty()) | ||
535 | ## We need to load all documents (except the class and template, which we handle below) that have objects of this class and rename their properties. | ||
536 | ## If we don`t skip the template, we can not control the behaviour of emptyIsToday for date fields, which we want to handle in #updateAndSaveTemplate only once. | ||
537 | ## | ||
538 | ## FIXME: even if it is not a good practice to have an object in the class document, it is still possible. We should handle field renames for the class document | ||
539 | ## as well. Note that there is a possibility that objects in the class' document are automatically updated. Needs checking. | ||
540 | ## | ||
541 | ## We use HQL because XWQL doesn't allow us to escape the special characters from the class name. | ||
542 | #set($instancesStatement = ', BaseObject as obj where doc.fullName = obj.name and obj.className = :className' | ||
543 | + ' and doc.fullName not in (:className, :templateName)') | ||
544 | #set($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
545 | #set($instancesQuery = $services.query.hql($instancesStatement).bindValue('className', $doc.fullName).bindValue( | ||
546 | 'templateName', "${className}Template")) | ||
547 | #foreach($instanceDocName in $instancesQuery.execute()) | ||
548 | #set($instanceDoc = $xwiki.getDocument($instanceDocName)) | ||
549 | #set($discard = $instanceDoc.document.renameProperties($doc.documentReference, $fieldsToRename)) | ||
550 | #set($discard = $instanceDoc.save($services.localization.render('core.comment.updateClassPropertyName'), true)) | ||
551 | #end | ||
552 | #end | ||
553 | #end | ||
554 | |||
555 | #** | ||
556 | * Handle Date fields that have the "Empty is today" option checked in the class edit form. | ||
557 | * See https://jira.xwiki.org/browse/XWIKI-10296 | ||
558 | **# | ||
559 | #macro(handleEmptyIsTodayDateFields $templateDoc) | ||
560 | #foreach($property in $doc.xWikiClass.properties) | ||
561 | ## We check directly on the request if the user provided an empty date. We can not check from the template | ||
562 | ## document's object that we've just parsed from the request using the updateObjectFromRequest method because it | ||
563 | ## already applies the emtpyIsToday mechanism and that would not be good for us. | ||
564 | #set($newValueRequestParameterName = "${doc.fullName}_0_${property.name}") | ||
565 | #set($newDateStringValue = "$!{request.getParameter($newValueRequestParameterName)}") | ||
566 | #if($property.classType == 'Date' && $property.getValue('emptyIsToday') == 1 && $newDateStringValue == '') | ||
567 | #set($discard = $templateDoc.set($property.name, $MAGIC_DATE)) | ||
568 | #end | ||
569 | #end | ||
570 | #end | ||
571 | |||
572 | #** | ||
573 | * Updates and saves the class template based on the submitted data. | ||
574 | *# | ||
575 | #macro(updateAndSaveTemplate) | ||
576 | #if(!$errorMessage && $request.updateClassTemplate) | ||
577 | #set($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
578 | #set($templateRef = $services.model.resolveDocument("${className}Template")) | ||
579 | #set($templateDoc = $xwiki.getDocument($templateRef)) | ||
580 | #set($discard = $templateDoc.setParent($doc.documentReference.name)) | ||
581 | #if ($request.templateTitle) | ||
582 | #set($discard = $templateDoc.setTitle($request.templateTitle)) | ||
583 | #end | ||
584 | #if ($request.templateContent) | ||
585 | #set($discard = $templateDoc.setContent($request.templateContent)) | ||
586 | #end | ||
587 | ## Rename the properties of the template's object, if applicable. | ||
588 | #set($discard = $templateDoc.document.renameProperties($doc.documentReference, $fieldsToRename)) | ||
589 | ## Fill the template's object with the default values from the class editor's form. | ||
590 | #set($discard = $templateDoc.updateObjectFromRequest($doc.fullName)) | ||
591 | ## | ||
592 | #handleEmptyIsTodayDateFields($templateDoc) | ||
593 | #set($discard = $templateDoc.setHidden(true)) | ||
594 | #set($discard = $templateDoc.save( | ||
595 | $services.localization.render('platform.appwithinminutes.classEditorTemplateSaveComment'), | ||
596 | $minorEdit)) | ||
597 | #end | ||
598 | #end | ||
599 | |||
600 | #** | ||
601 | * Updates and saves the class sheet based on the submitted data. | ||
602 | *# | ||
603 | #macro(updateAndSaveSheet) | ||
604 | #if(!$errorMessage && $request.updateClassSheet) | ||
605 | #set($classSheets = $services.sheet.getClassSheets($doc)) | ||
606 | #if($classSheets.isEmpty()) | ||
607 | #set($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
608 | #set($sheetReference = $services.model.resolveDocument("${className}Sheet")) | ||
609 | #set($discard = $services.sheet.bindClassSheet($doc, $sheetReference)) | ||
610 | #set($discard = $doc.save($services.localization.render('platform.appwithinminutes.classEditorBindSheetSaveComment'), | ||
611 | $minorEdit)) | ||
612 | #elseif($classSheets.size() == 1) | ||
613 | #set($sheetReference = $classSheets.get(0)) | ||
614 | #end | ||
615 | #if($sheetReference) | ||
616 | #set($sheetDoc = $xwiki.getDocument($sheetReference)) | ||
617 | #set($sheetGeneratorDoc = $xwiki.getDocument('AppWithinMinutes.ClassSheetGenerator')) | ||
618 | #set($discard = $sheetDoc.setParent($doc.documentReference.name)) | ||
619 | #set($discard = $sheetDoc.setContent($doc.getRenderedContent($sheetGeneratorDoc.content, | ||
620 | $sheetGeneratorDoc.syntax.toIdString(), 'plain/1.0'))) | ||
621 | ## We assume for now that the output produced by the sheet generator uses the same syntax as the code of the sheet | ||
622 | ## generator. We have to set the syntax because the default wiki syntax (used when creating new wiki pages) could | ||
623 | ## be different than the one used by the sheet generator. | ||
624 | #set($discard = $sheetDoc.setSyntax($sheetGeneratorDoc.syntax)) | ||
625 | #set($discard = $sheetDoc.setHidden(true)) | ||
626 | #set($discard = $sheetDoc.save($services.localization.render('platform.appwithinminutes.classEditorSheetSaveComment'), | ||
627 | $minorEdit)) | ||
628 | #end | ||
629 | #end | ||
630 | #end | ||
631 | |||
632 | #** | ||
633 | * Updates and saves the class translation bundle based on the submitted data. | ||
634 | *# | ||
635 | #macro(updateAndSaveTranslations) | ||
636 | #if(!$errorMessage && $request.updateClassTranslations) | ||
637 | #set($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
638 | #set($translationsRef = $services.model.resolveDocument("${className}Translations")) | ||
639 | #set($translationsDoc = $xwiki.getDocument($translationsRef)) | ||
640 | #set($translationsObj = $translationsDoc.getObject('XWiki.TranslationDocumentClass', true)) | ||
641 | #set ($scope = 'USER') | ||
642 | #if ($services.security.authorization.hasAccess('admin', $doc.documentReference.wikiReference)) | ||
643 | #set ($scope = 'WIKI') | ||
644 | #end | ||
645 | #set($discard = $translationsObj.set('scope', $scope)) | ||
646 | #set($discard = $translationsDoc.setParent($doc.documentReference.name)) | ||
647 | #set($translationsGeneratorDoc = $xwiki.getDocument('AppWithinMinutes.ClassTranslationsGenerator')) | ||
648 | #set($discard = $translationsDoc.setContent($doc.getRenderedContent($translationsGeneratorDoc.content, | ||
649 | $translationsGeneratorDoc.syntax.toIdString(), 'plain/1.0'))) | ||
650 | #set($discard = $translationsDoc.setSyntaxId('plain/1.0')) | ||
651 | #set($discard = $translationsDoc.setHidden(true)) | ||
652 | #set($discard = $translationsDoc.save( | ||
653 | $services.localization.render('platform.appwithinminutes.classEditorTranslationsSaveComment'), | ||
654 | $minorEdit)) | ||
655 | #end | ||
656 | #end | ||
657 | |||
658 | #** | ||
659 | * Updates and saves the class definition, the class sheet and the class template. | ||
660 | *# | ||
661 | #macro (doSave) | ||
662 | #set ($minorEdit = "$!request.minorEdit" != '') | ||
663 | #maybeCreateCodeSpace | ||
664 | #updateAndSaveClass | ||
665 | #updateAndSaveTemplate | ||
666 | #updateAndSaveSheet | ||
667 | #updateAndSaveTranslations | ||
668 | #if ($action == 'save') | ||
669 | #if ($errorMessage) | ||
670 | <div class="box errormessage">$errorMessage</div> | ||
671 | #elseif ("$!request.wizard" == 'true') | ||
672 | ## Redirect to next wizard step. | ||
673 | #set ($className = $stringtool.removeEnd($doc.fullName, 'Class')) | ||
674 | #set ($templateProviderReference = $services.model.resolveDocument("${className}TemplateProvider")) | ||
675 | #set ($queryString = { | ||
676 | 'wizard': true, | ||
677 | 'sheet': 'AppWithinMinutes.TemplateProviderEditSheet' | ||
678 | }) | ||
679 | #if (!$xwiki.exists($templateProviderReference)) | ||
680 | #set ($discard = $queryString.putAll({ | ||
681 | 'form_token': $services.csrf.getToken(), | ||
682 | 'template': 'XWiki.TemplateProviderTemplate', | ||
683 | 'parent': $doc.fullName | ||
684 | })) | ||
685 | #end | ||
686 | $response.sendRedirect($xwiki.getURL($templateProviderReference, 'edit', $escapetool.url($queryString))) | ||
687 | #else | ||
688 | ## Redirect to view mode. | ||
689 | $response.sendRedirect($doc.getURL()) | ||
690 | #end | ||
691 | #else | ||
692 | #if ($errorMessage) | ||
693 | $response.sendError(400, $errorMessage) | ||
694 | #else | ||
695 | $response.setStatus(204) | ||
696 | #end | ||
697 | #end | ||
698 | #end | ||
699 | {{/velocity}} | ||
700 | |||
701 | {{velocity}} | ||
702 | #if("$!request.wizard" == 'true') | ||
703 | {{include reference="AppWithinMinutes.WizardStep" /}} | ||
704 | #end | ||
705 | {{/velocity}} | ||
706 | |||
707 | {{velocity}} | ||
708 | {{html clean="false"}} | ||
709 | ## Determine the action button that triggered the request | ||
710 | #set ($action = 'edit') | ||
711 | #foreach ($paramName in $request.getParameterMap().keySet()) | ||
712 | #if ($paramName.startsWith('xaction_')) | ||
713 | #set ($action = $paramName.substring(8)) | ||
714 | #break | ||
715 | #end | ||
716 | #end | ||
717 | #if ($action == 'edit') | ||
718 | #doEdit() | ||
719 | #elseif ($action == 'save' || $action == 'saveandcontinue') | ||
720 | #if ($services.csrf.isTokenValid($request.form_token)) | ||
721 | #doSave() | ||
722 | #else | ||
723 | $response.sendRedirect($services.csrf.getResubmissionURL()) | ||
724 | #end | ||
725 | #end | ||
726 | {{/html}} | ||
727 | {{/velocity}} |