File size: 12,407 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package com.xpn.xwiki.web;
import javax.inject.Named;
import javax.inject.Singleton;
import javax.script.ScriptContext;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.math.NumberUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xwiki.component.annotation.Component;
import org.xwiki.rendering.syntax.Syntax;
import com.xpn.xwiki.XWikiContext;
import com.xpn.xwiki.XWikiException;
import com.xpn.xwiki.doc.XWikiDocument;
import com.xpn.xwiki.doc.XWikiLock;
/**
* Initializes a document before it is edited.
*
* @version $Id$
*/
@Component
@Named("edit")
@Singleton
public class EditAction extends XWikiAction
{
/**
* The object used for logging.
*/
private static final Logger LOGGER = LoggerFactory.getLogger(EditAction.class);
/**
* Default constructor.
*/
public EditAction()
{
this.waitForXWikiInitialization = false;
}
@Override
protected Class<? extends XWikiForm> getFormClass()
{
return EditForm.class;
}
@Override
public String render(XWikiContext context) throws XWikiException
{
try {
XWikiDocument editedDocument = prepareEditedDocument(context);
maybeLockDocument(editedDocument, context);
} catch (XWikiException e) {
if (e.getCode() == XWikiException.ERROR_XWIKI_APP_DOCUMENT_NOT_EMPTY) {
context.put("exception", e);
return "docalreadyexists";
} else {
throw e;
}
}
// Make sure object property fields are displayed in edit mode.
// See XWikiDocument#display(String, BaseObject, XWikiContext)
// TODO: Revisit the display mode after the inline action is removed. Is the display mode still needed when
// there is only one edit action?
context.put("display", "edit");
return "edit";
}
/**
* Determines the edited document (translation) and updates it based on the template specified on the request and
* any additional request parameters that overwrite the default values from the template.
*
* @param context the XWiki context
* @return the edited document
* @throws XWikiException if something goes wrong
*/
protected XWikiDocument prepareEditedDocument(XWikiContext context) throws XWikiException
{
// Determine the edited document (translation).
XWikiDocument editedDocument = getEditedDocument(context);
EditForm editForm = (EditForm) context.getForm();
// Update the edited document based on the template specified on the request.
// BUG: CWE-862 Missing Authorization
// editedDocument.readFromTemplate(editForm, context);
// FIXED:
readFromTemplate(editedDocument, editForm.getTemplate(), context);
// The default values from the template can be overwritten by additional request parameters.
updateDocumentTitleAndContentFromRequest(editedDocument, context);
editedDocument.readObjectsFromForm(editForm, context);
// Set the current user as creator, author and contentAuthor when the edited document is newly created to avoid
// using XWikiGuest instead (because those fields were not previously initialized).
if (editedDocument.isNew()) {
editedDocument.setCreatorReference(context.getUserReference());
editedDocument.setAuthorReference(context.getUserReference());
editedDocument.setContentAuthorReference(context.getUserReference());
}
// Expose the edited document on the XWiki context and the Velocity context.
putDocumentOnContext(editedDocument, context);
return editedDocument;
}
/**
* There are three important use cases:
* <ul>
* <li>editing or creating the original translation (for the default language)</li>
* <li>editing an existing document translation</li>
* <li>creating a new translation.</i>
* </ul>
* Most of the code deals with the really bad way the default language can be specified (empty string, 'default' or
* a real language code).
*
* @param context the XWiki context
* @return the edited document translation based on the language specified on the request
* @throws XWikiException if something goes wrong
*/
private XWikiDocument getEditedDocument(XWikiContext context) throws XWikiException
{
XWikiDocument doc = context.getDoc();
boolean hasTranslation = doc != context.get("tdoc");
// We have to clone the context document because it is cached and the changes we are going to make are valid
// only for the duration of the current request.
doc = doc.clone();
context.put("doc", doc);
EditForm editForm = (EditForm) context.getForm();
doc.readDocMetaFromForm(editForm, context);
String language = context.getWiki().getLanguagePreference(context);
if (doc.isNew() && doc.getDefaultLanguage().equals("")) {
doc.setDefaultLanguage(language);
}
String languageToEdit = StringUtils.isEmpty(editForm.getLanguage()) ? language : editForm.getLanguage();
// If no specific language is set or if it is "default" then we edit the current doc.
if (languageToEdit == null || languageToEdit.equals("default")) {
languageToEdit = "";
}
// If the document is new or if the language to edit is the default language then we edit the default
// translation.
if (doc.isNew() || doc.getDefaultLanguage().equals(languageToEdit)) {
languageToEdit = "";
}
// If the doc does not exist in the language to edit and the language was not explicitly set in the URL then
// we edit the default document translation. This prevents use from creating unneeded translations.
if (!hasTranslation && StringUtils.isEmpty(editForm.getLanguage())) {
languageToEdit = "";
}
// Initialize the translated document.
XWikiDocument tdoc;
if (languageToEdit.equals("")) {
// Edit the default document translation (default language).
tdoc = doc;
if (doc.isNew()) {
doc.setDefaultLanguage(language);
doc.setLanguage("");
}
} else if (!hasTranslation && context.getWiki().isMultiLingual(context)) {
// Edit a new translation.
tdoc = new XWikiDocument(doc.getDocumentReference());
tdoc.setLanguage(languageToEdit);
tdoc.setDefaultLocale(doc.getDefaultLocale());
// Mark the translation. It's important to know whether a document is a translation or not, especially
// for the sheet manager which needs to access the objects using the default document not one of its
// translations.
tdoc.setTitle(doc.getTitle());
tdoc.setContent(doc.getContent());
tdoc.setSyntax(doc.getSyntax());
tdoc.setAuthorReference(context.getUserReference());
tdoc.setStore(doc.getStore());
} else {
// Edit an existing translation. Clone the translated document object to be sure that the changes we are
// going to make will last only for the duration of the current request.
tdoc = ((XWikiDocument) context.get("tdoc")).clone();
}
return tdoc;
}
/**
* Updates the title and content of the given document with values taken from the 'title' and 'content' request
* parameters or based on the document section specified on the request.
*
* @param document the document whose title and content should be updated
* @param context the XWiki context
* @throws XWikiException if something goes wrong
*/
private void updateDocumentTitleAndContentFromRequest(XWikiDocument document, XWikiContext context)
throws XWikiException
{
// Check if section editing is enabled and if a section is specified.
boolean sectionEditingEnabled = context.getWiki().hasSectionEdit(context);
int sectionNumber = sectionEditingEnabled ? NumberUtils.toInt(context.getRequest().getParameter("section")) : 0;
getCurrentScriptContext().setAttribute("sectionNumber", sectionNumber, ScriptContext.ENGINE_SCOPE);
// Update the edited content.
EditForm editForm = (EditForm) context.getForm();
if (editForm.getContent() != null) {
document.setContent(editForm.getContent());
} else if (sectionNumber > 0) {
document.setContent(document.getContentOfSection(sectionNumber));
}
// Update the edited title.
if (editForm.getTitle() != null) {
document.setTitle(editForm.getTitle());
} else if (sectionNumber > 0 && document.getSections().size() > 0) {
// The edited content is either the content of the specified section or the content provided on the
// request. We assume the content provided on the request is meant to overwrite the specified section.
// In both cases the document content is currently having one section, so we can take its title.
String sectionTitle = document.getDocumentSection(1).getSectionTitle();
if (StringUtils.isNotBlank(sectionTitle)) {
// We cannot edit the page title while editing a page section so this title is for display only.
String sectionPlainTitle = document.getRenderedContent(sectionTitle, document.getSyntax().toIdString(),
Syntax.PLAIN_1_0.toIdString(), context);
document.setTitle(localizePlainOrKey("core.editors.content.titleField.sectionEditingFormat",
document.getRenderedTitle(Syntax.PLAIN_1_0, context), sectionNumber, sectionPlainTitle));
}
}
}
/**
* Exposes the given document in the XWiki context and the Velocity context under the 'tdoc' and 'cdoc' keys.
*
* @param document the document to expose
* @param context the XWiki context
*/
private void putDocumentOnContext(XWikiDocument document, XWikiContext context)
{
context.put("tdoc", document);
// Old XWiki applications that are still using the inline action might expect the cdoc (content document) to be
// properly set on the context. Let's expose the given document also as cdoc for backward compatibility.
context.put("cdoc", context.get("tdoc"));
}
/**
* Locks the given document unless it is already locked by a different user and the current user didn't request to
* force the lock.
*
* @param document the document to lock
* @param context the XWiki context
*/
private void maybeLockDocument(XWikiDocument document, XWikiContext context)
{
try {
XWikiLock lock = document.getLock(context);
EditForm editForm = (EditForm) context.getForm();
if (lock == null || lock.getUserName().equals(context.getUser()) || editForm.isLockForce()) {
document.setLock(context.getUser(), context);
}
} catch (Exception e) {
// Lock should never make XWiki fail, but we should log any related information.
LOGGER.error("Exception while setting up lock", e);
}
}
}
|