All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.cmis.CMISProducer Maven / Gradle / Ivy

There is a newer version: 3.20.9
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.camel.component.cmis;

import java.io.InputStream;
import java.lang.reflect.Method;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.camel.Exchange;
import org.apache.camel.Message;
import org.apache.camel.NoSuchHeaderException;
import org.apache.camel.component.cmis.exception.CamelCmisException;
import org.apache.camel.component.cmis.exception.CamelCmisObjectNotFoundException;
import org.apache.camel.component.cmis.exception.CamelCmisUnauthorizedException;
import org.apache.camel.support.DefaultProducer;
import org.apache.camel.support.ExchangeHelper;
import org.apache.camel.support.MessageHelper;
import org.apache.camel.support.ObjectHelper;
import org.apache.camel.util.ReflectionHelper;
import org.apache.chemistry.opencmis.client.api.CmisObject;
import org.apache.chemistry.opencmis.client.api.Document;
import org.apache.chemistry.opencmis.client.api.FileableCmisObject;
import org.apache.chemistry.opencmis.client.api.Folder;
import org.apache.chemistry.opencmis.client.api.ItemIterable;
import org.apache.chemistry.opencmis.client.api.ObjectId;
import org.apache.chemistry.opencmis.commons.PropertyIds;
import org.apache.chemistry.opencmis.commons.data.ContentStream;
import org.apache.chemistry.opencmis.commons.enums.Action;
import org.apache.chemistry.opencmis.commons.enums.UnfileObject;
import org.apache.chemistry.opencmis.commons.enums.VersioningState;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * The CMIS producer.
 */
public class CMISProducer extends DefaultProducer {

    private static final Logger LOG = LoggerFactory.getLogger(CMISProducer.class);

    private final CMISSessionFacadeFactory sessionFacadeFactory;
    private CMISSessionFacade sessionFacade;

    public CMISProducer(CMISEndpoint endpoint, CMISSessionFacadeFactory sessionFacadeFactory) {
        super(endpoint);
        this.sessionFacadeFactory = sessionFacadeFactory;
        this.sessionFacade = null;
    }

    @Override
    public CMISEndpoint getEndpoint() {
        return (CMISEndpoint) super.getEndpoint();
    }

