Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / commands / ToTrashCommand.java @ 3f8622d4

History | View | Annotate | Download (8.9 kB)

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 gr.grnet.pithos.web.client.Pithos;
38
import gr.grnet.pithos.web.client.foldertree.File;
39
import gr.grnet.pithos.web.client.foldertree.Folder;
40
import gr.grnet.pithos.web.client.foldertree.Resource;
41
import gr.grnet.pithos.web.client.rest.DeleteRequest;
42
import gr.grnet.pithos.web.client.rest.GetRequest;
43
import gr.grnet.pithos.web.client.rest.PutRequest;
44
import gr.grnet.pithos.web.client.rest.RestException;
45

    
46
import java.util.Iterator;
47
import java.util.List;
48

    
49
import com.google.gwt.core.client.GWT;
50
import com.google.gwt.core.client.Scheduler;
51
import com.google.gwt.http.client.Response;
52
import com.google.gwt.http.client.URL;
53
import com.google.gwt.user.client.Command;
54
import com.google.gwt.user.client.ui.PopupPanel;
55

    
56
/**
57
 *
58
 * Move file or folder to trash.
59
 *
60
 *
61
 */
62
public class ToTrashCommand implements Command{
63
        private PopupPanel containerPanel;
64
        protected Pithos app;
65
        protected Object resource;
66

    
67
        public ToTrashCommand(Pithos _app, PopupPanel _containerPanel, Object _resource){
68
                containerPanel = _containerPanel;
69
        app = _app;
70
        resource = _resource;
71
        }
72

    
73
        @Override
74
        public void execute() {
75
        if (containerPanel != null)
76
                    containerPanel.hide();
77
        if (resource instanceof List) {
78
            @SuppressWarnings("unchecked")
79
                        Iterator<File> iter = ((List<File>) resource).iterator();
80
            trashFiles(iter, new Command() {
81
                @SuppressWarnings("unchecked")
82
                                @Override
83
                public void execute() {
84
                    app.updateFolder(((List<File>) resource).get(0).getParent(), true, null);
85
                }
86
            });
87
        }
88
        else if (resource instanceof Folder) {
89
            final Folder toBeTrashed = (Folder) resource;
90
            trashFolder(toBeTrashed, new Command() {
91
                @Override
92
                public void execute() {
93
                    app.updateFolder(toBeTrashed.getParent(), true, null);
94
                }
95
            });
96

    
97
        }
98
        }
99

    
100
    private void trashFolder(final Folder f, final Command callback) {
101
        String path = "/" + Pithos.TRASH_CONTAINER + "/" + f.getPrefix();
102
        PutRequest createFolder = new PutRequest(app.getApiPath(), app.getUsername(), path) {
103
            @Override
104
            public void onSuccess(@SuppressWarnings("unused") Resource result) {
105
                    GetRequest<Folder> getFolder = new GetRequest<Folder>(Folder.class, app.getApiPath(), f.getOwner(), "/" + f.getContainer() + "?format=json&delimiter=/&prefix=" + URL.encodeQueryString(f.getPrefix()), f) {
106

    
107
                                        @Override
108
                                        public void onSuccess(final Folder _f) {
109
                                            Iterator<File> iter = _f.getFiles().iterator();
110
                                            trashFiles(iter, new Command() {
111
                                                @Override
112
                                                public void execute() {
113
                                                    Iterator<Folder> iterf = _f.getSubfolders().iterator();
114
                                                    trashSubfolders(iterf, new Command() {
115
                                                                        
116
                                                                        @Override
117
                                                                        public void execute() {
118
                                                                                DeleteRequest deleteFolder = new DeleteRequest(app.getApiPath(), _f.getOwner(), _f.getUri()) {
119
                                                                                        
120
                                                                                        @Override
121
                                                                                        public void onSuccess(@SuppressWarnings("unused") Resource _result) {
122
                                                                                                if (callback != null)
123
                                                                                                        callback.execute();
124
                                                                                        }
125
                                                                                        
126
                                                                                        @Override
127
                                                                                        public void onError(Throwable t) {
128
                                                                            GWT.log("", t);
129
                                                                                                app.setError(t);
130
                                                                            if (t instanceof RestException) {
131
                                                                                    if (((RestException) t).getHttpStatusCode() == Response.SC_NOT_FOUND)
132
                                                                                            onSuccess(null);
133
                                                                                    else
134
                                                                                            app.displayError("Unable to delete folder: " + ((RestException) t).getHttpStatusText());
135
                                                                            }
136
                                                                            else
137
                                                                                app.displayError("System error unable to delete folder: "+t.getMessage());
138
                                                                                        }
139

    
140
                                                                                        @Override
141
                                                                                        protected void onUnauthorized(Response response) {
142
                                                                                                app.sessionExpired();
143
                                                                                        }
144
                                                                                };
145
                                                                                deleteFolder.setHeader("X-Auth-Token", app.getToken());
146
                                                                                Scheduler.get().scheduleDeferred(deleteFolder);
147
                                                                        }
148
                                                                });
149
                                                }
150
                                            });
151
                                        }
152

    
153
                                        @Override
154
                                        public void onError(Throwable t) {
155
                                GWT.log("", t);
156
                                                app.setError(t);
157
                                if (t instanceof RestException) {
158
                                    app.displayError("Unable to get folder: " + ((RestException) t).getHttpStatusText());
159
                                }
160
                                else
161
                                    app.displayError("System error getting folder: " + t.getMessage());
162
                                        }
163

    
164
                                        @Override
165
                                        protected void onUnauthorized(Response response) {
166
                                                app.sessionExpired();
167
                                        }
168
                                };
169
                                getFolder.setHeader("X-Auth-Token", app.getToken());
170
                                Scheduler.get().scheduleDeferred(getFolder);
171
            }
172

    
173
            @Override
174
            public void onError(Throwable t) {
175
                GWT.log("", t);
176
                                app.setError(t);
177
                if (t instanceof RestException) {
178
                    app.displayError("Unable to create folder:" + ((RestException) t).getHttpStatusText());
179
                }
180
                else
181
                    app.displayError("System error creating folder:" + t.getMessage());
182
            }
183

    
184
                        @Override
185
                        protected void onUnauthorized(Response response) {
186
                                app.sessionExpired();
187
                        }
188
        };
189
        createFolder.setHeader("X-Auth-Token", app.getToken());
190
        createFolder.setHeader("Accept", "*/*");
191
        createFolder.setHeader("Content-Length", "0");
192
        createFolder.setHeader("Content-Type", "application/folder");
193
        Scheduler.get().scheduleDeferred(createFolder);
194
    }
195

    
196

    
197
    
198
    protected void trashFiles(final Iterator<File> iter, final Command callback) {
199
        if (iter.hasNext()) {
200
            File file = iter.next();
201
            String path = "/" + Pithos.TRASH_CONTAINER + "/" + file.getPath();
202
            PutRequest trashFile = new PutRequest(app.getApiPath(), app.getUsername(), path) {
203
                @Override
204
                public void onSuccess(@SuppressWarnings("unused") Resource result) {
205
                    trashFiles(iter, callback);
206
                }
207

    
208
                @Override
209
                public void onError(Throwable t) {
210
                    GWT.log("", t);
211
                                        app.setError(t);
212
                    if (t instanceof RestException) {
213
                        app.displayError("Unable to copy file: " + ((RestException) t).getHttpStatusText());
214
                    }
215
                    else
216
                        app.displayError("System error unable to copy file: "+t.getMessage());
217
                }
218

    
219
                                @Override
220
                                protected void onUnauthorized(Response response) {
221
                                        app.sessionExpired();
222
                                }
223
            };
224
            trashFile.setHeader("X-Auth-Token", app.getToken());
225
            trashFile.setHeader("X-Move-From", URL.encodePathSegment(file.getUri()));
226
            Scheduler.get().scheduleDeferred(trashFile);
227
        }
228
        else if (callback != null) {
229
            callback.execute();
230
        }
231
    }
232

    
233
    protected void trashSubfolders(final Iterator<Folder> iter, final Command callback) {
234
        if (iter.hasNext()) {
235
            final Folder f = iter.next();
236
            trashFolder(f, new Command() {
237
                                
238
                                @Override
239
                                public void execute() {
240
                                        trashSubfolders(iter, callback);
241
                                }
242
                        });
243
        }
244
        else  {
245
                app.updateTrash(false, callback);
246
        }
247
    }
248
}