001/*
002 * (C) Copyright 2006-2010 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     bstefanescu
016 */
017package org.nuxeo.shell.automation.cmds;
018
019import java.io.File;
020
021import org.nuxeo.ecm.automation.client.model.DocRef;
022import org.nuxeo.ecm.automation.client.model.FileBlob;
023import org.nuxeo.shell.Argument;
024import org.nuxeo.shell.Command;
025import org.nuxeo.shell.Context;
026import org.nuxeo.shell.Parameter;
027import org.nuxeo.shell.ShellException;
028import org.nuxeo.shell.automation.DocRefCompletor;
029import org.nuxeo.shell.automation.RemoteContext;
030
031/**
032 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
033 */
034@Command(name = "putfile", help = "Attach a file to a document")
035public class SetBlob implements Runnable {
036
037    @Context
038    protected RemoteContext ctx;
039
040    @Parameter(name = "-xpath", hasValue = true, help = "The xpath of the blob property to set. Defaults to the one used by the File document type.")
041    protected String xpath;
042
043    @Argument(name = "file", index = 0, required = true, help = "The file to upload")
044    protected File file;
045
046    @Argument(name = "doc", index = 1, required = false, completor = DocRefCompletor.class, help = "The target document. If not specified the current document is used. To use UID references prefix them with 'doc:'.")
047    protected String path;
048
049    public void run() {
050        DocRef doc = ctx.resolveRef(path);
051        try {
052            ctx.getDocumentService().setBlob(doc, new FileBlob(file), xpath);
053        } catch (Exception e) {
054            throw new ShellException("Failed to attach file on " + doc, e);
055        }
056
057    }
058}