mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
127569 jkaabimofrad: Merged API-STRIKES-BACK (5.2.0) to HEAD (5.2) 126200 jvonka: Node Associations - follow-on to r126104 to provide initial impl for both peer & child assocs - experimental -> pending detailed review & discussion (and tests) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@127663 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
112 lines
4.3 KiB
Java
112 lines
4.3 KiB
Java
/*
|
|
* Copyright (C) 2005-2016 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.rest.api.nodes;
|
|
|
|
import org.alfresco.rest.api.model.AssocChild;
|
|
import org.alfresco.rest.api.model.Node;
|
|
import org.alfresco.rest.api.model.UserInfo;
|
|
import org.alfresco.rest.framework.WebApiDescription;
|
|
import org.alfresco.rest.framework.resource.RelationshipResource;
|
|
import org.alfresco.rest.framework.resource.actions.interfaces.RelationshipResourceAction;
|
|
import org.alfresco.rest.framework.resource.parameters.CollectionWithPagingInfo;
|
|
import org.alfresco.rest.framework.resource.parameters.Paging;
|
|
import org.alfresco.rest.framework.resource.parameters.Parameters;
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.service.namespace.QNamePattern;
|
|
import org.alfresco.service.namespace.RegexQNamePattern;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* Node Parents
|
|
*
|
|
* List node's parent(s) - primary & also secondary, if any - based on (parent ->) child associations
|
|
*
|
|
* @author janv
|
|
*/
|
|
@RelationshipResource(name = "parents", entityResource = NodesEntityResource.class, title = "Node Parents")
|
|
public class NodeParentsRelation extends AbstractNodeRelation implements RelationshipResourceAction.Read<Node>
|
|
{
|
|
/**
|
|
* List parents
|
|
*
|
|
* @param childNodeId String id of child node
|
|
*/
|
|
@Override
|
|
@WebApiDescription(title = "Return a paged list of parent nodes based on child assocs")
|
|
public CollectionWithPagingInfo<Node> readAll(String childNodeId, Parameters parameters)
|
|
{
|
|
NodeRef childNodeRef = nodes.validateOrLookupNode(childNodeId, null);
|
|
|
|
QNamePattern assocTypeQNameParam = getAssocTypeFromWhereElseAll(parameters);
|
|
|
|
List<ChildAssociationRef> assocRefs = null;
|
|
if (assocTypeQNameParam.equals(RegexQNamePattern.MATCH_ALL))
|
|
{
|
|
assocRefs = nodeService.getParentAssocs(childNodeRef);
|
|
}
|
|
else
|
|
{
|
|
assocRefs = nodeService.getParentAssocs(childNodeRef, assocTypeQNameParam, RegexQNamePattern.MATCH_ALL);
|
|
}
|
|
|
|
Map<QName, String> qnameMap = new HashMap<>(3);
|
|
|
|
Map<String, UserInfo> mapUserInfo = new HashMap<>(10);
|
|
|
|
List<String> includeParam = parameters.getInclude();
|
|
|
|
List<Node> collection = new ArrayList<>(assocRefs.size());
|
|
for (ChildAssociationRef assocRef : assocRefs)
|
|
{
|
|
// minimal info by default (unless "include"d otherwise)
|
|
Node node = nodes.getFolderOrDocument(assocRef.getParentRef(), null, null, includeParam, mapUserInfo);
|
|
|
|
QName assocTypeQName = assocRef.getTypeQName();
|
|
QName assocChildQName = assocRef.getQName();
|
|
|
|
String assocType = qnameMap.get(assocTypeQName);
|
|
if (assocType == null)
|
|
{
|
|
assocType = assocTypeQName.toPrefixString(namespaceService);
|
|
qnameMap.put(assocTypeQName, assocType);
|
|
}
|
|
|
|
String childQNameStr = qnameMap.get(assocChildQName);
|
|
if (childQNameStr == null)
|
|
{
|
|
childQNameStr = assocChildQName.toPrefixString(namespaceService);
|
|
qnameMap.put(assocChildQName, childQNameStr);
|
|
}
|
|
|
|
node.setAssociation(new AssocChild(assocType, assocRef.isPrimary(), childQNameStr));
|
|
|
|
collection.add(node);
|
|
}
|
|
|
|
Paging paging = parameters.getPaging();
|
|
return CollectionWithPagingInfo.asPaged(paging, collection, false, collection.size());
|
|
}
|
|
}
|