Merging DEV_TEMPORARY to HEAD (RenditionService)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19103 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Neil McErlean
2010-03-05 20:02:52 +00:00
parent 6e8b388b02
commit dda875d528
4 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<webscript>
<shortname>Thumbnail to Rendition Service optional patch.</shortname>
<description><![CDATA[This webscript applies a patch which brings pre-3.3 thumbnail content up to date
with the RenditionService in Alfresco 3.3. It searches for all nodes of type cm:thumbnail and
applies the appropriate rendition aspect (rn:hiddenRendition or rn:visibleRendition) if not already there.
If this patch is not applied, thumbnails should continue to work as before but searches
for nodes which are subclasses of rn:rendition will not return thumbnails created against
a 3.2 server.
]]></description>
<url>/renditions/patchthumbnailsasrenditions</url>
<format default="json">argument</format>
<authentication>admin</authentication>
<transaction>required</transaction>
<lifecycle>internal</lifecycle>
</webscript>

View File

@@ -0,0 +1,7 @@
<#escape x as jsonUtils.encodeJSONString(x)>
{
"data" : {
"thumbnailNodesPatched" : ${patchedNodeCount?string}
}
}
</#escape>

View File

@@ -435,6 +435,14 @@
<property name="authenticationService" ref="authenticationService"/>
</bean>
<!-- Patch webscript for RenditionService -->
<bean id="webscript.org.alfresco.repository.rendition.patchthumbnailsasrenditions.get"
class="org.alfresco.repo.web.scripts.rendition.patch.PatchThumbnailsAsRenditionsGet" parent="webscript">
<property name="nodeService" ref="NodeService" />
<property name="renditionService" ref="RenditionService" />
<property name="searchService" ref="SearchService" />
</bean>
<!-- -->
<!-- Activity Feed Web Scripts -->

View File

@@ -0,0 +1,142 @@
/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco 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 3 of the License, or
* (at your option) any later version.
*
* Alfresco 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 Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.web.scripts.rendition.patch;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.alfresco.model.ContentModel;
import org.alfresco.model.RenditionModel;
import org.alfresco.service.cmr.rendition.RenditionService;
import org.alfresco.service.cmr.repository.ChildAssociationRef;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.cmr.search.ResultSet;
import org.alfresco.service.cmr.search.SearchService;
import org.alfresco.service.namespace.QName;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.extensions.webscripts.Cache;
import org.springframework.extensions.webscripts.DeclarativeWebScript;
import org.springframework.extensions.webscripts.Status;
import org.springframework.extensions.webscripts.WebScriptRequest;
public class PatchThumbnailsAsRenditionsGet extends DeclarativeWebScript
{
/** Logger */
private static Log logger = LogFactory.getLog(PatchThumbnailsAsRenditionsGet.class);
private static final StoreRef SPACES_STORE = new StoreRef(StoreRef.PROTOCOL_WORKSPACE, "SpacesStore");
private static final String QUERY = "TYPE:\"" + ContentModel.TYPE_THUMBNAIL +
"\" AND NOT ASPECT:\"" + RenditionModel.ASPECT_VISIBLE_RENDITION +
"\" AND NOT ASPECT:\"" + RenditionModel.ASPECT_HIDDEN_RENDITION + "\"";
/** Spring-injected services */
private NodeService nodeService;
private RenditionService renditionService;
private SearchService searchService;
/**
* Sets the nodeService.
*
* @param nodeService
*/
public void setNodeService(NodeService nodeService)
{
this.nodeService = nodeService;
}
/**
* Sets the renditionService.
*
* @param renditionService
*/
public void setRenditionService(RenditionService renditionService)
{
this.renditionService = renditionService;
}
/**
* Sets the searchService.
*
* @param searchService
*/
public void setSearchService(SearchService searchService)
{
this.searchService = searchService;
}
@Override
public Map<String, Object> executeImpl(WebScriptRequest req, Status status, Cache cache)
{
if (logger.isInfoEnabled())
{
logger.debug("Patching legacy thumbnails by applying appropriate rendition aspect");
}
ResultSet types = searchService.query(SPACES_STORE, SearchService.LANGUAGE_LUCENE, QUERY);
final List<NodeRef> resultNodeRefs = types.getNodeRefs();
types.close();
long patchedNodeRefs = 0;
for (NodeRef nodeRef : resultNodeRefs)
{
if (nodeService.exists(nodeRef) == false ||
renditionService.isRendition(nodeRef))
{
continue;
}
// Now add one of the two aspects depending on parent location.
ChildAssociationRef sourceNode = renditionService.getSourceNode(nodeRef);
ChildAssociationRef primaryParent = nodeService.getPrimaryParent(nodeRef);
QName aspectToApply;
if (primaryParent.getParentRef().equals(sourceNode.getParentRef()))
{
aspectToApply = RenditionModel.ASPECT_HIDDEN_RENDITION;
}
else
{
aspectToApply = RenditionModel.ASPECT_VISIBLE_RENDITION;
}
if (logger.isDebugEnabled())
{
StringBuilder msg = new StringBuilder();
msg.append("Applying aspect ")
.append(aspectToApply)
.append(" to node ")
.append(nodeRef);
logger.debug(msg.toString());
}
nodeService.addAspect(nodeRef, aspectToApply, null);
patchedNodeRefs++;
}
Map<String, Object> model = new HashMap<String, Object>();
model.put("patchedNodeCount", new Long(patchedNodeRefs));
return model;
}
}