001/*
002 * (C) Copyright 2012 Nuxeo SA (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 *     Antoine Taillefer <ataillefer@nuxeo.com>
016 */
017package org.nuxeo.drive.operations;
018
019import java.io.IOException;
020
021import org.nuxeo.drive.adapter.FileSystemItem;
022import org.nuxeo.drive.adapter.FolderItem;
023import org.nuxeo.drive.service.FileSystemItemManager;
024import org.nuxeo.ecm.automation.OperationContext;
025import org.nuxeo.ecm.automation.core.Constants;
026import org.nuxeo.ecm.automation.core.annotations.Context;
027import org.nuxeo.ecm.automation.core.annotations.Operation;
028import org.nuxeo.ecm.automation.core.annotations.OperationMethod;
029import org.nuxeo.ecm.automation.core.annotations.Param;
030import org.nuxeo.ecm.core.api.Blob;
031import org.nuxeo.runtime.api.Framework;
032
033/**
034 * Creates a folder with the given name in the {@link FileSystemItem} with the given id for the currently authenticated
035 * user.
036 *
037 * @author Antoine Taillefer
038 */
039@Operation(id = NuxeoDriveCreateFolder.ID, category = Constants.CAT_SERVICES, label = "Nuxeo Drive: Create folder")
040public class NuxeoDriveCreateFolder {
041
042    public static final String ID = "NuxeoDrive.CreateFolder";
043
044    @Context
045    protected OperationContext ctx;
046
047    @Param(name = "parentId")
048    protected String parentId;
049
050    @Param(name = "name")
051    protected String name;
052
053    @OperationMethod
054    public Blob run() throws IOException {
055
056        FileSystemItemManager fileSystemItemManager = Framework.getLocalService(FileSystemItemManager.class);
057        FolderItem folderItem = fileSystemItemManager.createFolder(parentId, name, ctx.getPrincipal());
058
059        return NuxeoDriveOperationHelper.asJSONBlob(folderItem);
060    }
061
062}