ff8d56a35376a83ad7c8e6a4847eb60626286063
[pithos-web-client] / src / gr / grnet / pithos / web / client / commands / RestoreTrashCommand.java
1 /*
2  * Copyright 2011-2012 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.commands;
36
37 import java.util.Iterator;
38 import java.util.List;
39
40 import gr.grnet.pithos.web.client.Const;
41 import gr.grnet.pithos.web.client.Pithos;
42 import gr.grnet.pithos.web.client.foldertree.File;
43 import gr.grnet.pithos.web.client.foldertree.Folder;
44 import gr.grnet.pithos.web.client.Resource;
45 import gr.grnet.pithos.web.client.rest.PutRequest;
46 import gr.grnet.pithos.web.client.rest.RestException;
47
48 import com.google.gwt.core.client.GWT;
49 import com.google.gwt.core.client.Scheduler;
50 import com.google.gwt.http.client.Response;
51 import com.google.gwt.http.client.URL;
52 import com.google.gwt.user.client.Command;
53 import com.google.gwt.user.client.ui.PopupPanel;
54
55
56 /**
57  *
58  * Restore trashed files and folders.
59  *
60  */
61 public class RestoreTrashCommand implements Command {
62         private PopupPanel containerPanel;
63         protected Pithos app;
64         protected Object resource;
65
66         public RestoreTrashCommand(Pithos _app, PopupPanel _containerPanel, Object _resource){
67                 containerPanel = _containerPanel;
68         app = _app;
69         resource = _resource;
70         }
71
72         @Override
73         public void execute() {
74         if (containerPanel != null)
75                 containerPanel.hide();
76         if (resource instanceof List) {
77             @SuppressWarnings("unchecked")
78                         Iterator<File> iter = ((List<File>) resource).iterator();
79             untrashFiles(iter, new Command() {
80                 @SuppressWarnings("unchecked")
81                                 @Override
82                 public void execute() {
83                     app.updateFolder(((List<File>) resource).get(0).getParent(), true, new Command() {
84                                                 
85                                                 @Override
86                                                 public void execute() {
87                                                         app.updateFolder(app.getAccount().getPithos(), false, null, true);
88                                                 }
89                                         }, true);
90                 }
91             });
92         }
93         else if (resource instanceof Folder) {
94             final Folder toBeUnTrashed = (Folder) resource;
95             untrashFolder(toBeUnTrashed, new Command() {
96                 @Override
97                 public void execute() {
98                     app.updateFolder(toBeUnTrashed.getParent(), true, new Command() {
99                                                 
100                                                 @Override
101                                                 public void execute() {
102                                                         app.updateFolder(app.getAccount().getPithos(), false, null, true);
103                                                 }
104                                         }, true);
105                 }
106             });
107
108         }
109         }
110
111     private void untrashFolder(final Folder f, final Command callback) {
112         String path = "/" + Const.HOME_CONTAINER + "/" + f.getPrefix();
113         app.copyFolder(f, app.getUserID(), path, true, callback);
114     }
115
116     protected void untrashFiles(final Iterator<File> iter, final Command callback) {
117         if (iter.hasNext()) {
118             File file = iter.next();
119             String path = "/" + Const.HOME_CONTAINER + "/" + file.getPath();
120             PutRequest untrashFile = new PutRequest(app, app.getApiPath(), app.getUserID(), path) {
121                 @Override
122                 public void onSuccess(Resource result) {
123                     untrashFiles(iter, callback);
124                 }
125
126                 @Override
127                 public void onError(Throwable t) {
128                     GWT.log("", t);
129                                         app.setError(t);
130                     if (t instanceof RestException) {
131                         app.displayError("Unable to copy file: " + ((RestException) t).getHttpStatusText());
132                     }
133                     else
134                         app.displayError("System error unable to copy file: "+t.getMessage());
135                 }
136
137                                 @Override
138                                 protected void onUnauthorized(Response response) {
139                                         app.sessionExpired();
140                                 }
141             };
142             untrashFile.setHeader("X-Auth-Token", app.getUserToken());
143             untrashFile.setHeader("X-Move-From", URL.encodePathSegment(file.getUri()));
144             untrashFile.setHeader("Content-Type", file.getContentType());
145             
146             Scheduler.get().scheduleDeferred(untrashFile);
147         }
148         else if (callback != null) {
149             callback.execute();
150         }
151     }
152
153     protected void untrashSubfolders(final Iterator<Folder> iter, final Command callback) {
154         if (iter.hasNext()) {
155             final Folder f = iter.next();
156             untrashFolder(f, new Command() {
157                                 
158                                 @Override
159                                 public void execute() {
160                                         untrashSubfolders(iter, callback);
161                                 }
162                         });
163         }
164         else  {
165                 if (callback != null)
166                         callback.execute();
167         }
168     }
169 }