Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / FileContextMenu.java @ 10ff638f

History | View | Annotate | Download (10.4 kB)

1
/*
2
 * Copyright 2011-2013 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.CopyCommand;
38
import gr.grnet.pithos.web.client.commands.CutCommand;
39
import gr.grnet.pithos.web.client.commands.DeleteCommand;
40
import gr.grnet.pithos.web.client.commands.PasteCommand;
41
import gr.grnet.pithos.web.client.commands.PropertiesCommand;
42
import gr.grnet.pithos.web.client.commands.RestoreTrashCommand;
43
import gr.grnet.pithos.web.client.commands.ToTrashCommand;
44
import gr.grnet.pithos.web.client.commands.UploadFileCommand;
45
import gr.grnet.pithos.web.client.foldertree.File;
46
import gr.grnet.pithos.web.client.foldertree.Folder;
47

    
48
import java.util.List;
49

    
50
import com.google.gwt.resources.client.ClientBundle;
51
import com.google.gwt.resources.client.ImageResource;
52
import com.google.gwt.user.client.Command;
53
import com.google.gwt.user.client.Window;
54
import com.google.gwt.user.client.ui.AbstractImagePrototype;
55
import com.google.gwt.user.client.ui.MenuBar;
56
import com.google.gwt.user.client.ui.MenuItem;
57
import com.google.gwt.user.client.ui.PopupPanel;
58

    
59
/**
60
 * The 'File Context' menu implementation.
61
 */
62
public class FileContextMenu extends PopupPanel {
63

    
64
        /**
65
         * The widget's images.
66
         */
67
        private final Images images;
68

    
69
        private MenuItem cutItem;
70

    
71
        private MenuItem copyItem;
72

    
73
        private MenuItem pasteItem;
74

    
75
        private MenuItem updateItem;
76

    
77
        private MenuItem sharingItem;
78

    
79
        private MenuItem propItem;
80

    
81
        private MenuItem trashItem;
82

    
83
        private MenuItem deleteItem;
84

    
85
        private MenuItem downloadItem;
86

    
87
        private MenuItem saveAsItem;
88

    
89
        /**
90
         * The image bundle for this widget's images that reuses images defined in
91
         * other menus.
92
         */
93
        public interface Images extends ClientBundle {
94

    
95
                @Source("gr/grnet/pithos/resources/mimetypes/document.png")
96
                ImageResource fileContextMenu();
97

    
98
                @Source("gr/grnet/pithos/resources/doc_versions.png")
99
                ImageResource versions();
100

    
101
                @Source("gr/grnet/pithos/resources/groups22.png")
102
                ImageResource sharing();
103

    
104
                @Source("gr/grnet/pithos/resources/border_remove.png")
105
                ImageResource unselectAll();
106

    
107
                @Source("gr/grnet/pithos/resources/demo.png")
108
                ImageResource viewImage();
109

    
110
        @Source("gr/grnet/pithos/resources/folder_new.png")
111
        ImageResource folderNew();
112

    
113
        @Source("gr/grnet/pithos/resources/folder_outbox.png")
114
        ImageResource fileUpdate();
115

    
116
        @Source("gr/grnet/pithos/resources/view_text.png")
117
        ImageResource viewText();
118

    
119
        @Source("gr/grnet/pithos/resources/folder_inbox.png")
120
        ImageResource download();
121

    
122
        @Source("gr/grnet/pithos/resources/trash.png")
123
        ImageResource emptyTrash();
124

    
125
        @Source("gr/grnet/pithos/resources/refresh.png")
126
        ImageResource refresh();
127

    
128
        /**
129
         * Will bundle the file 'editcut.png' residing in the package
130
         * 'gr.grnet.pithos.web.resources'.
131
         *
132
         * @return the image prototype
133
         */
134
        @Source("gr/grnet/pithos/resources/editcut.png")
135
        ImageResource cut();
136

    
137
        /**
138
         * Will bundle the file 'editcopy.png' residing in the package
139
         * 'gr.grnet.pithos.web.resources'.
140
         *
141
         * @return the image prototype
142
         */
143
        @Source("gr/grnet/pithos/resources/editcopy.png")
144
        ImageResource copy();
145

    
146
        /**
147
         * Will bundle the file 'editpaste.png' residing in the package
148
         * 'gr.grnet.pithos.web.resources'.
149
         *
150
         * @return the image prototype
151
         */
152
        @Source("gr/grnet/pithos/resources/editpaste.png")
153
        ImageResource paste();
154

    
155
        /**
156
         * Will bundle the file 'editdelete.png' residing in the package
157
         * 'gr.grnet.pithos.web.resources'.
158
         *
159
         * @return the image prototype
160
         */
161
        @Source("gr/grnet/pithos/resources/editdelete.png")
162
        ImageResource delete();
163

    
164
        /**
165
         * Will bundle the file 'translate.png' residing in the package
166
         * 'gr.grnet.pithos.web.resources'.
167
         *
168
         * @return the image prototype
169
         */
170
        @Source("gr/grnet/pithos/resources/translate.png")
171
        ImageResource selectAll();
172
        
173
        @Source("gr/grnet/pithos/resources/internet.png")
174
        ImageResource internet();
175
    }
176

    
177
        public static native String getDate()/*-{
178
                return (new Date()).toUTCString();
179
        }-*/;
180

    
181
        /**
182
         * The widget's constructor.
183
         *
184
         * @param newImages the image bundle passed on by the parent object
185
         */
186
        public FileContextMenu(final Pithos app, Images newImages, TreeView selectedTree, Folder selectedFolder, final List<File> selectedFiles) {
187
                // The popup's constructor's argument is a boolean specifying that it
188
                // auto-close itself when the user clicks outside of it.
189
                super(true);
190
                images = newImages;
191
        MenuBar contextMenu = new MenuBar(true);
192
        Boolean[] permissions = null;
193
        boolean canWrite = true;
194
        if (selectedFolder != null) {
195
                permissions = selectedFolder.getPermissions().get(app.getUserID());
196
                canWrite = selectedFolder.getOwnerID().equals(app.getUserID()) || (permissions!= null && permissions[1] != null && permissions[1]);
197
                }
198
        else {
199
                for (File f : selectedFiles) {
200
                        permissions = f.getPermissions().get(app.getUserID());
201
                        canWrite &= (f.getOwnerID().equals(app.getUserID()) || (permissions!= null && permissions[1] != null && permissions[1]));
202
                }
203
        }
204
        boolean isFolderTreeSelected = selectedTree.equals(app.getFolderTreeView());
205
        boolean isMysharedSelected = selectedTree.equals(app.getMySharedTreeView());
206

    
207
        Pithos.LOG("FileContextMenu(), selectedFolder=", selectedFolder);
208
        Pithos.LOG("FileContextMenu(), isFolderTreeSelected=", isFolderTreeSelected);
209
        Pithos.LOG("FileContextMenu(), isMysharedSelected=", isMysharedSelected);
210

    
211
        if (selectedFolder != null) {
212
                    if (!selectedFolder.isInTrash()) {
213
                        if (canWrite && app.getClipboard().hasFiles() && !isMysharedSelected) {
214
                                pasteItem = new MenuItem("<span>" + AbstractImagePrototype.create(images.paste()).getHTML() + "&nbsp;Paste</span>", true, new PasteCommand(app, this, selectedFolder));
215
                                contextMenu.addItem(pasteItem);
216
                        }
217
                
218
                        if (canWrite && !isMysharedSelected) {
219
                                MenuItem upload = new MenuItem("<span>" + AbstractImagePrototype.create(images.fileUpdate()).getHTML() + "&nbsp;Upload</span>", true, new UploadFileCommand(app, this, selectedFolder));
220
                                contextMenu.addItem(upload);
221
                        }
222
                        if (isFolderTreeSelected || isMysharedSelected) {
223
                                        cutItem = new MenuItem("<span id='fileContextMenu.cut'>" + AbstractImagePrototype.create(newImages.cut()).getHTML() + "&nbsp;Cut</span>", true, new CutCommand(app, this, selectedFiles));
224
                            contextMenu.addItem(cutItem);
225
                        }
226
                
227
                                copyItem = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.copy()).getHTML() + "&nbsp;Copy</span>", true, new CopyCommand(app, this, selectedFiles));
228
                        contextMenu.addItem(copyItem);
229
                
230
                        if (isFolderTreeSelected || isMysharedSelected) {
231
                                        trashItem = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.emptyTrash()).getHTML() + "&nbsp;Move to Trash</span>", true, new ToTrashCommand(app, this, selectedFiles));
232
                            contextMenu.addItem(trashItem);
233
                        }
