/* * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Contributors: * <a href="mailto:glefevre@nuxeo.com">Gildas</a> */ package org.nuxeo.ecm.collections.core.automation; import java.util.HashMap; import java.util.Map; import org.nuxeo.ecm.automation.AutomationService; import org.nuxeo.ecm.automation.OperationChain; import org.nuxeo.ecm.automation.OperationContext; import org.nuxeo.ecm.automation.OperationException; import org.nuxeo.ecm.automation.OperationParameters; import org.nuxeo.ecm.automation.core.Constants; import org.nuxeo.ecm.automation.core.annotations.Context; import org.nuxeo.ecm.automation.core.annotations.Operation; import org.nuxeo.ecm.automation.core.annotations.OperationMethod; import org.nuxeo.ecm.automation.core.operations.services.DocumentPageProviderOperation; import org.nuxeo.ecm.automation.jaxrs.io.documents.PaginableDocumentModelListImpl; import org.nuxeo.ecm.collections.api.CollectionConstants; import org.nuxeo.ecm.core.api.DocumentModel; /** * Class for the operation to get the list of documents from a Collection. * * @since 5.9.4 */ @Operation(id = GetDocumentsFromCollectionOperation.ID, category = Constants.CAT_DOCUMENT, label = "Get documents from collection", description = "Get the list " + "of documents visible by the currentUser in a collection. This is returning a list of documents.") public class GetDocumentsFromCollectionOperation { public static final String ID = "Collection.GetDocumentsFromCollection"; @Context protected OperationContext ctx; @Context protected AutomationService service; @OperationMethod public PaginableDocumentModelListImpl run(DocumentModel collection) throws OperationException { OperationChain chain = new OperationChain("operation"); Map<String, Object> vars = new HashMap<>(); vars.put("searchTerm", collection.getId()); vars.put("providerName", CollectionConstants.COLLECTION_CONTENT_PAGE_PROVIDER); OperationParameters oparams = new OperationParameters(DocumentPageProviderOperation.ID, vars); chain.add(oparams); return (PaginableDocumentModelListImpl) service.run(ctx, chain); } }