    public void process(Exchange exchange) throws Exception {

        CamelCMISActions action = exchange.getIn().getHeader(CamelCMISConstants.CMIS_ACTION, CamelCMISActions.class);

        Class[] paramMethod = { Exchange.class };
        Method method = ReflectionHelper.findMethod(this.getClass(), action.getMethodName(), paramMethod);
        Object object = ObjectHelper.invokeMethod(method, this, exchange);

        exchange.getMessage().copyFrom(exchange.getIn());
        exchange.getMessage().setBody(object);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public CmisObject findObjectById(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);
        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        return getSessionFacade().getObjectById(objectId);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public CmisObject findObjectByPath(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, PropertyIds.PATH);
        Message message = exchange.getIn();

        String path = message.getHeader(PropertyIds.PATH, String.class);

        try {
            return getSessionFacade().getObjectByPath(path);
        } catch (Exception e) {
            throw new CamelCmisObjectNotFoundException("Can not find object by path :" + path, e);
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public ContentStream downloadDocument(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);
        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        CmisObject result = getSessionFacade().getObjectById(objectId);

        if (result instanceof Document) {
            return ((Document) result).getContentStream();
        } else {
            throw new CamelCmisException("Unable to get contentStream for document with id: " + objectId);
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public Folder getFolder(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);
        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        CmisObject result = getSessionFacade().getObjectById(objectId);
        if (result instanceof Folder) {
            return (Folder) result;
        } else {
            throw new CamelCmisObjectNotFoundException();
        }
    }

    private Map filterTypeProperties(Map properties) throws Exception {
        Map result = new HashMap<>(properties.size());

        String objectTypeName = CamelCMISConstants.CMIS_DOCUMENT;
        if (properties.containsKey(PropertyIds.OBJECT_TYPE_ID)) {
            objectTypeName = (String) properties.get(PropertyIds.OBJECT_TYPE_ID);
        }

        Set types = new HashSet<>();
        types.addAll(getSessionFacade().getPropertiesFor(objectTypeName));

        if (getSessionFacade().supportsSecondaries() && properties.containsKey(PropertyIds.SECONDARY_OBJECT_TYPE_IDS)) {
            @SuppressWarnings("unchecked")
            Collection secondaryTypes = (Collection) properties.get(PropertyIds.SECONDARY_OBJECT_TYPE_IDS);
            for (String secondaryType : secondaryTypes) {
                types.addAll(getSessionFacade().getPropertiesFor(secondaryType));
            }
        }

        for (Map.Entry entry : properties.entrySet()) {
            if (types.contains(entry.getKey())) {
                result.put(entry.getKey(), entry.getValue());
            }
        }
        return result;
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public CmisObject createNode(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, PropertyIds.NAME);

        Message message = exchange.getIn();
        String parentFolderId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        Folder parentFolder = (Folder) getSessionFacade().getObjectById(parentFolderId);
        String versioning = message.getHeader(CamelCMISConstants.VERSIONING_STATE, String.class);
        Map cmisProperties = filterTypeProperties(message.getHeaders());

        if (isDocument(exchange)) {
            String fileName = message.getHeader(PropertyIds.NAME, String.class);
            String mimeType = getMimeType(message);
            byte[] buf = getBodyData(message);
            ContentStream contentStream = getSessionFacade().createContentStream(fileName, buf, mimeType);
            return storeDocument(parentFolder, cmisProperties, contentStream, versioning);
        } else if (isFolder(message)) {
            return storeFolder(parentFolder, cmisProperties);
        } else { // other types
            return storeDocument(parentFolder, cmisProperties, null, null);
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public Folder createFolderByPath(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, PropertyIds.PATH);
        validateRequiredHeader(exchange, PropertyIds.NAME);

        Message message = exchange.getIn();
        Map cmisProperties = filterTypeProperties(message.getHeaders());
        String parentPath = message.getHeader(PropertyIds.PATH, String.class);

        CmisObject result = getSessionFacade().getObjectByPath(parentPath);

        if (result instanceof Folder) {
            return ((Folder) result).createFolder(cmisProperties);
        }

        throw new CamelCmisException("Can not create folder on path:" + parentPath);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public List deleteFolder(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        Folder folder = (Folder) getSessionFacade().getObjectById(objectId);
        return folder.deleteTree(true, UnfileObject.DELETE, true);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public void deleteDocument(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        Boolean allVersions = message.getHeader(CamelCMISConstants.ALL_VERSIONS, Boolean.class);

        Document document = (Document) getSessionFacade().getObjectById(objectId);

        document.delete(allVersions);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public CmisObject moveDocument(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_SOURCE_FOLDER_ID);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String destinationFolderId = message.getHeader(CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID, String.class);
        String sourceFolderId = message.getHeader(CamelCMISConstants.CMIS_SOURCE_FOLDER_ID, String.class);
        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        Folder sourceFolder = (Folder) getSessionFacade().getObjectById(sourceFolderId);
        Folder targetFolder = (Folder) getSessionFacade().getObjectById(destinationFolderId);

        Document document = (Document) getSessionFacade().getObjectById(objectId);

        if (document != null) {
            if (!document.getAllowableActions().getAllowableActions().contains(Action.CAN_MOVE_OBJECT)) {
                throw new CamelCmisUnauthorizedException(
                        "Current user does not have permission to move " + objectId + document.getName());
            }

            try {
                LOG.info("Moving document from {} to {}", sourceFolder.getName(), targetFolder.getName());
                return document.move(sourceFolder, targetFolder);
            } catch (Exception e) {
                throw new CamelCmisException(
                        "Cannot move document to folder " + targetFolder.getName() + " : " + e.getMessage(), e);
            }
        } else {
            throw new CamelCmisException("Document is null, cannot move!");
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public FileableCmisObject moveFolder(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String destinationFolderId = message.getHeader(CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID, String.class);
        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        Folder toBeMoved = (Folder) getSessionFacade().getObjectById(objectId);
        Folder targetFolder = (Folder) getSessionFacade().getObjectById(destinationFolderId);
        return toBeMoved.move(toBeMoved.getFolderParent(), targetFolder);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public Document copyDocument(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID);

        Message message = exchange.getIn();

        String destinationFolderId = message.getHeader(CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID, String.class);
        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        Folder destinationFolder = (Folder) getSessionFacade().getObjectById(destinationFolderId);

        Document document = (Document) getSessionFacade().getObjectById(objectId);

        VersioningState versioningState = VersioningState.NONE;

        if (getSessionFacade().isObjectTypeVersionable(message.getHeader(PropertyIds.OBJECT_TYPE_ID, String.class))) {
            if (org.apache.camel.util.ObjectHelper.isNotEmpty(message.getHeader(CamelCMISConstants.VERSIONING_STATE))) {
                versioningState = VersioningState.valueOf(message.getHeader(CamelCMISConstants.VERSIONING_STATE, String.class));
            } else {
                versioningState = VersioningState.MAJOR;
            }
        }

        String newDocumentName = message.getHeader(PropertyIds.NAME, String.class);
        if (org.apache.camel.util.ObjectHelper.isNotEmpty(newDocumentName)) {
            return document.copy(destinationFolder, Collections.singletonMap(PropertyIds.NAME, newDocumentName),
                    versioningState, null, null, null, getSessionFacade().createOperationContext());
        }

        return document.copy(destinationFolder, null,
                versioningState, null, null, null, getSessionFacade().createOperationContext());
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public Map copyFolder(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String destinationFolderId = message.getHeader(CamelCMISConstants.CMIS_DESTIONATION_FOLDER_ID, String.class);
        String toCopyFolderId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        Folder destinationFolder = (Folder) getSessionFacade().getObjectById(destinationFolderId);
        Folder toCopyFolder = (Folder) getSessionFacade().getObjectById(toCopyFolderId);

        Map result = new HashMap<>();
        return copyFolderRecursive(destinationFolder, toCopyFolder, result);
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public ItemIterable listFolder(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String sourceFolderId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        Folder sourceFolder = (Folder) getSessionFacade().getObjectById(sourceFolderId);

        return sourceFolder.getChildren();
    }

    private Map copyFolderRecursive(
            Folder destinationFolder, Folder toCopyFolder, Map result) {
        Map folderProperties = new HashMap<>();
        folderProperties.put(PropertyIds.NAME, toCopyFolder.getName());
        folderProperties.put(PropertyIds.OBJECT_TYPE_ID, toCopyFolder.getBaseTypeId().value());
        Folder newFolder = destinationFolder.createFolder(folderProperties);
        result.put(toCopyFolder.getId(), newFolder);
        copyChildren(newFolder, toCopyFolder, result);
        return result;
    }

    private void copyChildren(Folder destinationFolder, Folder toCopyFolder, Map result) {
        ItemIterable immediateChildren = toCopyFolder.getChildren();
        for (CmisObject child : immediateChildren) {
            if (child instanceof Document) {
                Document newDocument = ((Document) child).copy(destinationFolder);
                result.put(child.getId(), newDocument);
            } else if (child instanceof Folder) {
                copyFolderRecursive(destinationFolder, (Folder) child, result);
            }
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public CmisObject rename(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, PropertyIds.NAME);
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String newName = message.getHeader(PropertyIds.NAME, String.class);
        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        try {
            CmisObject object = getSessionFacade().getObjectById(objectId);
            CmisObject object1 = object.rename(newName);

            return object;
        } catch (Exception e) {
            throw new CamelCmisObjectNotFoundException("Object with id: " + objectId + " can not be found!", e);
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public ObjectId checkIn(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);
        String checkInComment = message.getHeader(PropertyIds.CHECKIN_COMMENT, String.class);
        String fileName = message.getHeader(PropertyIds.NAME, String.class);
        String mimeType = getMimeType(message);
        InputStream inputStream = (InputStream) message.getBody();

        byte[] bytes = message.getBody(byte[].class);
        Document document = (Document) getSessionFacade().getObjectById(objectId);
        if (fileName == null) {
            fileName = document.getName();
        }
        Map properties = filterTypeProperties(message.getHeaders());

        ContentStream contentStream = getSessionFacade().createContentStream(fileName, bytes, mimeType);

        String versioningState = message.getHeader(CamelCMISConstants.VERSIONING_STATE, String.class);
        Boolean versioning = org.apache.camel.util.ObjectHelper.isNotEmpty(versioningState)
                && versioningState.equals(VersioningState.MINOR.value()) ? false : true;

        try {
            return document.checkIn(versioning, properties, contentStream, checkInComment);
        } catch (Exception e) {
            document.cancelCheckOut();
            throw e;
        }
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public ObjectId checkOut(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        Document document = (Document) getSessionFacade().getObjectById(objectId);

        return document.checkOut();
    }

    /**
     * This method is called via reflection. It is not safe to delete it or rename it! Method's name are defined and
     * retrieved from {@link CamelCMISActions}.
     */
    @SuppressWarnings("unused")
    public void cancelCheckOut(Exchange exchange) throws Exception {
        validateRequiredHeader(exchange, CamelCMISConstants.CMIS_OBJECT_ID);

        Message message = exchange.getIn();

        String objectId = message.getHeader(CamelCMISConstants.CMIS_OBJECT_ID, String.class);

        Document document = (Document) getSessionFacade().getObjectById(objectId);
        document.cancelCheckOut();
    }

    private boolean isFolder(Message message) throws Exception {
        String baseTypeId = message.getHeader(PropertyIds.OBJECT_TYPE_ID, String.class);
        if (baseTypeId != null) {
            return CamelCMISConstants.CMIS_FOLDER.equals(getSessionFacade().getCMISTypeFor(baseTypeId));
        }
        return message.getBody() == null;
    }

    private Folder storeFolder(Folder parentFolder, Map cmisProperties) {
        cmisProperties.putIfAbsent(PropertyIds.OBJECT_TYPE_ID, CamelCMISConstants.CMIS_FOLDER);

        LOG.debug("Creating folder with properties: {}", cmisProperties);
        return parentFolder.createFolder(cmisProperties);
    }

    private Document storeDocument(
            Folder parentFolder, Map cmisProperties, ContentStream contentStream, String versioning)
            throws Exception {
        cmisProperties.putIfAbsent(PropertyIds.OBJECT_TYPE_ID, CamelCMISConstants.CMIS_DOCUMENT);

        VersioningState versioningState = VersioningState.NONE;

        if (getSessionFacade().isObjectTypeVersionable((String) cmisProperties.get(PropertyIds.OBJECT_TYPE_ID))) {
            if (org.apache.camel.util.ObjectHelper.isNotEmpty(versioning)) {
                versioningState = VersioningState.valueOf(versioning);
            } else {
                versioningState = VersioningState.MAJOR;
            }
        }
        LOG.debug("Creating document with properties: {}", cmisProperties);

        return parentFolder.createDocument(cmisProperties, contentStream, versioningState);
    }

    private void validateRequiredHeader(Exchange exchange, String name) throws NoSuchHeaderException {
        ExchangeHelper.getMandatoryHeader(exchange, name, String.class);
    }

    private boolean isDocument(Exchange exchange) throws Exception {
        String baseTypeId = exchange.getIn().getHeader(PropertyIds.OBJECT_TYPE_ID, String.class);
        if (baseTypeId != null) {
            return CamelCMISConstants.CMIS_DOCUMENT.equals(getSessionFacade().getCMISTypeFor(baseTypeId));
        }
        return exchange.getIn().getBody() != null;
    }

    private byte[] getBodyData(Message message) {
        return message.getBody(byte[].class);
    }

    private String getMimeType(Message message) {
        String mimeType = message.getHeader(PropertyIds.CONTENT_STREAM_MIME_TYPE, String.class);
        if (mimeType == null) {
            mimeType = MessageHelper.getContentType(message);
        }
        return mimeType;
    }

    private CMISSessionFacade getSessionFacade() throws Exception {
        if (sessionFacade == null) {
            CMISSessionFacade sessionFacade = sessionFacadeFactory.create(getEndpoint());
            sessionFacade.initSession();
            // make sure to set sessionFacade to the field after successful initialisation
            // so that it has a valid session
            this.sessionFacade = sessionFacade;
        }

        return sessionFacade;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy