early commit - first attemp, regarding giving a uri and fetching the proper directory
[pithos] / src / gr / ebs / gss / client / commands / CutCommand.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.client.commands;
20
21 import gr.ebs.gss.client.GSS;
22 import gr.ebs.gss.client.clipboard.Clipboard;
23 import gr.ebs.gss.client.clipboard.ClipboardItem;
24 import gr.ebs.gss.client.rest.resource.FileResource;
25 import gr.ebs.gss.client.rest.resource.FolderResource;
26 import gr.ebs.gss.client.rest.resource.GroupUserResource;
27
28 import java.util.List;
29
30 import com.google.gwt.core.client.GWT;
31 import com.google.gwt.user.client.Command;
32 import com.google.gwt.user.client.ui.PopupPanel;
33
34
35 /**
36  * Command for cutting a file, folder or user to GSS Clipboard
37  * @author kman
38  *
39  */
40 public class CutCommand implements Command{
41         private PopupPanel containerPanel;
42
43         public CutCommand( PopupPanel _containerPanel ){
44                 containerPanel = _containerPanel;
45         }
46         /* (non-Javadoc)
47          * @see com.google.gwt.user.client.Command#execute()
48          */
49         public void execute() {
50                 containerPanel.hide();
51                 Object selection = GSS.get().getCurrentSelection();
52                 if (selection == null)
53                         return;
54                 GWT.log("selection: " + selection.toString(), null);
55                 if (selection instanceof FolderResource) {
56                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (FolderResource) selection);
57                         GSS.get().getClipboard().setItem(clipboardItem);
58                 } else if (selection instanceof FileResource) {
59                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (FileResource) selection);
60                         GSS.get().getClipboard().setItem(clipboardItem);
61                 } else if (selection instanceof GroupUserResource) {
62                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (GroupUserResource) selection);
63                         GSS.get().getClipboard().setItem(clipboardItem);
64                 }
65                 else if (selection instanceof List){
66                          ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (List<FileResource>) selection);
67                          GSS.get().getClipboard().setItem(clipboardItem);
68                  }
69         }
70
71 }