mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125781 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1) 125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127808 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
223 lines
6.9 KiB
Java
223 lines
6.9 KiB
Java
package org.alfresco.repo.jscript;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.query.PagingRequest;
|
|
import org.alfresco.service.ServiceRegistry;
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.StoreRef;
|
|
import org.alfresco.service.cmr.search.CategoryService;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.util.Pair;
|
|
import org.mozilla.javascript.Context;
|
|
import org.mozilla.javascript.Scriptable;
|
|
|
|
/**
|
|
* Support class for finding categories, finding root nodes for categories and creating root categories.
|
|
*
|
|
* @author Andy Hind
|
|
*/
|
|
public final class Classification extends BaseScopableProcessorExtension
|
|
{
|
|
private ServiceRegistry services;
|
|
|
|
private StoreRef storeRef;
|
|
|
|
/**
|
|
* Set the default store reference
|
|
*
|
|
* @param storeRef the default store reference
|
|
*/
|
|
public void setStoreUrl(String storeRef)
|
|
{
|
|
this.storeRef = new StoreRef(storeRef);
|
|
}
|
|
|
|
/**
|
|
* Set the service registry
|
|
*
|
|
* @param services the service registry
|
|
*/
|
|
public void setServiceRegistry(ServiceRegistry services)
|
|
{
|
|
this.services = services;
|
|
}
|
|
|
|
/**
|
|
* Find all the category nodes in a given classification.
|
|
*
|
|
* @param aspect String
|
|
* @return Scriptable
|
|
*/
|
|
public Scriptable getAllCategoryNodes(String aspect)
|
|
{
|
|
Object[] cats = buildCategoryNodes(services.getCategoryService().getCategories(
|
|
storeRef, createQName(aspect), CategoryService.Depth.ANY));
|
|
return Context.getCurrentContext().newArray(getScope(), cats);
|
|
}
|
|
|
|
/**
|
|
* Get all the aspects that define a classification.
|
|
*
|
|
* @return String[]
|
|
*/
|
|
public String[] getAllClassificationAspects()
|
|
{
|
|
Collection<QName> aspects = services.getCategoryService().getClassificationAspects();
|
|
String[] answer = new String[aspects.size()];
|
|
int i = 0;
|
|
for (QName qname : aspects)
|
|
{
|
|
answer[i++] = qname.toPrefixString(this.services.getNamespaceService());
|
|
}
|
|
return answer;
|
|
}
|
|
|
|
/**
|
|
* Create a root category in a classification.
|
|
*
|
|
* @param aspect String
|
|
* @param name String
|
|
*/
|
|
public CategoryNode createRootCategory(String aspect, String name)
|
|
{
|
|
NodeRef categoryNodeRef = services.getCategoryService().createRootCategory(storeRef, createQName(aspect), name);
|
|
CategoryNode categoryNode = new CategoryNode(categoryNodeRef, this.services, getScope());
|
|
|
|
return categoryNode;
|
|
}
|
|
|
|
/**
|
|
* Get the category node from the category node reference.
|
|
*
|
|
* @param categoryRef category node reference
|
|
* @return {@link CategoryNode} category node
|
|
*/
|
|
public CategoryNode getCategory(String categoryRef)
|
|
{
|
|
CategoryNode result = null;
|
|
NodeRef categoryNodeRef = new NodeRef(categoryRef);
|
|
if (services.getNodeService().exists(categoryNodeRef) == true &&
|
|
services.getDictionaryService().isSubClass(ContentModel.TYPE_CATEGORY, services.getNodeService().getType(categoryNodeRef)) == true)
|
|
{
|
|
result = new CategoryNode(categoryNodeRef, this.services, getScope());
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Get the root categories in a classification.
|
|
*
|
|
* @param aspect String
|
|
* @return Scriptable
|
|
*/
|
|
public Scriptable getRootCategories(String aspect)
|
|
{
|
|
Object[] cats = buildCategoryNodes(services.getCategoryService().getRootCategories(
|
|
storeRef, createQName(aspect)));
|
|
return Context.getCurrentContext().newArray(getScope(), cats);
|
|
}
|
|
|
|
/**
|
|
* Get ordered, filtered and paged root categories in a classification.
|
|
*
|
|
* @param aspect
|
|
* @param filter
|
|
* @param maxItems
|
|
* @param skipCount (offset)
|
|
* @return
|
|
*/
|
|
public Scriptable getRootCategories(String aspect, String filter, int maxItems, int skipCount)
|
|
{
|
|
PagingRequest pagingRequest = new PagingRequest(skipCount, maxItems);
|
|
List<ChildAssociationRef> rootCategories = services.getCategoryService().getRootCategories(storeRef, createQName(aspect), pagingRequest, true, filter).getPage();
|
|
Object[] cats = buildCategoryNodes(rootCategories);
|
|
return Context.getCurrentContext().newArray(getScope(), cats);
|
|
}
|
|
|
|
/**
|
|
* Get the category usage count.
|
|
*
|
|
* @param aspect String
|
|
* @param maxCount int
|
|
* @return Scriptable
|
|
*/
|
|
public Scriptable getCategoryUsage(String aspect, int maxCount)
|
|
{
|
|
List<Pair<NodeRef, Integer>> topCats = services.getCategoryService().getTopCategories(storeRef, createQName(aspect), maxCount);
|
|
Object[] tags = new Object[topCats.size()];
|
|
int i = 0;
|
|
for (Pair<NodeRef, Integer> topCat : topCats)
|
|
{
|
|
tags[i++] = new Tag(new CategoryNode(topCat.getFirst(), this.services, getScope()), topCat.getSecond());
|
|
}
|
|
|
|
return Context.getCurrentContext().newArray(getScope(), tags);
|
|
}
|
|
|
|
/**
|
|
* Build category nodes.
|
|
*
|
|
* @param cars list of associations to category nodes
|
|
* @return {@link Object}[] array of category nodes
|
|
*/
|
|
private Object[] buildCategoryNodes(Collection<ChildAssociationRef> cars)
|
|
{
|
|
Object[] categoryNodes = new Object[cars.size()];
|
|
int i = 0;
|
|
for (ChildAssociationRef car : cars)
|
|
{
|
|
categoryNodes[i++] = new CategoryNode(car.getChildRef(), this.services, getScope());
|
|
}
|
|
return categoryNodes;
|
|
}
|
|
|
|
/**
|
|
* Create QName from string
|
|
*
|
|
* @param s QName string value
|
|
* @return {@link QName} qualified name object
|
|
*/
|
|
private QName createQName(String s)
|
|
{
|
|
QName qname;
|
|
if (s.indexOf(QName.NAMESPACE_BEGIN) != -1)
|
|
{
|
|
qname = QName.createQName(s);
|
|
}
|
|
else
|
|
{
|
|
qname = QName.createQName(s, this.services.getNamespaceService());
|
|
}
|
|
return qname;
|
|
}
|
|
|
|
/**
|
|
* Tag class returned from getCategoryUsage().
|
|
*/
|
|
public final class Tag
|
|
{
|
|
private CategoryNode categoryNode;
|
|
private int frequency = 0;
|
|
|
|
public Tag(CategoryNode categoryNode, int frequency)
|
|
{
|
|
this.categoryNode = categoryNode;
|
|
this.frequency = frequency;
|
|
}
|
|
|
|
public CategoryNode getCategory()
|
|
{
|
|
return categoryNode;
|
|
}
|
|
|
|
public int getFrequency()
|
|
{
|
|
return frequency;
|
|
}
|
|
}
|
|
}
|