mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	104506: Merged 5.0.N (5.0.2) to HEAD-BUG-FIX (5.1/Cloud)
      104357: Merged V4.2-BUG-FIX (4.2.5) to 5.0.N (5.0.2)
         104292: Merged DEV to V4.2-BUG-FIX (4.2.5)
            104235: MNT-13951 : Please use LinkedHashMap in EnumParameterConstraint.java to take control on selectone.ftl's dropdown list options order
               - Changed collection type from HashMap to LinkedHashMap.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@104637 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			202 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			202 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2009-2012 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.action.constraint;
 | |
| 
 | |
| import java.util.ArrayList;
 | |
| import java.util.Collections;
 | |
| import java.util.LinkedHashMap;
 | |
| import java.util.List;
 | |
| import java.util.Map;
 | |
| 
 | |
| import org.alfresco.error.AlfrescoRuntimeException;
 | |
| import org.alfresco.model.ContentModel;
 | |
| import org.alfresco.repo.model.Repository;
 | |
| import org.alfresco.service.cmr.dictionary.DictionaryService;
 | |
| 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.search.SearchService;
 | |
| import org.alfresco.service.namespace.NamespaceService;
 | |
| import org.alfresco.service.namespace.QName;
 | |
| import org.alfresco.service.namespace.RegexQNamePattern;
 | |
| 
 | |
| /**
 | |
|  * Folder contents parameter constraint
 | |
|  * 
 | |
|  * @author Roy Wetherall
 | |
|  */
 | |
| public class FolderContentsParameterConstraint extends BaseParameterConstraint
 | |
