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 org.nuxeo.ecm.automation.client.model.DocRef;
020import org.nuxeo.shell.Argument;
021import org.nuxeo.shell.Command;
022import org.nuxeo.shell.Context;
023import org.nuxeo.shell.ShellException;
024import org.nuxeo.shell.automation.DocRefCompletor;
025import org.nuxeo.shell.automation.RemoteContext;
026
027/**
028 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
029 */
030@Command(name = "fire", help = "Fire a core event in the context of the given document")
031public class Fire implements Runnable {
032
033    @Context
034    protected RemoteContext ctx;
035
036    @Argument(name = "event", index = 0, required = true, help = "The event to fire. This parameter is required.")
037    protected String event;
038
039    @Argument(name = "doc", index = 1, required = false, completor = DocRefCompletor.class, help = "The context document. If not specified the current document is used. To use UID references prefix them with 'doc:'.")
040    protected String path;
041
042    public void run() {
043        DocRef doc = ctx.resolveRef(path);
044        try {
045            ctx.getDocumentService().fireEvent(doc, event);
046        } catch (Exception e) {
047            throw new ShellException("Failed to set property on " + doc, e);
048        }
049    }
050
051}