Statistics
| Branch: | Tag: | Revision:

root / src / gr / ebs / gss / client / VersionsList.java @ 8086761e

History | View | Annotate | Download (7.7 kB)

1
/*
2
 * Copyright 2008, 2009 Electronic Business Systems Ltd.
3
 *
4
 * This file is part of GSS.
5
 *
6
 * GSS is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * GSS is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18
 */
19
package gr.ebs.gss.client;
20

    
21
import gr.ebs.gss.client.FilePropertiesDialog.Images;
22
import gr.ebs.gss.client.rest.DeleteCommand;
23
import gr.ebs.gss.client.rest.PostCommand;
24
import gr.ebs.gss.client.rest.RestCommand;
25
import gr.ebs.gss.client.rest.RestException;
26
import gr.ebs.gss.client.rest.resource.FileResource;
27

    
28
import java.util.Collections;
29
import java.util.Comparator;
30
import java.util.Date;
31
import java.util.List;
32

    
33
import com.google.gwt.core.client.GWT;
34
import com.google.gwt.event.dom.client.ClickEvent;
35
import com.google.gwt.event.dom.client.ClickHandler;
36
import com.google.gwt.http.client.URL;
37
import com.google.gwt.i18n.client.DateTimeFormat;
38
import com.google.gwt.user.client.DeferredCommand;
39
import com.google.gwt.user.client.Window;
40
import com.google.gwt.user.client.ui.AbstractImagePrototype;
41
import com.google.gwt.user.client.ui.Composite;
42
import com.google.gwt.user.client.ui.FlexTable;
43
import com.google.gwt.user.client.ui.HTML;
44
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
45
import com.google.gwt.user.client.ui.VerticalPanel;
46

    
47
/**
48
 * @author kman
49
 */