234
                    }
235
                    else {
236
                                MenuItem restore = new MenuItem("<span>" + AbstractImagePrototype.create(images.versions()).getHTML() + "&nbsp;Restore</span>", true, new RestoreTrashCommand(app, this, selectedFiles));
237
                                contextMenu.addItem(restore);
238

    
239
                deleteItem = new MenuItem("<span>" + AbstractImagePrototype.create(newImages.delete()).getHTML() + "&nbsp;Delete</span>", true, new DeleteCommand(app, this, selectedFiles, MessagePanel.images));
240
                contextMenu.addItem(deleteItem);
241
                    }
242
        }
243

    
244
        if (selectedFolder != null && !selectedFolder.isInTrash()) {
245
                if ((isFolderTreeSelected || isMysharedSelected) && selectedFiles.size() == 1) {
246
                        contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.viewText()).getHTML() + "&nbsp;Properties</span>", true, new PropertiesCommand(app, this, selectedFiles, PropertiesCommand.PROPERTIES)));
247
                        contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.sharing()).getHTML() + "&nbsp;Share</span>", true, new PropertiesCommand(app, this, selectedFiles, PropertiesCommand.PERMISSIONS)));
248
                               contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.versions()).getHTML() + "&nbsp;Versions</span>", true, new PropertiesCommand(app, this, selectedFiles, PropertiesCommand.VERSIONS)));
249
                }
250

    
251
        }
252
            contextMenu.addItem(new MenuItem("<span>" + AbstractImagePrototype.create(newImages.download()).getHTML() + "&nbsp;Download</span>", true, new Command() {
253
                        
254
                        @Override
255
                        public void execute() {
256
                                for (File f : selectedFiles)
257
                                        Window.open(app.getApiPath() + f.getOwnerID() + f.getUri(), "_blank", "");
258
                        }
259
                }));
260

    
261
                add(contextMenu);
262
        }
263
}