diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml b/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml index 32bf338f..d390d355 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml @@ -35,6 +35,11 @@ alfresco-transform-pdf-renderer ${project.version} + + org.alfresco + alfresco-transform-libreoffice + ${project.version} + junit diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/transformers/LibreOfficeAdapter.java b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/transformers/LibreOfficeAdapter.java new file mode 100644 index 00000000..183fbf4d --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/transformers/LibreOfficeAdapter.java @@ -0,0 +1,57 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2020 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * 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 . + * #L% + */ +package org.alfresco.transformer.transformers; + +import java.io.File; +import java.util.Map; + +import org.alfresco.transformer.executors.LibreOfficeJavaExecutor; + +public class LibreOfficeAdapter extends AbstractTransformer +{ + private static String CONFIG_PREFIX = "libreoffice"; + private LibreOfficeJavaExecutor javaExecutor; + + public LibreOfficeAdapter() throws Exception + { + super(); + javaExecutor = new LibreOfficeJavaExecutor(); + } + + @Override + String getTransformerConfigPrefix() + { + return CONFIG_PREFIX; + } + + @Override + public void transform(File sourceFile, File targetFile, String sourceMimetype, String targetMimetype, + Map transformOptions) throws Exception + { + javaExecutor.call(sourceFile, targetFile); + } +} \ No newline at end of file