50
public class VersionsList extends Composite {
51

    
52
        int selectedRow = -1;
53

    
54
        int permissionCount = -1;
55

    
56
        List<FileResource> versions = null;
57

    
58
        final Images images;
59

    
60
        final VerticalPanel permPanel = new VerticalPanel();
61

    
62
        final FlexTable permTable = new FlexTable();
63

    
64
        FileResource toRemove = null;
65

    
66
        FilePropertiesDialog container;
67

    
68
        public VersionsList(FilePropertiesDialog aContainer, final Images theImages, List<FileResource> theVersions) {
69
                images = theImages;
70
                container = aContainer;
71
                versions = theVersions;
72
                Collections.sort(theVersions, new Comparator<FileResource>(){
73

    
74
                        @Override
75
                        public int compare(FileResource o1, FileResource o2) {
76
                                return o1.getVersion().compareTo(o2.getVersion());
77
                        }
78

    
79
                });
80
                permTable.setText(0, 0, "Version");
81
                permTable.setText(0, 1, "Created");
82
                permTable.setText(0, 2, "Modified");
83
                permTable.setText(0, 3, "Size");
84
                permTable.setText(0, 4, "");
85
                permTable.setText(0, 5, "");
86
                permTable.getFlexCellFormatter().setStyleName(0, 0, "props-toplabels");
87
                permTable.getFlexCellFormatter().setStyleName(0, 1, "props-toplabels");
88
                permTable.getFlexCellFormatter().setStyleName(0, 2, "props-toplabels");
89
                permTable.getFlexCellFormatter().setStyleName(0, 3, "props-toplabels");
90
                permTable.getFlexCellFormatter().setColSpan(0, 1, 2);
91
                permTable.getFlexCellFormatter().setHorizontalAlignment(0, 0, HasHorizontalAlignment.ALIGN_CENTER);
92
                permTable.getFlexCellFormatter().setHorizontalAlignment(0, 1, HasHorizontalAlignment.ALIGN_CENTER);
93
                permTable.getFlexCellFormatter().setHorizontalAlignment(0, 2, HasHorizontalAlignment.ALIGN_CENTER);
94
                permTable.getFlexCellFormatter().setHorizontalAlignment(0, 3, HasHorizontalAlignment.ALIGN_CENTER);
95
                permPanel.add(permTable);
96
                permPanel.addStyleName("gss-TabPanelBottom");
97
                permTable.addStyleName("gss-permList");
98
                initWidget(permPanel);
99
                updateTable();
100
        }
101

    
102
        public void updateTable() {
103
                int i = 1;
104
                if (toRemove != null) {
105
                        versions.remove(toRemove);
106
                        toRemove = null;
107
                }
108
                for (final FileResource dto : versions) {
109
                        HTML restoreVersion = new HTML("<a href='#' class='hidden-link info'><span>"+AbstractImagePrototype.create(images.restore()).getHTML()+"</span><div>Restore this Version</div></a>");
110
                        restoreVersion.addClickHandler(new ClickHandler() {
111
                                @Override
112
                                public void onClick(ClickEvent event) {
113
                                        restoreVersion(dto);
114
                                }
115
                        });
116

    
117
                        permTable.setHTML(i, 0, "<span>" + dto.getVersion() + "</span>");
118
                        permTable.setHTML(i, 1, "<span>" + formatDate(dto.getCreationDate()) + " by " + GSS.get().getUserFullName(dto.getCreatedBy()) + "</span>");
119
                        permTable.setHTML(i, 2, "<span>" + formatDate(dto.getModificationDate()) + " by " + GSS.get().getUserFullName(dto.getModifiedBy()) + "</span>");
120
                        permTable.setHTML(i, 3, "<span>" + dto.getFileSizeAsString() + "</span>");
121
                        HTML downloadHtml = new HTML("<a class='hidden-link info' href='#'><span>"+AbstractImagePrototype.create(images.download()).getHTML()+"</span><div>View this Version</div></a>");
122
                        downloadHtml.addClickHandler(new ClickHandler() {
123
                                @Override
124
                                public void onClick(ClickEvent event) {
125
                                        GSS app = GSS.get();
126
                                        String dateString = RestCommand.getDate();
127
                                        String resource = dto.getUri().substring(app.getApiPath().length()-1, dto.getUri().length());
128
                                        String sig = app.getCurrentUserResource().getUsername()+" "+RestCommand.calculateSig("GET", dateString, resource, RestCommand.base64decode(app.getToken()));
129
                                        String fileUrl = dto.getUri() + "?version=" + dto.getVersion() + "&Authorization=" + URL.encodeComponent(sig) + "&Date="+URL.encodeComponent(dateString);
130
                                        Window.open(fileUrl, "_BLANK", "");
131
                                }
132
                        });
133
                        permTable.setWidget(i, 4, downloadHtml);
134
                        permTable.setWidget(i, 5, restoreVersion);
135
                        permTable.getFlexCellFormatter().setStyleName(i, 0, "props-labels");
136
                        permTable.getFlexCellFormatter().setHorizontalAlignment(i, 0, HasHorizontalAlignment.ALIGN_CENTER);
137
                        permTable.getFlexCellFormatter().setHorizontalAlignment(i, 1, HasHorizontalAlignment.ALIGN_CENTER);
138
                        permTable.getFlexCellFormatter().setColSpan(i, 1, 2);
139
                        permTable.getFlexCellFormatter().setHorizontalAlignment(i, 2, HasHorizontalAlignment.ALIGN_CENTER);
140
                        permTable.getFlexCellFormatter().setHorizontalAlignment(i, 3, HasHorizontalAlignment.ALIGN_CENTER);
141
                        i++;
142
                }
143
                for (; i < permTable.getRowCount(); i++)
144
                        permTable.removeRow(i);
145
        }
146

    
147

    
148
        void removeVersion(final FileResource version) {
149
                DeleteCommand df = new DeleteCommand(version.getUri()){
150

    
151
                        @Override
152
                        public void onComplete() {
153
                                toRemove = version;
154
                                updateTable();
155
                                GSS.get().getFileList().updateFileCache(false, true /*clear selection*/);
156
                        }
157

    
158
                        @Override
159
                        public void onError(Throwable t) {
160
                                GWT.log("", t);
161
                                if(t instanceof RestException){
162
                                        int statusCode = ((RestException)t).getHttpStatusCode();
163
                                        if(statusCode == 405)
164
                                                GSS.get().displayError("You don't have the necessary permissions");
165
                                        else if(statusCode == 404)
166
                                                GSS.get().displayError("Versions does not exist");
167
                                        else
168
                                                GSS.get().displayError("Unable to remove version:"+((RestException)t).getHttpStatusText());
169
                                }
170
                                else
171
                                        GSS.get().displayError("System error removing version:"+t.getMessage());
172
                        }
173
                };
174
                DeferredCommand.addCommand(df);
175

    
176
        }
177

    
178
        void restoreVersion(final FileResource version) {
179
                FileResource selectedFile = (FileResource) GSS.get().getCurrentSelection();
180
                PostCommand ep = new PostCommand(selectedFile.getUri()+"?restoreVersion="+version.getVersion(),"",200){
181

    
182

    
183
                        @Override
184
                        public void onComplete() {
185
                                container.hide();
186
                GSS.get().getFileList().updateFileCache(true, true /*clear selection*/);
187
                        }
188

    
189
                        @Override
190
                        public void onError(Throwable t) {
191
                                GWT.log("", t);
192
                                if(t instanceof RestException)
193
                                        GSS.get().displayError("Unable to restore version:"+((RestException)t).getHttpStatusText());
194
                                else
195
                                        GSS.get().displayError("System error restoring version:"+t.getMessage());
196
                        }
197

    
198
                };
199
                DeferredCommand.addCommand(ep);
200
        }
201

    
202
        private String formatDate(Date date){
203
                DateTimeFormat format = DateTimeFormat.getFormat("dd/MM/yyyy : HH:mm");
204
                return format.format(date);
205
        }
206

    
207
}