Removed animation that is broken by latest chrome (v.24)
[pithos-web-client] / src / gr / grnet / pithos / web / client / ToolsMenu.java
1 /*
2  * Copyright 2011-2012 GRNET S.A. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or
5  * without modification, are permitted provided that the following
6  * conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above
9  *      copyright notice, this list of conditions and the following
10  *      disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above
13  *      copyright notice, this list of conditions and the following
14  *      disclaimer in the documentation and/or other materials
15  *      provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and
31  * documentation are those of the authors and should not be
32  * interpreted as representing official policies, either expressed
33  * or implied, of GRNET S.A.
34  */
35 package gr.grnet.pithos.web.client;
36
37 import gr.grnet.pithos.web.client.commands.AddUserCommand;
38 import gr.grnet.pithos.web.client.commands.CopyCommand;
39 import gr.grnet.pithos.web.client.commands.CreateGroupCommand;
40 import gr.grnet.pithos.web.client.commands.CutCommand;
41 import gr.grnet.pithos.web.client.commands.DeleteCommand;
42 import gr.grnet.pithos.web.client.commands.DeleteGroupCommand;
43 import gr.grnet.pithos.web.client.commands.EmptyContainerCommand;
44 import gr.grnet.pithos.web.client.commands.PasteCommand;
45 import gr.grnet.pithos.web.client.commands.PropertiesCommand;
46 import gr.grnet.pithos.web.client.commands.RemoveUserCommand;
47 import gr.grnet.pithos.web.client.commands.RestoreTrashCommand;
48 import gr.grnet.pithos.web.client.commands.ToTrashCommand;
49 import gr.grnet.pithos.web.client.foldertree.File;
50 import gr.grnet.pithos.web.client.foldertree.Folder;
51 import gr.grnet.pithos.web.client.grouptree.Group;
52 import gr.grnet.pithos.web.client.grouptree.GroupTreeView;
53 import gr.grnet.pithos.web.client.grouptree.User;
54
55 import java.util.List;
56
57 import com.google.gwt.http.client.URL;
58 import com.google.gwt.user.client.Command;
59 import com.google.gwt.user.client.Window;
60 import com.google.gwt.user.client.ui.AbstractImagePrototype;
61 import com.google.gwt.user.client.ui.MenuBar;
62 import com.google.gwt.user.client.ui.MenuItem;
63 import com.google.gwt.user.client.ui.PopupPanel;
64
65 /**
66  * The 'Folder Context' menu implementation.
67  */
68 public class ToolsMenu extends PopupPanel {
69
70         /**
71          * The widget's images.
72          */
73         private final Images images;
74
75         /**
76          * The image bundle for this widget's images that reuses images defined in
77          * other menus.
78          */
79         public interface Images extends GroupTreeView.Images {
80         }
81
82         private MenuItem pasteItem;
83
84         private boolean empty = true;
85         
86         /**
87          * The widget's constructor.
88          *
89          * @param newImages the image bundle passed on by the parent object
90          */
91         public ToolsMenu(final Pithos app, Images newImages, TreeView selectedTree, Folder folder, final List<File> files) {
92                 // The popup's constructor's argument is a boolean specifying that it
93                 // auto-close itself when the user clicks outside of it.
94                 super(true);
95                 images = newImages;
96         MenuBar contextMenu = new MenuBar(true);
97
98         if (folder != null) {
99                 Boolean[] permissions = folder.getPermissions().get(app.getUsername());
100                 boolean canWrite = folder.getOwner().equals(app.getUsername()) || (permissions!= null && permissions[1] != null && permissions[1]);
101                 boolean isFolderTreeSelected = selectedTree.equals(app.getFolderTreeView());
102                 boolean isMysharedTreeSelected = app.isMySharedSelected();
103                 
104                 if (!folder.isInTrash()) {
105                         if (canWrite) {
106
107                                 if (isFolderTreeSelected || isMysharedTreeSelected) {
108                                         MenuItem cut = null;
109                                         if (files != null && !files.isEmpty()) {
110                                                         cut = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.cut()).getHTML() + "&nbsp;Cut files</span>", true, new CutCommand(app, this, files));
111                                         }
112                                         else if (!folder.isContainer()) {
113                                             cut = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.cut()).getHTML() + "&nbsp;Cut folder</span>", true, new CutCommand(app, this, folder));
114                                         }
115                                         if (cut != null) {
116                                                 contextMenu.addItem(cut);
117                                                 empty = false;
118                                         }
119                                 }
120                         }
121         
122                         MenuItem copy = null;
123                         if (files != null && !files.isEmpty())
124                                 copy = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.copy()).getHTML() + "&nbsp;Copy files</span>", true, new CopyCommand(app, this, files));
125                         else if (isFolderTreeSelected && !folder.isContainer())
126                                 copy = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.copy()).getHTML() + "&nbsp;Copy folder</span>", true, new CopyCommand(app, this, folder));
127                         if (copy != null) {
128                                 contextMenu.addItem(copy);
129                                 empty = false;
130                         }
131                 
132                         if (canWrite) {
133                                 if (!isMysharedTreeSelected && !app.getClipboard().isEmpty()) {
134                                         Object item = app.getClipboard().getItem();
135                                         boolean showPaste = false;
136                                         if (item instanceof List) {
137                                                 @SuppressWarnings("unchecked")
138                                                         List<File> _files = (List<File>) item;
139                                                 if (_files.get(0).getOwner().equals(folder.getOwner()))
140                                                         showPaste = true;
141                                         }
142                                         else {
143                                                 Folder f = (Folder) item;
144                                                 if (f.getOwner().equals(folder.getOwner()))
145                                                         showPaste = true;
146                                         }
147                                         if (showPaste) {
148                                             pasteItem = new MenuItem("<span id = 'folderContextMenu.paste'>" + AbstractImagePrototype.create(newImages.paste()).getHTML() + "&nbsp;Paste</span>", true, new PasteCommand(app, this, folder));
149                                             contextMenu.addItem(pasteItem);
150                                                 empty = false;
151                                         }
152                                 }
153         
154                                     if (isFolderTreeSelected || isMysharedTreeSelected) {
155                                         MenuItem moveToTrash = null;
156                                         if (files != null && !files.isEmpty()) {
157                                                 moveToTrash = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.emptyTrash()).getHTML() + "&nbsp;Move files to Trash</span>", true, new ToTrashCommand(app, this, files));
158                                         }
159                                         else if (!folder.isContainer()) {
160                                                 moveToTrash = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.emptyTrash()).getHTML() + "&nbsp;Move folder to Trash</span>", true, new ToTrashCommand(app, this, folder));
161                                         }
162                                         if (moveToTrash != null) {
163                                                 contextMenu.addItem(moveToTrash);
164                                                 empty = false;
165                                         }
166                                 
167                                         MenuItem delete = null;
168                                         if (files != null && !files.isEmpty()) {
169                                                 delete = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.delete()).getHTML() + "&nbsp;Delete files</span>", true, new DeleteCommand(app, this, files, MessagePanel.images));
170                                         }
171                                         else if (!folder.isContainer())
172                                                 delete = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.delete()).getHTML() + "&nbsp;Delete folder</span>", true, new DeleteCommand(app, this, folder, MessagePanel.images));
173                                         if (delete != null) {
174                                                 contextMenu.addItem(delete);
175                                                 empty = false;
176                                         }
177                                     }
178                                     if (isFolderTreeSelected || isMysharedTreeSelected) {
179                                         if (files != null && files.size() == 1) {
180                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.viewText()).getHTML() + "&nbsp;File properties</span>", true, new PropertiesCommand(app, this, files, PropertiesCommand.PROPERTIES)));
181                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.group()).getHTML() + "&nbsp;Sharing</span>", true, new PropertiesCommand(app, this, files, PropertiesCommand.PERMISSIONS)));
182                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.internet()).getHTML() + "&nbsp;Publish</span>", true, new PropertiesCommand(app, this, files, PropertiesCommand.PUBLISH)));
183                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.versions()).getHTML() + "&nbsp;Versions</span>", true, new PropertiesCommand(app, this, files, PropertiesCommand.VERSIONS)));
184                                                 empty = false;
185                                         }
186                                         else if (!folder.isContainer()) {
187                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.viewText()).getHTML() + "&nbsp;Folder properties</span>", true, new PropertiesCommand(app, this, folder, PropertiesCommand.PROPERTIES)));
188                                                 contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.sharing()).getHTML() + "&nbsp;Folder sharing</span>", true, new PropertiesCommand(app, this, folder, PropertiesCommand.PERMISSIONS)));
189                                                 empty = false;
190                                         }
191                                     }
192                                 if (files != null && !files.isEmpty()) {
193                                             contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.download()).getHTML() + "&nbsp;Download</span>", true, new Command() {
194                                                         
195                                                         @Override
196                                                         public void execute() {
197                                                         for (File f: files)
198                                                                 Window.open(app.getApiPath() + f.getOwner() + f.getUri(), "_blank", "");
199                                                         }
200                                                 }));
201                                         empty = false;
202                                 }
203                                 if (isFolderTreeSelected && folder.isContainer()) {
204                                         MenuItem emptyContainer = new MenuItem("<span>Empty Container</span>", true, new EmptyContainerCommand(app, this, folder));
205                                         contextMenu.addItem(emptyContainer);
206                                         empty = false;
207                                 }
208                         }
209                 }
210                 else {
211                         if (!folder.isTrash()) {
212                                 MenuItem restore = null;
213                                 if (files != null && !files.isEmpty())
214                                         restore = new MenuItem("<span>" + AbstractImagePrototype.create(images.versions()).getHTML() + "&nbsp;Restore</span>", true, new RestoreTrashCommand(app, this, files));
215                                 else
216                                         restore = new MenuItem("<span>" + AbstractImagePrototype.create(images.versions()).getHTML() + "&nbsp;Restore</span>", true, new RestoreTrashCommand(app, this, folder));
217                                 contextMenu.addItem(restore);
218
219                                 MenuItem delete = new MenuItem("<span id = 'folderContextMenu.delete'>" + AbstractImagePrototype.create(newImages.delete()).getHTML() + "&nbsp;Delete</span>", true, new DeleteCommand(app, this, folder, MessagePanel.images));
220                                 contextMenu.addItem(delete);
221                                 empty = false;
222                         }
223                         else {
224                                 MenuItem emptyTrash = new MenuItem("<span>" + AbstractImagePrototype.create(images.emptyTrash()).getHTML() + "&nbsp;Empty Trash</span>", true, new EmptyContainerCommand(app, this, folder));
225                                 contextMenu.addItem(emptyTrash);
226                                 empty = false;
227                         }
228                 }
229         }
230         else {
231                 Object o = app.getGroupTreeView().getSelected();
232                 if (o != null) {
233                         if (o instanceof User) {
234                         MenuItem removeUser = new MenuItem("<span>" + AbstractImagePrototype.create(images.delete()).getHTML() + "&nbsp;Remove User</span>", true, new RemoveUserCommand(app, this, (User) o));
235                         contextMenu.addItem(removeUser);
236                                 empty = false;
237                         }
238                         else if (o instanceof Group) {
239                         MenuItem addUser = new MenuItem("<span>" + AbstractImagePrototype.create(images.user()).getHTML() + "&nbsp;Add User</span>", true, new AddUserCommand(app, this, (Group) o));
240                         contextMenu.addItem(addUser);
241                 
242                         MenuItem deleteGroup = new MenuItem("<span>" + AbstractImagePrototype.create(images.delete()).getHTML() + "&nbsp;Delete Group</span>", true, new DeleteGroupCommand(app, this, (Group) o));
243                         contextMenu.addItem(deleteGroup);
244                                 empty = false;
245                         }
246                 }
247         }
248         MenuItem createGroup = new MenuItem("<span>" + AbstractImagePrototype.create(images.group()).getHTML() + "&nbsp;Create Group</span>", true, new CreateGroupCommand(app, this));
249         contextMenu.addItem(createGroup);
250         empty = false;
251                 add(contextMenu);
252         }
253         
254         public boolean isEmpty() {
255                 return empty;
256         }
257 }