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.PathRef;
020import org.nuxeo.ecm.automation.client.model.PropertyMap;
021import org.nuxeo.shell.Argument;
022import org.nuxeo.shell.Command;
023import org.nuxeo.shell.Context;
024import org.nuxeo.shell.Parameter;
025import org.nuxeo.shell.ShellException;
026import org.nuxeo.shell.automation.DocRefCompletor;
027import org.nuxeo.shell.automation.DocTypeCompletor;
028import org.nuxeo.shell.automation.RemoteContext;
029import org.nuxeo.shell.utils.Path;
030
031/**
032 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
033 */
034@Command(name = "mkdir", help = "Create a document of the given type")
035public class MkDir implements Runnable {
036
037    @Context
038    protected RemoteContext ctx;
039
040    @Parameter(name = "-title", hasValue = true, help = "An optional document title.")
041    protected String title;
042
043    @Argument(name = "type", index = 0, required = true, completor = DocTypeCompletor.class, help = "The document type")
044    protected String type;
045
046    @Argument(name = "path", index = 1, required = true, completor = DocRefCompletor.class, help = "The document path")
047    protected String path;
048
049    public void run() {
050        Path p = ctx.resolvePath(path);
051        PathRef parent = new PathRef(p.getParent().toString());
052        PropertyMap props = new PropertyMap();
053        if (title != null) {
054            props.set("dc:title", title);
055        }
056        try {
057            ctx.getDocumentService().createDocument(parent, type, p.lastSegment(), props);
058        } catch (Exception e) {
059            throw new ShellException(e);
060        }
061    }
062}