4ab620016fdafc6969a3491726cd4fbb6af708d8
[pithos] / web_client / src / gr / grnet / pithos / web / client / commands / ToTrashCommand.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.commands;
36
37 import com.google.gwt.core.client.Scheduler;
38 import gr.grnet.pithos.web.client.Pithos;
39 import gr.grnet.pithos.web.client.foldertree.File;
40 import gr.grnet.pithos.web.client.foldertree.Folder;
41 import gr.grnet.pithos.web.client.foldertree.Resource;
42 import gr.grnet.pithos.web.client.rest.PostRequest;
43 import gr.grnet.pithos.web.client.rest.RestException;
44
45 import java.util.Iterator;
46 import java.util.List;
47
48
49 import com.google.gwt.core.client.GWT;
50 import com.google.gwt.user.client.Command;
51 import com.google.gwt.user.client.ui.PopupPanel;
52
53 /**
54  *
55  * Move file or folder to trash.
56  *
57  *
58  */
59 public class ToTrashCommand implements Command{
60         private PopupPanel containerPanel;
61     private Pithos app;
62     private Object resource;
63
64         public ToTrashCommand(Pithos _app, PopupPanel _containerPanel, Object _resource){
65                 containerPanel = _containerPanel;
66         app = _app;
67         resource = _resource;
68         }
69
70         @Override
71         public void execute() {
72         if (containerPanel != null)
73                 containerPanel.hide();
74         if (resource instanceof List) {
75             Iterator<File> iter = ((List<File>) resource).iterator();
76             trashFiles(iter, new Command() {
77                 @Override
78                 public void execute() {
79                     app.get().updateFolder(((List<File>) resource).get(0).getParent());
80                 }
81             });
82         }
83         else if (resource instanceof Folder) {
84             final Folder toBeTrashed = (Folder) resource;
85             trashFolder(toBeTrashed, new Command() {
86                 @Override
87                 public void execute() {
88                     app.updateFolder(toBeTrashed.getParent());
89                 }
90             });
91
92         }
93         }
94
95     private void trashFolder(final Folder f, final Command callback) {
96         String path = f.getUri() + "?update=";
97         PostRequest trashFolder = new PostRequest(app.getApiPath(), app.getUsername(), path) {
98             @Override
99             public void onSuccess(Resource result) {
100                 Iterator<File> iter = f.getFiles().iterator();
101                 trashFiles(iter, new Command() {
102                     @Override
103                     public void execute() {
104                         Iterator<Folder> iterf = f.getSubfolders().iterator();
105                         trashSubfolders(iterf, new Command() {
106                             @Override
107                             public void execute() {
108                                 callback.execute();
109                             }
110                         });
111                     }
112                 });
113             }
114
115             @Override
116             public void onError(Throwable t) {
117                 GWT.log("", t);
118                 if (t instanceof RestException) {
119                     app.displayError("Unable to create folder:" + ((RestException) t).getHttpStatusText());
120                 }
121                 else
122                     app.displayError("System error creating folder:" + t.getMessage());
123             }
124         };
125         trashFolder.setHeader("X-Auth-Token", app.getToken());
126         trashFolder.setHeader("X-Object-Meta-Trash", "true");
127         Scheduler.get().scheduleDeferred(trashFolder);
128     }
129
130     private void trashFiles(final Iterator<File> iter, final Command callback) {
131         if (iter.hasNext()) {
132             File file = iter.next();
133             String path = file.getUri() + "?update=";
134             PostRequest trashFile = new PostRequest(app.getApiPath(), app.getUsername(), path) {
135                 @Override
136                 public void onSuccess(Resource result) {
137                     trashFiles(iter, callback);
138                 }
139
140                 @Override
141                 public void onError(Throwable t) {
142                     GWT.log("", t);
143                     if (t instanceof RestException) {
144                         Pithos.get().displayError("Unable to copy file: " + ((RestException) t).getHttpStatusText());
145                     }
146                     else
147                         Pithos.get().displayError("System error unable to copy file: "+t.getMessage());
148                 }
149             };
150             trashFile.setHeader("X-Auth-Token", app.getToken());
151             trashFile.setHeader("X-Object-Meta-Trash", "true");
152             Scheduler.get().scheduleDeferred(trashFile);
153         }
154         else  if (callback != null) {
155             callback.execute();
156         }
157     }
158
159     private void trashSubfolders(final Iterator<Folder> iter, final Command callback) {
160         if (iter.hasNext()) {
161             final Folder f = iter.next();
162             trashFolder(f, callback);
163         }
164         else  if (callback != null) {
165             callback.execute();
166         }
167     }
168 }