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