Removed animation that is broken by latest chrome (v.24)
[pithos-web-client] / src / gr / grnet / pithos / web / client / FilePermissionsDialog.java
1 /*\r
2  * Copyright 2011-2012 GRNET S.A. All rights reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or\r
5  * without modification, are permitted provided that the following\r
6  * conditions are met:\r
7  *\r
8  *   1. Redistributions of source code must retain the above\r
9  *      copyright notice, this list of conditions and the following\r
10  *      disclaimer.\r
11  *\r
12  *   2. Redistributions in binary form must reproduce the above\r
13  *      copyright notice, this list of conditions and the following\r
14  *      disclaimer in the documentation and/or other materials\r
15  *      provided with the distribution.\r
16  *\r
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS\r
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR\r
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\r
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\r
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
28  * POSSIBILITY OF SUCH DAMAGE.\r
29  *\r
30  * The views and conclusions contained in the software and\r
31  * documentation are those of the authors and should not be\r
32  * interpreted as representing official policies, either expressed\r
33  * or implied, of GRNET S.A.\r
34  */\r
35 package gr.grnet.pithos.web.client;\r
36 \r
37 import gr.grnet.pithos.web.client.foldertree.File;\r
38 import gr.grnet.pithos.web.client.foldertree.Resource;\r
39 import gr.grnet.pithos.web.client.rest.HeadRequest;\r
40 import gr.grnet.pithos.web.client.rest.PostRequest;\r
41 \r
42 import java.util.Map;\r
43 \r
44 import com.google.gwt.core.client.GWT;\r
45 import com.google.gwt.core.client.Scheduler;\r
46 import com.google.gwt.dom.client.NativeEvent;\r
47 import com.google.gwt.event.dom.client.ClickEvent;\r
48 import com.google.gwt.event.dom.client.ClickHandler;\r
49 import com.google.gwt.event.dom.client.KeyCodes;\r
50 import com.google.gwt.http.client.Response;\r
51 import com.google.gwt.http.client.URL;\r
52 import com.google.gwt.http.client.UrlBuilder;\r
53 import com.google.gwt.i18n.client.Dictionary;\r
54 import com.google.gwt.resources.client.ImageResource;\r
55 import com.google.gwt.user.client.Command;\r
56 import com.google.gwt.user.client.Window;\r
57 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
58 import com.google.gwt.user.client.ui.Anchor;\r
59 import com.google.gwt.user.client.ui.Button;\r
60 import com.google.gwt.user.client.ui.CheckBox;\r
61 import com.google.gwt.user.client.ui.FocusPanel;\r
62 import com.google.gwt.user.client.ui.HasHorizontalAlignment;\r
63 import com.google.gwt.user.client.ui.HorizontalPanel;\r
64 import com.google.gwt.user.client.ui.Label;\r
65 import com.google.gwt.user.client.ui.TextBox;\r
66 import com.google.gwt.user.client.ui.VerticalPanel;\r
67 \r
68 /**\r
69  * The 'File properties' dialog box implementation.\r
70  *\r
71  */\r
72 public class FilePermissionsDialog extends AbstractPropertiesDialog {\r
73 \r
74         protected PermissionsList permList;\r
75 \r
76         private HorizontalPanel pathPanel;\r
77         \r
78         private TextBox path;\r
79         \r
80         /**\r
81          * An image bundle for this widgets images.\r
82          */\r
83         public interface Images extends MessagePanel.Images {\r
84 \r
85                 @Source("gr/grnet/pithos/resources/edit_user.png")\r
86                 ImageResource permUser();\r
87 \r
88                 @Source("gr/grnet/pithos/resources/groups22.png")\r
89                 ImageResource permGroup();\r
90 \r
91                 @Source("gr/grnet/pithos/resources/delete.gif")\r
92                 ImageResource delete();\r
93         }\r
94 \r
95         final File file;\r
96 \r
97     Images images = GWT.create(Images.class);\r
98 \r
99         /**\r
100          * The widget's constructor.\r
101          */\r
102         public FilePermissionsDialog(Pithos _app, File _file) {\r
103         super(_app);\r
104         file = _file;\r
105 \r
106                 Anchor close = new Anchor("close");\r
107                 close.addStyleName("close");\r
108                 close.addClickHandler(new ClickHandler() {\r
109                         \r
110                         @Override\r
111                         public void onClick(ClickEvent event) {\r
112                                 hide();\r
113                         }\r
114                 });\r
115                 // Set the dialog's caption.\r
116                 setText("File permissions");\r
117                 setGlassEnabled(true);\r
118                 setStyleName("pithos-DialogBox");\r
119 \r
120                 // Outer contains inner and buttons.\r
121                 final VerticalPanel outer = new VerticalPanel();\r
122                 outer.add(close);\r
123                 final FocusPanel focusPanel = new FocusPanel(outer);\r
124                 // Inner contains generalPanel and permPanel.\r
125                 inner = new VerticalPanel();\r
126                 inner.addStyleName("inner");\r
127 \r
128         inner.add(createSharingPanel());\r
129 \r
130         outer.add(inner);\r
131 \r
132                 final Button ok = new Button("OK", new ClickHandler() {\r
133                         @Override\r
134                         public void onClick(ClickEvent event) {\r
135                                 closeDialog();\r
136                         }\r
137                 });\r
138                 ok.addStyleName("button");\r
139 \r
140         outer.add(ok);\r
141         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
142 \r
143         focusPanel.setFocus(true);\r
144         setWidget(outer);\r
145         }\r
146 \r
147     private VerticalPanel createSharingPanel() {\r
148         VerticalPanel permPanel = new VerticalPanel();\r
149 \r
150         permList = new PermissionsList(images, file.getPermissions(), file.getOwner(), false, new Command() {\r
151                         \r
152                         @Override\r
153                         public void execute() {\r
154                                 accept();\r
155                         }\r
156                 });\r
157         permPanel.add(permList);\r
158 \r
159         HorizontalPanel permButtons = new HorizontalPanel();\r
160         final Button addUser = new Button("Add User", new ClickHandler() {\r
161             @Override\r
162             public void onClick(ClickEvent event) {\r
163                 PermissionsAddDialog dlg = new PermissionsAddDialog(app, app.getAccount().getGroups(), permList, true);\r
164                 dlg.center();\r
165                 permList.updatePermissionTable();\r
166             }\r
167         });\r
168         addUser.addStyleName("button");\r
169         permButtons.add(addUser);\r
170         permButtons.setCellHorizontalAlignment(addUser, HasHorizontalAlignment.ALIGN_CENTER);\r
171 \r
172         Button add = new Button("Add Group", new ClickHandler() {\r
173             @Override\r
174             public void onClick(ClickEvent event) {\r
175                 if (app.getAccount().getGroups().isEmpty()) {\r
176                     new GroupCreateDialog(app, new Command() {\r
177                                                 \r
178                                                 @Override\r
179                                                 public void execute() {\r
180                                         if (app.getAccount().getGroups().isEmpty())\r
181                                                 return;\r
182                                         PermissionsAddDialog dlg = new PermissionsAddDialog(app, app.getAccount().getGroups(), permList, false);\r
183                                         dlg.center();\r
184                                         permList.updatePermissionTable();\r
185                                                 }\r
186                                         }).center();\r
187                 }\r
188                 else {\r
189                         PermissionsAddDialog dlg = new PermissionsAddDialog(app, app.getAccount().getGroups(), permList, false);\r
190                         dlg.center();\r
191                         permList.updatePermissionTable();\r
192                 }\r
193             }\r
194         });\r
195         add.addStyleName("button");\r
196         permButtons.add(add);\r
197         permButtons.setCellHorizontalAlignment(add, HasHorizontalAlignment.ALIGN_CENTER);\r
198 \r
199         permButtons.setSpacing(8);\r
200         permButtons.addStyleName("pithos-TabPanelBottom");\r
201         permPanel.add(permButtons);\r
202 \r
203         final Label readForAllNote = new Label("When this option is enabled, the file will be readable" +\r
204                     " by everyone. By checking this option, you are certifying that you have the right to " +\r
205                     "distribute this file and that it does not violate the Terms of Use.", true);\r
206         readForAllNote.setStylePrimaryName("pithos-readForAllNote");\r
207 \r
208         pathPanel = new HorizontalPanel();\r
209         pathPanel.setVisible(false);\r
210         pathPanel.setWidth("100%");\r
211         pathPanel.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_LEFT);\r
212         pathPanel.add(new Label("Link"));\r
213         pathPanel.setSpacing(8);\r
214         pathPanel.addStyleName("pithos-TabPanelBottom");\r
215 \r
216         path = new TextBox();\r
217         path.setWidth("100%");\r
218         path.addClickHandler(new ClickHandler() {\r
219             @Override\r
220             public void onClick(ClickEvent event) {\r
221                 Pithos.enableIESelection();\r
222                 ((TextBox) event.getSource()).selectAll();\r
223                 Pithos.preventIESelection();\r
224             }\r
225         });\r
226         path.setText(Window.Location.getHost() + file.getPublicUri());\r
227         path.setTitle("Use this link for sharing the file via e-mail, IM, etc. (crtl-C/cmd-C to copy to system clipboard)");\r
228         path.setWidth("100%");\r
229         path.setReadOnly(true);\r
230         pathPanel.add(path);\r
231         permPanel.add(pathPanel);\r
232 \r
233         Scheduler.get().scheduleDeferred(new Command() {\r
234                         \r
235                         @Override\r
236                         public void execute() {\r
237                                 showLinkIfShared();\r
238                         }\r
239                 });\r
240         return permPanel;\r
241     }\r
242 \r
243     void showLinkIfShared() {\r
244                 if (file.isShared()) {\r
245                         UrlBuilder b = Window.Location.createUrlBuilder();\r
246                         b.setPath(app.getApiPath() + file.getOwner() + file.getUri());\r
247                         String href = Window.Location.getHref();\r
248                         boolean hasParameters = href.contains("?");\r
249                         path.setText(href + (hasParameters ? "&" : "?") + "goto=" + b.buildString());\r
250                 pathPanel.setVisible(true);\r
251                 }\r
252                 else {\r
253                         pathPanel.setVisible(false);\r
254                 }\r
255     }\r
256         /**\r
257          * Accepts any change and updates the file\r
258          *\r
259          */\r
260         @Override\r
261         protected boolean accept() {\r
262         updateMetaData(app.getApiPath(), app.getUsername(), file.getUri() + "?update=", permList.getPermissions());\r
263         return true;\r
264         }\r
265 \r
266         protected void updateMetaData(String api, String owner, final String path, final Map<String, Boolean[]> newPermissions) {\r
267         if (newPermissions != null) {\r
268             PostRequest updateFile = new PostRequest(api, owner, path) {\r
269                 @Override\r
270                 public void onSuccess(Resource result) {\r
271                         HeadRequest<File> headFile = new HeadRequest<File>(File.class, app.getApiPath(), file.getOwner(), path, file) {\r
272 \r
273                                                 @Override\r
274                                                 public void onSuccess(File _result) {\r
275                                                         showLinkIfShared();\r
276                                                         if (!app.isMySharedSelected())\r
277                                             app.updateFolder(file.getParent(), true, new Command() {\r
278                                                                         \r
279                                                                         @Override\r
280                                                                         public void execute() {\r
281                                                                                 app.updateMySharedRoot();\r
282                                                                         }\r
283                                                                 }, true);\r
284                                                         else\r
285                                                                 app.updateSharedFolder(file.getParent(), true);\r
286                                                 }\r
287 \r
288                                                 @Override\r
289                                                 public void onError(Throwable t) {\r
290                                     GWT.log("", t);\r
291                                                         app.setError(t);\r
292                                     app.displayError("System error modifying file:" + t.getMessage());\r
293                                                 }\r
294 \r
295                                                 @Override\r
296                                                 protected void onUnauthorized(Response response) {\r
297                                                         app.sessionExpired();\r
298                                                 }\r
299                                         };\r
300                                         headFile.setHeader("X-Auth-Token", app.getToken());\r
301                                         Scheduler.get().scheduleDeferred(headFile);\r
302                 }\r
303 \r
304                 @Override\r
305                 public void onError(Throwable t) {\r
306                     GWT.log("", t);\r
307                                         app.setError(t);\r
308                     app.displayError("System error modifying file:" + t.getMessage());\r
309                 }\r
310 \r
311                                 @Override\r
312                                 protected void onUnauthorized(Response response) {\r
313                                         app.sessionExpired();\r
314                                 }\r
315             };\r
316             updateFile.setHeader("X-Auth-Token", app.getToken());\r
317             \r
318             String readPermHeader = "read=";\r
319             String writePermHeader = "write=";\r
320             for (String u : newPermissions.keySet()) {\r
321                 Boolean[] p = newPermissions.get(u);\r
322                 if (p[0] != null && p[0])\r
323                     readPermHeader += u + ",";\r
324                 if (p[1] != null && p[1])\r
325                     writePermHeader += u + ",";\r
326             }\r
327             if (readPermHeader.endsWith("="))\r
328                 readPermHeader = "";\r
329             else if (readPermHeader.endsWith(","))\r
330                 readPermHeader = readPermHeader.substring(0, readPermHeader.length() - 1);\r
331             if (writePermHeader.endsWith("="))\r
332                 writePermHeader = "";\r
333             else if (writePermHeader.endsWith(","))\r
334                 writePermHeader = writePermHeader.substring(0, writePermHeader.length() - 1);\r
335             String permHeader = readPermHeader +  ((readPermHeader.length()  > 0 && writePermHeader.length() > 0) ?  ";" : "") + writePermHeader;\r
336             if (permHeader.length() == 0)\r
337                 permHeader="~";\r
338             else\r
339                 permHeader = URL.encodePathSegment(permHeader);\r
340             updateFile.setHeader("X-Object-Sharing", permHeader);\r
341             Scheduler.get().scheduleDeferred(updateFile);\r
342         }\r
343         else if (!app.isMySharedSelected())\r
344             app.updateFolder(file.getParent(), true, new Command() {\r
345                                 \r
346                                 @Override\r
347                                 public void execute() {\r
348                                         if (file.isSharedOrPublished())\r
349                                                 app.updateMySharedRoot();\r
350                                 }\r
351                         }, true);\r
352         else\r
353                 app.updateSharedFolder(file.getParent(), true);\r
354     }\r
355 \r
356         @Override\r
357         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
358             super.onPreviewNativeEvent(preview);\r
359 \r
360             NativeEvent evt = preview.getNativeEvent();\r
361             if (evt.getType().equals("keydown") && evt.getKeyCode() == KeyCodes.KEY_ENTER)\r
362                                 closeDialog();\r
363         }\r
364 }\r