Cloudbar variables and loginUrl are configurable through runtime.properties and build.xml
[pithos-web-client] / src / gr / grnet / pithos / web / client / FileVersionsDialog.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.FileVersions;\r
39 import gr.grnet.pithos.web.client.foldertree.Version;\r
40 import gr.grnet.pithos.web.client.rest.GetRequest;\r
41 import gr.grnet.pithos.web.client.rest.RestException;\r
42 \r
43 import java.util.List;\r
44 \r
45 import com.google.gwt.core.client.GWT;\r
46 import com.google.gwt.core.client.Scheduler;\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.http.client.Response;\r
50 import com.google.gwt.resources.client.ImageResource;\r
51 import com.google.gwt.user.client.Command;\r
52 import com.google.gwt.user.client.ui.Anchor;\r
53 import com.google.gwt.user.client.ui.Button;\r
54 import com.google.gwt.user.client.ui.CheckBox;\r
55 import com.google.gwt.user.client.ui.FocusPanel;\r
56 import com.google.gwt.user.client.ui.HasHorizontalAlignment;\r
57 import com.google.gwt.user.client.ui.VerticalPanel;\r
58 \r
59 /**\r
60  * The 'File properties' dialog box implementation.\r
61  *\r
62  */\r
63 public class FileVersionsDialog extends AbstractPropertiesDialog {\r
64 \r
65         protected PermissionsList permList;\r
66 \r
67         protected CheckBox readForAll;\r
68 \r
69         /**\r
70          * An image bundle for this widgets images.\r
71          */\r
72         public interface Images extends MessagePanel.Images {\r
73 \r
74                 @Source("gr/grnet/pithos/resources/edit_user.png")\r
75                 ImageResource permUser();\r
76 \r
77                 @Source("gr/grnet/pithos/resources/groups22.png")\r
78                 ImageResource permGroup();\r
79 \r
80                 @Source("gr/grnet/pithos/resources/editdelete.png")\r
81                 ImageResource delete();\r
82 \r
83                 @Source("gr/grnet/pithos/resources/db_update.png")\r
84                 ImageResource restore();\r
85 \r
86                 @Source("gr/grnet/pithos/resources/folder_inbox.png")\r
87                 ImageResource download();\r
88         }\r
89 \r
90         final File file;\r
91 \r
92     Images images = GWT.create(Images.class);\r
93 \r
94         /**\r
95          * The widget's constructor.\r
96          */\r
97         public FileVersionsDialog(Pithos _app, File _file) {\r
98         super(_app);\r
99         file = _file;\r
100 \r
101                 Anchor close = new Anchor();\r
102                 close.addStyleName("close");\r
103                 close.addClickHandler(new ClickHandler() {\r
104                         \r
105                         @Override\r
106                         public void onClick(ClickEvent event) {\r
107                                 hide();\r
108                         }\r
109                 });\r
110                 // Set the dialog's caption.\r
111                 setText("File versions");\r
112                 setAnimationEnabled(true);\r
113                 setGlassEnabled(true);\r
114                 setStyleName("pithos-DialogBox");\r
115 \r
116                 // Outer contains inner and buttons.\r
117                 final VerticalPanel outer = new VerticalPanel();\r
118                 outer.add(close);\r
119                 final FocusPanel focusPanel = new FocusPanel(outer);\r
120                 // Inner contains generalPanel and permPanel.\r
121                 inner = new VerticalPanel();\r
122                 inner.addStyleName("inner");\r
123 \r
124                 fetchVersions();\r
125 \r
126                 outer.add(inner);\r
127 \r
128                 // Create the 'OK' button, along with a listener that hides the dialog\r
129                 // when the button is clicked.\r
130                 final Button ok = new Button("OK", new ClickHandler() {\r
131                         @Override\r
132                         public void onClick(ClickEvent event) {\r
133                                 accept();\r
134                                 closeDialog();\r
135                         }\r
136                 });\r
137                 ok.addStyleName("button");\r
138 \r
139         outer.add(ok);\r
140         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
141 \r
142         focusPanel.setFocus(true);\r
143         setWidget(outer);\r
144         }\r
145 \r
146         void doCenter() {\r
147                 super.center();\r
148         }\r
149         \r
150         @Override\r
151         public void center() {\r
152                 fetchVersions();\r
153         }\r
154 \r
155     protected void fetchVersions() {\r
156         String path = file.getUri() + "?format=json&version=list";\r
157         GetRequest<FileVersions> getVersions = new GetRequest<FileVersions>(FileVersions.class, app.getApiPath(), file.getOwner(), path) {\r
158 \r
159                         @Override\r
160                         public void onSuccess(FileVersions _result) {\r
161                         inner.add(createVersionPanel(_result.getVersions()));\r
162                                 doCenter();\r
163                         }\r
164 \r
165                         @Override\r
166                         public void onError(Throwable t) {\r
167                                 GWT.log("", t);\r
168                                 app.setError(t);\r
169                 if (t instanceof RestException) {\r
170                     app.displayError("Unable to fetch versions: " + ((RestException) t).getHttpStatusText());\r
171                 }\r
172                 else\r
173                     app.displayError("System error unable to fetch versions: "+t.getMessage());\r
174                         }\r
175 \r
176                         @Override\r
177                         protected void onUnauthorized(Response response) {\r
178                                 app.sessionExpired();\r
179                         }\r
180                 };\r
181                 getVersions.setHeader("X-Auth-Token", app.getToken());\r
182                 Scheduler.get().scheduleDeferred(getVersions);\r
183         }\r
184 \r
185     VerticalPanel createVersionPanel(List<Version> versions) {\r
186         VerticalPanel versionPanel = new VerticalPanel();\r
187         VersionsList verList = new VersionsList(app, this, images, file, versions);\r
188         versionPanel.add(verList);\r
189         return versionPanel;\r
190     }\r
191 \r
192         /**\r
193          * Accepts any change and updates the file\r
194          *\r
195          */\r
196         @Override\r
197         protected void accept() {\r
198         app.updateFolder(file.getParent(), true, new Command() {\r
199                         \r
200                         @Override\r
201                         public void execute() {\r
202                                 if (file.isShared())\r
203                                         app.updateMySharedRoot();\r
204                         }\r
205                 });\r
206         }\r
207 }\r