/* * (C) Copyright 2006-2013 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: * ldoguin */ package org.nuxeo.ecm.automation.core.operations.blob; 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.annotations.Param; import org.nuxeo.ecm.automation.core.util.BlobList; import org.nuxeo.ecm.core.api.Blob; import org.nuxeo.ecm.core.api.DocumentModel; import org.nuxeo.ecm.core.api.blobholder.BlobHolder; import org.nuxeo.ecm.core.convert.api.ConversionService; import org.nuxeo.ecm.platform.convert.ConvertHelper; /** * Convert the given blob to a file with given mimetype. * * @author ldoguin */ @Operation(id = ConvertBlob.ID, category = Constants.CAT_CONVERSION, label = "Convert to given mime-type", description = "Convert the input file to a file of the given mime-type and return the new file.", since = "5.7") public class ConvertBlob { public static final String ID = "Blob.Convert"; protected final ConvertHelper convertHelper = new ConvertHelper(); @Context protected ConversionService service; @Param(name = "mimeType", required = true) protected String mimeType; @OperationMethod public Blob run(DocumentModel doc) { BlobHolder bh = doc.getAdapter(BlobHolder.class); if (bh == null) { return null; } return run(bh.getBlob()); } @OperationMethod public Blob run(Blob blob) { Blob result = convertHelper.convertBlob(blob, mimeType); return result; } @OperationMethod public BlobList run(BlobList blobs) { BlobList bl = new BlobList(); for (Blob blob : blobs) { bl.add(this.run(blob)); } return bl; } }