Finished file versions
[pithos-web-client] / src / gr / grnet / pithos / web / client / VersionsList.java
1 /*
2  * Copyright 2011 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.FilePropertiesDialog.Images;
38 import gr.grnet.pithos.web.client.foldertree.File;
39 import gr.grnet.pithos.web.client.foldertree.Resource;
40 import gr.grnet.pithos.web.client.foldertree.Version;
41 import gr.grnet.pithos.web.client.rest.PostRequest;
42 import gr.grnet.pithos.web.client.rest.RestException;
43
44 import java.util.List;
45
46 import com.google.gwt.core.client.Scheduler;
47 import com.google.gwt.event.dom.client.ClickEvent;
48 import com.google.gwt.event.dom.client.ClickHandler;
49 import com.google.gwt.http.client.Response;
50 import com.google.gwt.i18n.client.DateTimeFormat;
51 import com.google.gwt.user.client.Window;
52 import com.google.gwt.user.client.ui.AbstractImagePrototype;
53 import com.google.gwt.user.client.ui.Composite;
54 import com.google.gwt.user.client.ui.FlexTable;
55 import com.google.gwt.user.client.ui.HTML;
56 import com.google.gwt.user.client.ui.HasHorizontalAlignment;
57 import com.google.gwt.user.client.ui.VerticalPanel;
58
59 public class VersionsList extends Composite {
60
61     Pithos app;
62
63     File file;
64     
65     private List<Version> versions = null;
66     
67     private Images images;
68     
69     private VerticalPanel permPanel = new VerticalPanel();
70     
71     private FlexTable permTable = new FlexTable();
72
73         FilePropertiesDialog container;
74
75         public VersionsList(Pithos _app, FilePropertiesDialog aContainer, final Images theImages, File _file, List<Version> theVersions) {
76         app = _app;
77                 images = theImages;
78                 container = aContainer;
79                 file = _file;
80                 versions = theVersions;
81                 permTable.setText(0, 0, "Version");
82                 permTable.setText(0, 1, "Date");
83                 permTable.setText(0, 2, "");
84                 permTable.setText(0, 3, "");
85                 permTable.getFlexCellFormatter().setStyleName(0, 0, "props-toplabels");
86                 permTable.getFlexCellFormatter().setStyleName(0, 1, "props-toplabels");
87                 permTable.getFlexCellFormatter().setColSpan(0, 1, 2);
88                 permTable.getFlexCellFormatter().setHorizontalAlignment(0, 0, HasHorizontalAlignment.ALIGN_CENTER);
89                 permTable.getFlexCellFormatter().setHorizontalAlignment(0, 1, HasHorizontalAlignment.ALIGN_CENTER);
90                 permPanel.add(permTable);
91                 permPanel.addStyleName("pithos-TabPanelBottom");
92                 permTable.addStyleName("pithos-permList");
93                 initWidget(permPanel);
94                 showVersionsTable();
95         }
96
97         public void showVersionsTable(){
98                 DateTimeFormat formatter = DateTimeFormat.getFormat("d/M/yyyy h:mm a");
99                 int i = 1;
100                 for (final Version v : versions) {
101                         HTML restoreVersion = new HTML("<a href='#' class='hidden-link info'><span>" + AbstractImagePrototype.create(images.restore()).getHTML() + "</span><div>Restore this Version</div></a>");
102                         restoreVersion.addClickHandler(new ClickHandler() {
103                                 @Override
104                                 public void onClick(ClickEvent event) {
105                                         restoreVersion(v.getVersion());
106                                 }
107                         });
108
109                         permTable.setHTML(i, 0, "<span>" + v.getVersion() + "</span>");
110                         permTable.setHTML(i, 1, "<span>" + formatter.format(v.getDate()) + "</span>");
111                         HTML downloadHtml = new HTML("<a class='hidden-link info' href='#'><span>" + AbstractImagePrototype.create(images.download()).getHTML()+"</span><div>View this Version</div></a>");
112                         downloadHtml.addClickHandler(new ClickHandler() {
113                                 @Override
114                                 public void onClick(ClickEvent event) {
115                                         String fileUrl = app.getApiPath() + app.getUsername() + file.getUri() + "?X-Auth-Token=" + app.getToken() + "&version=" + v.getVersion();
116                                         Window.open(fileUrl, "_BLANK", "");
117                                 }
118                         });
119                         permTable.setWidget(i, 2, downloadHtml);
120                         permTable.setWidget(i, 3, restoreVersion);
121                         permTable.getFlexCellFormatter().setStyleName(i, 0, "props-labels");
122                         permTable.getFlexCellFormatter().setHorizontalAlignment(i, 0, HasHorizontalAlignment.ALIGN_CENTER);
123                         permTable.getFlexCellFormatter().setHorizontalAlignment(i, 1, HasHorizontalAlignment.ALIGN_CENTER);
124                         permTable.getFlexCellFormatter().setColSpan(i, 1, 2);
125                         i++;
126                 }
127         }
128
129         void restoreVersion(int version) {
130                 String path = file.getUri() + "?update=";
131                 PostRequest restoreVersion = new PostRequest(app.getApiPath(), file.getOwner(), path) {
132                         
133                         @Override
134                         public void onSuccess(Resource result) {
135                                 container.hide();
136                         }
137                         
138                         @Override
139                         public void onError(Throwable t) {
140                 if (t instanceof RestException) {
141                         if (((RestException) t).getHttpStatusCode() == Response.SC_NO_CONTENT)
142                                 onSuccess(null);
143                         else
144                                 app.displayError("Unable to restore version: " + ((RestException) t).getHttpStatusText());
145                 }
146                 else
147                     app.displayError("System error unable to restore versions: "+t.getMessage());
148                         }
149                 };
150                 restoreVersion.setHeader("X-Auth-Token", app.getToken());
151                 restoreVersion.setHeader("X-Source-Object", file.getUri());
152                 restoreVersion.setHeader("X-Source-Version", String.valueOf(version));
153                 restoreVersion.setHeader("Content-Range", "bytes 0-/*");
154                 Scheduler.get().scheduleDeferred(restoreVersion);
155         }
156 }