| {
 | |
|     private NodeService nodeService;
 | |
|     
 | |
|     private SearchService searchService;
 | |
|     
 | |
|     private DictionaryService dictionaryService;
 | |
|     
 | |
|     private NamespaceService namespaceService;
 | |
|     
 | |
|     private Repository repository;
 | |
|     
 | |
|     private String searchPath;
 | |
|     
 | |
|     private List<String> nodeInclusionFilter = Collections.emptyList();
 | |
|     
 | |
|     public void setNodeService(NodeService nodeService)
 | |
|     {
 | |
|         this.nodeService = nodeService;
 | |
|     }
 | |
|     
 | |
|     public void setSearchService(SearchService searchService)
 | |
|     {
 | |
|         this.searchService = searchService;
 | |
|     }
 | |
|     
 | |
|     public void setSearchPath(String searchPath)
 | |
|     {
 | |
|         this.searchPath = searchPath;
 | |
|     }
 | |
|     
 | |
|     public void setDictionaryService(DictionaryService dictionaryService)
 | |
|     {
 | |
|         this.dictionaryService = dictionaryService;
 | |
|     }
 | |
|     
 | |
|     public void setNamespaceService(NamespaceService namespaceService)
 | |
|     {
 | |
|         this.namespaceService = namespaceService;
 | |
|     }
 | |
|     
 | |
|     public void setRepository(Repository repository)
 | |
|     {
 | |
|         this.repository = repository;
 | |
|     }
 | |
|     
 | |
|     /**
 | |
|      * This optional property defines a list of file extensions which should be included in the result set from
 | |
|      * this class. By implication, all other file extensions will be excluded. (The dot should not be specified
 | |
|      * i.e. "txt" not ".txt").
 | |
|      * If present, the cm:name of each candidate node will be checked against the values in this list and
 | |
|      * only those nodes whose cm:name ends with one of these file extensions will be included.
 | |
|      * <p/>
 | |
|      * If the property is not set then no inclusion filter is specified and all file extensions will
 | |
|      * be included.
 | |
|      * 
 | |
|      * @param nodeInclusionFilter A list of file extensions
 | |
|      * @since 3.5
 | |
|      */
 | |
|     public void setNodeInclusionFilter(List<String> nodeInclusionFilter)
 | |
|     {
 | |
|         // We'll convert the extensions from spring to dot+extension
 | |
|         this.nodeInclusionFilter = new ArrayList<String>(nodeInclusionFilter.size());
 | |
|         for (String extension : nodeInclusionFilter)
 | |
|         {
 | |
|             StringBuilder dotExt = new StringBuilder().append(".").append(extension);
 | |
|             this.nodeInclusionFilter.add(dotExt.toString());
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     /**
 | |
|      * @see org.alfresco.service.cmr.action.ParameterConstraint#getAllowableValues()
 | |
|      */
 | |
|     protected Map<String, String> getAllowableValuesImpl()
 | |
|     {
 | |
|         List<NodeRef> nodeRefs = searchService.selectNodes(repository.getRootHome(), 
 | |
|                     this.searchPath, null, this.namespaceService, false);
 | |
|         
 | |
|         NodeRef rootFolder = null;
 | |
|         if (nodeRefs.size() == 0)
 | |
|         {
 | |
|             throw new AlfrescoRuntimeException("The path '" + searchPath + "' did not return any results.");
 | |
|         }
 | |
|         else
 | |
|         {
 | |
|             rootFolder = nodeRefs.get(0);
 | |
|         }
 | |
|         
 | |
|         Map<String, String> result = new LinkedHashMap<String, String>(23);
 | |
|         buildMap(result, rootFolder);        
 | |
|         return result;
 | |
|     }        
 | |
|     
 | |
|     private void buildMap(Map<String, String> result, NodeRef folderNodeRef)
 | |
|     {
 | |
|         List<ChildAssociationRef> assocs = nodeService.getChildAssocs(folderNodeRef, ContentModel.ASSOC_CONTAINS, RegexQNamePattern.MATCH_ALL);
 | |
|         for (ChildAssociationRef assoc : assocs)
 | |
|         {
 | |
|             NodeRef nodeRef = assoc.getChildRef();
 | |
|             QName className = nodeService.getType(nodeRef);
 | |
|             if (dictionaryService.isSubClass(className, ContentModel.TYPE_CONTENT) == true)
 | |
|             {
 | |
|                 if(isCmNameAcceptable(nodeRef))
 | |
|                 {
 | |
|                     String title = (String)nodeService.getProperty(nodeRef, ContentModel.PROP_TITLE);
 | |
|                     if (title != null && title.length() > 0)
 | |
|                     {
 | |
|                         result.put(nodeRef.toString(), title);
 | |
|                     }
 | |
|                     else
 | |
|                     {
 | |
|                         result.put(nodeRef.toString(), (String)nodeService.getProperty(nodeRef, ContentModel.PROP_NAME));
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|             else if (dictionaryService.isSubClass(className, ContentModel.TYPE_FOLDER) == true)
 | |
|             {
 | |
|                 buildMap(result, nodeRef);
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Folder contents as returned by this class can be filtered based on the cm:name of the
 | |
|      * contained content nodes. If no file extensions are included, then all content NodeRefs
 | |
|      * will be included in the result set.
 | |
|      * If however, there are any file extensions specified, then the cm:name must match one of
 | |
|      * those file extensions to be included in the result set.
 | |
|      * 
 | |
|      * @param nodeRef the node whose cm:name is to be checked.
 | |
|      * @return <code>true</code> if cm:name is acceptable, else <code>false</code>.
 | |
|      */
 | |
|     private boolean isCmNameAcceptable(NodeRef nodeRef)
 | |
|     {
 | |
|         // Implementation node: this is very similar to a MIME type check. However, it is
 | |
|         // more forgiving in that content with the wrong MIME type will be correctly included.
 | |
|         // e.g. it is fairly common for .js files to be saved with a MIME type of text/plain.
 | |
|         boolean result = true;
 | |
|         
 | |
|         if (!nodeInclusionFilter.isEmpty())
 | |
|         {
 | |
|             result = false;
 | |
|             String cmName = (String) nodeService.getProperty(nodeRef, ContentModel.PROP_NAME);
 | |
|             
 | |
|             for (String extension : nodeInclusionFilter)
 | |
|             {
 | |
|                 if (cmName.endsWith(extension))
 | |
|                 {
 | |
|                     result = true;
 | |
|                     break;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         return result;
 | |
|     }
 | |
| }
 |