Statistics
| Branch: | Tag: | Revision:

root / web_client / src / gr / grnet / pithos / web / client / commands / PasteCommand.java @ 6b4a2499

History | View | Annotate | Download (5.4 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 com.google.gwt.core.client.Scheduler;
38
import gr.grnet.pithos.web.client.Clipboard;
39
import gr.grnet.pithos.web.client.GSS;
40
import gr.grnet.pithos.web.client.foldertree.File;
41
import gr.grnet.pithos.web.client.foldertree.Folder;
42
import gr.grnet.pithos.web.client.foldertree.Resource;
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.user.client.Command;
51
import com.google.gwt.user.client.ui.PopupPanel;
52

    
53
public class PasteCommand implements Command {
54

    
55
    private GSS app;
56
        private PopupPanel containerPanel;
57
    private Folder folder;
58

    
59
        public PasteCommand(GSS _app, PopupPanel _containerPanel, Folder _folder) {
60
        app = _app;
61
                containerPanel = _containerPanel;
62
        folder = _folder;
63
        }
64

    
65
        @Override
66
        public void execute() {
67
                containerPanel.hide();
68
        Object clipboardItem = app.getClipboard().getItem();
69
        if (clipboardItem == null)
70
            return;
71
        int operation = app.getClipboard().getOperation();
72
        if (clipboardItem instanceof Folder) {
73
            if (operation == Clipboard.COPY) {
74

    
75
            }
76
            else {
77

    
78
            }
79
        }
80
        else {
81
            List<File> tobeCopied = (List<File>) clipboardItem;
82
            Iterator<File> iter = tobeCopied.iterator();
83
            if (operation == Clipboard.COPY) {
84
                copyFiles(iter);
85
            }
86
            else {
87
                moveFiles(iter);
88
            }
89
        }
90
        }
91

    
92
    private void moveFiles(final Iterator<File> iter) {
93
        if (iter.hasNext()) {
94
            File file = iter.next();
95
            String path = app.getApiPath() + app.getUsername() + folder.getUri() + "/" + file.getName();
96
            PutRequest copyFile = new PutRequest(path) {
97
                @Override
98
                public void onSuccess(Resource result) {
99
                    moveFiles(iter);
100
                }
101

    
102
                @Override
103
                public void onError(Throwable t) {
104
                    GWT.log("", t);
105
                    if (t instanceof RestException) {
106
                        GSS.get().displayError("Unable to copy file: " + ((RestException) t).getHttpStatusText());
107
                    }
108
                    else
109
                        GSS.get().displayError("System error unable to copy file: "+t.getMessage());
110
                }
111
            };
112
            copyFile.setHeader("X-Auth-Token", app.getToken());
113
            copyFile.setHeader("X-Move-From", file.getUri());
114
            Scheduler.get().scheduleDeferred(copyFile);
115
        }
116
        else {
117
            app.getClipboard().clear();
118
            app.updateFolder(folder);
119
        }
120
    }
121

    
122
    private void copyFiles(final Iterator<File> iter) {
123
        if (iter.hasNext()) {
124
            File file = iter.next();
125
            String path = app.getApiPath() + app.getUsername() + folder.getUri() + "/" + file.getName();
126
            PutRequest copyFile = new PutRequest(path) {
127
                @Override
128
                public void onSuccess(Resource result) {
129
                    copyFiles(iter);
130
                }
131

    
132
                @Override
133
                public void onError(Throwable t) {
134
                    GWT.log("", t);
135
                    if (t instanceof RestException) {
136
                        GSS.get().displayError("Unable to copy file: " + ((RestException) t).getHttpStatusText());
137
                    }
138
                    else
139
                        GSS.get().displayError("System error unable to copy file: "+t.getMessage());
140
                }
141
            };
142
            copyFile.setHeader("X-Auth-Token", app.getToken());
143
            copyFile.setHeader("X-Copy-From", file.getUri());
144
            Scheduler.get().scheduleDeferred(copyFile);
145
        }
146
        else {
147
            app.getClipboard().clear();
148
            app.updateFolder(folder);
149
        }
150
    }
151
}