mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
17363: Fix to DbNodeServiceImple to allow restored nodes. 17384: Minor comments 17451: Fix ETHREEOH-2751 / ETWOONE-340 - specialising a node through an action doesn't set default values from model 17459: ETHREEOH-2391 - Invite pending task now has lots of properties 17465: Repo side fix for ETHREEOH-3010: Inbound and outbound Mltext multiple property are not converted correctly 17478: Fix ETHREEOH-3340 - WCM - Revert to snapshot failure (fix AVM getListing -> AVNSync compare -> WCM revertSnapshot) 17483: (record only) Merged V3.1 to V3.2 (record-only) 17482: (record-only) due to earlier back-merge 17493: Fix for ETHREEOH-3342: index.recovery.mode example is incorrect 17494: Fix for ETHREEOH-3027: missingFullTextReindexTrigger (from index-recovery-context.xml) job does not work. 17510: Fix for ETHREEOH-1147: Indexing large indices can lead to Java Heap space. 17511: Fix for ETHREEOH-1271: It is possible to add one category more than one time to the same content or space 17513: ETHREEOH_3366: Altered DictionaryDAOImpl so that passing a null QName into getType and getAspect does not result in an NPE 17531: ETHREEOH-1186: Corrected rssfeed.get.js so a user can configure a RSS Feed dashlet that has been placed on their own dashboard 17550: ETHREEOH-2317: Rule not fired when document has no content 17556: Fixed ETHREEOH-1229: Can't delete space that contains "translation without content" 17558: Fix for ETHREEOH-3356: Forms fail to persist if property or association name has an _ (underscore) in it 17572: Changed caching of person NodeRefs so that duplicates are detected better 17573: Fixed UTF-8 for file with encoded chars 17576: LockAcquisitionException message specific to failed release of taken-over lock ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/V3.2:r17363,17384,17451,17459,17465,17478,17483,17493-17494,17510-17511,17513,17531,17550,17556,17558,17572-17573,17576 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18140 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
548 lines
17 KiB
Java
548 lines
17 KiB
Java
/*
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
package org.alfresco.web.bean.content;
|
|
|
|
import java.io.File;
|
|
import java.io.Serializable;
|
|
import java.nio.charset.Charset;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.faces.context.FacesContext;
|
|
import javax.faces.model.SelectItem;
|
|
|
|
import org.springframework.extensions.config.Config;
|
|
import org.springframework.extensions.config.ConfigElement;
|
|
import org.springframework.extensions.config.ConfigService;
|
|
import org.alfresco.model.ApplicationModel;
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.service.ServiceRegistry;
|
|
import org.alfresco.service.cmr.dictionary.TypeDefinition;
|
|
import org.alfresco.service.cmr.repository.ContentService;
|
|
import org.alfresco.service.cmr.repository.ContentWriter;
|
|
import org.alfresco.service.cmr.repository.MimetypeService;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.namespace.NamespaceService;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.web.app.Application;
|
|
import org.alfresco.web.bean.repository.Repository;
|
|
import org.alfresco.web.bean.wizard.BaseWizardBean;
|
|
import org.alfresco.web.data.IDataContainer;
|
|
import org.alfresco.web.data.QuickSort;
|
|
import org.alfresco.web.ui.common.Utils;
|
|
import org.alfresco.web.ui.repo.component.UICharsetSelector;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
/**
|
|
* Base class for the content related wizards and dialogs
|
|
*
|
|
* @author gavinc
|
|
*/
|
|
public abstract class BaseContentWizard extends BaseWizardBean
|
|
{
|
|
protected String fileName;
|
|
protected String author;
|
|
protected String title;
|
|
protected String description;
|
|
protected String mimeType;
|
|
protected String encoding;
|
|
protected String objectType;
|
|
protected boolean inlineEdit;
|
|
protected boolean otherPropertiesChoiceVisible = true;
|
|
protected boolean showOtherProperties = true;
|
|
|
|
// the NodeRef of the node created during finish
|
|
protected NodeRef createdNode;
|
|
protected List<SelectItem> objectTypes;
|
|
transient private ContentService contentService;
|
|
|
|
protected static Log logger = LogFactory.getLog(BaseContentWizard.class);
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Wizard implementation
|
|
|
|
@Override
|
|
public void init(Map<String, String> parameters)
|
|
{
|
|
super.init(parameters);
|
|
|
|
this.fileName = null;
|
|
this.author = null;
|
|
this.title = null;
|
|
this.description = null;
|
|
this.mimeType = null;
|
|
this.inlineEdit = false;
|
|
this.objectType = ContentModel.TYPE_CONTENT.toString();
|
|
|
|
initOtherProperties();
|
|
}
|
|
|
|
@Override
|
|
public boolean getFinishButtonDisabled()
|
|
{
|
|
return (this.fileName == null ||
|
|
this.fileName.length() == 0 ||
|
|
this.mimeType == null);
|
|
}
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Bean Getters and Setters
|
|
|
|
/**
|
|
* @return Returns the name of the file
|
|
*/
|
|
public String getFileName()
|
|
{
|
|
return this.fileName;
|
|
}
|
|
|
|
/**
|
|
* @param fileName The name of the file
|
|
*/
|
|
public void setFileName(String fileName)
|
|
{
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the author
|
|
*/
|
|
public String getAuthor()
|
|
{
|
|
return this.author;
|
|
}
|
|
|
|
/**
|
|
* @param author Sets the author
|
|
*/
|
|
public void setAuthor(String author)
|
|
{
|
|
this.author = author;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the mime type currenty selected
|
|
*/
|
|
public String getMimeType()
|
|
{
|
|
return this.mimeType;
|
|
}
|
|
|
|
/**
|
|
* @param mimeType Sets the currently selected mime type
|
|
*/
|
|
public void setMimeType(String mimeType)
|
|
{
|
|
this.mimeType = mimeType;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the encoding currently selected
|
|
*/
|
|
public String getEncoding()
|
|
{
|
|
if (encoding == null)
|
|
{
|
|
ConfigService configSvc = Application.getConfigService(FacesContext.getCurrentInstance());
|
|
Config config = configSvc.getConfig("Content Wizards");
|
|
if (config != null)
|
|
{
|
|
ConfigElement defaultEncCfg = config.getConfigElement("default-encoding");
|
|
if (defaultEncCfg != null)
|
|
{
|
|
String value = defaultEncCfg.getValue();
|
|
if (value != null)
|
|
{
|
|
encoding = value.trim();
|
|
}
|
|
}
|
|
}
|
|
if (encoding == null || encoding.length() == 0)
|
|
{
|
|
encoding = Charset.defaultCharset().name();
|
|
}
|
|
}
|
|
return encoding;
|
|
}
|
|
|
|
/**
|
|
* @param encoding the document's encoding
|
|
*/
|
|
public void setEncoding(String encoding)
|
|
{
|
|
this.encoding = encoding;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the object type currenty selected
|
|
*/
|
|
public String getObjectType()
|
|
{
|
|
return this.objectType;
|
|
}
|
|
|
|
/**
|
|
* @param objectType Sets the currently selected object type
|
|
*/
|
|
public void setObjectType(String objectType)
|
|
{
|
|
this.objectType = objectType;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the description
|
|
*/
|
|
public String getDescription()
|
|
{
|
|
return this.description;
|
|
}
|
|
|
|
/**
|
|
* @param description Sets the description
|
|
*/
|
|
public void setDescription(String description)
|
|
{
|
|
this.description = description;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the title
|
|
*/
|
|
public String getTitle()
|
|
{
|
|
return this.title;
|
|
}
|
|
|
|
/**
|
|
* @param title Sets the title
|
|
*/
|
|
public void setTitle(String title)
|
|
{
|
|
this.title = title;
|
|
}
|
|
|
|
/**
|
|
* @return Returns the inline edit flag.
|
|
*/
|
|
public boolean isInlineEdit()
|
|
{
|
|
return this.inlineEdit;
|
|
}
|
|
|
|
/**
|
|
* @param inlineEdit The inline edit flag to set.
|
|
*/
|
|
public void setInlineEdit(boolean inlineEdit)
|
|
{
|
|
this.inlineEdit = inlineEdit;
|
|
}
|
|
|
|
/**
|
|
* @return Determines whether the choice to modify all properties
|
|
* is shown
|
|
*/
|
|
public boolean getOtherPropertiesChoiceVisible()
|
|
{
|
|
return this.otherPropertiesChoiceVisible;
|
|
}
|
|
|
|
/**
|
|
* @return Determines whether the edit properties dialog should be
|
|
* shown when this one ends
|
|
*/
|
|
public boolean getShowOtherProperties()
|
|
{
|
|
return this.showOtherProperties;
|
|
}
|
|
|
|
/**
|
|
* @param showOthers Sets whether the edit properties dialog is shown
|
|
*/
|
|
public void setShowOtherProperties(boolean showOthers)
|
|
{
|
|
this.showOtherProperties = showOthers;
|
|
}
|
|
|
|
public List<SelectItem> getEncodings()
|
|
{
|
|
return UICharsetSelector.getCharsetEncodingList();
|
|
}
|
|
|
|
/**
|
|
* @return Returns a list of object types to allow the user to select from
|
|
*/
|
|
public List<SelectItem> getObjectTypes()
|
|
{
|
|
if ((this.objectTypes == null) || (Application.isDynamicConfig(FacesContext.getCurrentInstance())))
|
|
{
|
|
FacesContext context = FacesContext.getCurrentInstance();
|
|
|
|
// add the well known object type to start with
|
|
this.objectTypes = new ArrayList<SelectItem>(5);
|
|
this.objectTypes.add(new SelectItem(ContentModel.TYPE_CONTENT.toString(),
|
|
Application.getMessage(context, "content")));
|
|
|
|
// add any configured content sub-types to the list
|
|
ConfigService svc = Application.getConfigService(FacesContext.getCurrentInstance());
|
|
Config wizardCfg = svc.getConfig("Content Wizards");
|
|
if (wizardCfg != null)
|
|
{
|
|
ConfigElement typesCfg = wizardCfg.getConfigElement("content-types");
|
|
if (typesCfg != null)
|
|
{
|
|
for (ConfigElement child : typesCfg.getChildren())
|
|
{
|
|
QName idQName = Repository.resolveToQName(child.getAttribute("name"));
|
|
if (idQName != null)
|
|
{
|
|
TypeDefinition typeDef = this.getDictionaryService().getType(idQName);
|
|
|
|
if (typeDef != null)
|
|
{
|
|
if (this.getDictionaryService().isSubClass(typeDef.getName(), ContentModel.TYPE_CONTENT))
|
|
{
|
|
// try and get the display label from config
|
|
String label = Utils.getDisplayLabel(context, child);
|
|
|
|
// if there wasn't a client based label try and get it from the dictionary
|
|
if (label == null)
|
|
{
|
|
label = typeDef.getTitle();
|
|
}
|
|
|
|
// finally, just use the localname
|
|
if (label == null)
|
|
{
|
|
label = idQName.getLocalName();
|
|
}
|
|
|
|
this.objectTypes.add(new SelectItem(idQName.toString(), label));
|
|
}
|
|
else
|
|
{
|
|
logger.warn("Failed to add '" + child.getAttribute("name") +
|
|
"' to the list of content types as the type is not a subtype of cm:content");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
logger.warn("Failed to add '" + child.getAttribute("name") +
|
|
"' to the list of content types as the type is not recognised");
|
|
}
|
|
}
|
|
}
|
|
|
|
// make sure the list is sorted by the label
|
|
QuickSort sorter = new QuickSort(this.objectTypes, "label", true, IDataContainer.SORT_CASEINSENSITIVE);
|
|
sorter.sort();
|
|
}
|
|
else
|
|
{
|
|
logger.warn("Could not find 'content-types' configuration element");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
logger.warn("Could not find 'Content Wizards' configuration section");
|
|
}
|
|
|
|
}
|
|
|
|
return this.objectTypes;
|
|
}
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Service Injection
|
|
|
|
/**
|
|
* @param contentService The contentService to set.
|
|
*/
|
|
public void setContentService(ContentService contentService)
|
|
{
|
|
this.contentService = contentService;
|
|
}
|
|
|
|
protected ContentService getContentService()
|
|
{
|
|
if (contentService == null)
|
|
{
|
|
contentService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getContentService();
|
|
}
|
|
return contentService;
|
|
}
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Helper methods
|
|
|
|
/**
|
|
* Save the specified content using the currently set wizard attributes
|
|
*
|
|
* @param fileContent File content to save
|
|
* @param strContent String content to save
|
|
*/
|
|
protected void saveContent(File fileContent, String strContent) throws Exception
|
|
{
|
|
// get the node ref of the node that will contain the content
|
|
NodeRef containerNodeRef;
|
|
String nodeId = this.navigator.getCurrentNodeId();
|
|
if (nodeId == null)
|
|
{
|
|
containerNodeRef = this.getNodeService().getRootNode(Repository.getStoreRef());
|
|
}
|
|
else
|
|
{
|
|
containerNodeRef = new NodeRef(Repository.getStoreRef(), nodeId);
|
|
}
|
|
|
|
// apply the inline editable aspect (by adding the property at create time)
|
|
Map<QName, Serializable> editProps = new HashMap<QName, Serializable>(6);
|
|
if (this.inlineEdit == true)
|
|
{
|
|
editProps.put(ApplicationModel.PROP_EDITINLINE, this.inlineEdit);
|
|
if (logger.isDebugEnabled())
|
|
logger.debug("Added inlineeditable aspect with properties: " + editProps);
|
|
}
|
|
|
|
// set the name
|
|
editProps.put(ContentModel.PROP_NAME, this.fileName);
|
|
|
|
// set the author property
|
|
editProps.put(ContentModel.PROP_AUTHOR, this.author);
|
|
|
|
// apply the titled aspect - title and description
|
|
editProps.put(ContentModel.PROP_TITLE, this.title);
|
|
editProps.put(ContentModel.PROP_DESCRIPTION, this.description);
|
|
if (logger.isDebugEnabled())
|
|
logger.debug("Added titled aspect with properties: " + this.title + ", " + this.description);
|
|
|
|
// create the node
|
|
NodeRef fileNodeRef = this.getNodeService().createNode(
|
|
containerNodeRef,
|
|
ContentModel.ASSOC_CONTAINS,
|
|
QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, this.fileName),
|
|
Repository.resolveToQName(this.objectType),
|
|
editProps).getChildRef();
|
|
|
|
if (logger.isDebugEnabled())
|
|
logger.debug("Created file node for file: " + this.fileName);
|
|
|
|
// get a writer for the content and put the file
|
|
ContentWriter writer = getContentService().getWriter(fileNodeRef, ContentModel.PROP_CONTENT, true);
|
|
// set the mimetype and encoding
|
|
writer.setMimetype(this.mimeType);
|
|
writer.setEncoding(getEncoding());
|
|
if (fileContent != null)
|
|
{
|
|
writer.putContent(fileContent);
|
|
}
|
|
else
|
|
{
|
|
writer.putContent(strContent == null ? "" : strContent);
|
|
}
|
|
|
|
// remember the created node now
|
|
this.createdNode = fileNodeRef;
|
|
}
|
|
|
|
/**
|
|
* Returns the display label for the mime type currently chosen
|
|
*
|
|
* @param mimeType The mime type to get the display label of
|
|
* @return The human readable version of the content type
|
|
*/
|
|
protected String getSummaryMimeType(String mimeType)
|
|
{
|
|
ServiceRegistry registry = Repository.getServiceRegistry(FacesContext.getCurrentInstance());
|
|
MimetypeService mimetypeService = registry.getMimetypeService();
|
|
|
|
// get the mime type display name
|
|
Map<String, String> mimeTypes = mimetypeService.getDisplaysByMimetype();
|
|
return mimeTypes.get(mimeType);
|
|
}
|
|
|
|
/**
|
|
* Returns the display label for the currently selected object type
|
|
*
|
|
* @return The objevt type label
|
|
*/
|
|
protected String getSummaryObjectType()
|
|
{
|
|
String objType = null;
|
|
|
|
for (SelectItem item : this.getObjectTypes())
|
|
{
|
|
if (item.getValue().equals(this.objectType))
|
|
{
|
|
objType = item.getLabel();
|
|
break;
|
|
}
|
|
}
|
|
|
|
return objType;
|
|
}
|
|
|
|
/**
|
|
* Initialises the other properties flags from config
|
|
*/
|
|
protected void initOtherProperties()
|
|
{
|
|
// TODO - review implications of these default values for dynamic/MT client
|
|
ConfigService configSvc = Application.getConfigService(FacesContext.getCurrentInstance());
|
|
|
|
if (configSvc != null)
|
|
{
|
|
Config config = configSvc.getConfig("Content Wizards");
|
|
if (config != null)
|
|
{
|
|
ConfigElement otherPropsCfg = config.getConfigElement("other-properties");
|
|
if (otherPropsCfg != null)
|
|
{
|
|
// get the attributes
|
|
String userChoiceVisible = otherPropsCfg.getAttribute("user-choice-visible");
|
|
String userChoiceDefault = otherPropsCfg.getAttribute("user-choice-default");
|
|
|
|
// set the defaults
|
|
if (userChoiceVisible != null)
|
|
{
|
|
this.otherPropertiesChoiceVisible = Boolean.parseBoolean(userChoiceVisible);
|
|
}
|
|
|
|
if (userChoiceDefault != null)
|
|
{
|
|
this.showOtherProperties = Boolean.parseBoolean(userChoiceDefault);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|