Fix url encoding in requests. Fix for avoiding the browser 's cache
[pithos-web-client] / src / gr / grnet / pithos / web / client / rest / GetRequest.java
index 4ae9e21..990d781 100644 (file)
 /*
- * Copyright (c) 2011 Greek Research and Technology Network
+ * Copyright 2011 GRNET S.A. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or
+ * without modification, are permitted provided that the following
+ * conditions are met:
+ *
+ *   1. Redistributions of source code must retain the above
+ *      copyright notice, this list of conditions and the following
+ *      disclaimer.
+ *
+ *   2. Redistributions in binary form must reproduce the above
+ *      copyright notice, this list of conditions and the following
+ *      disclaimer in the documentation and/or other materials
+ *      provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and
+ * documentation are those of the authors and should not be
+ * interpreted as representing official policies, either expressed
+ * or implied, of GRNET S.A.
  */
 
 package gr.grnet.pithos.web.client.rest;
 
+import gr.grnet.pithos.web.client.foldertree.Resource;
+
+import java.util.HashMap;
+import java.util.Map;
+
 import com.google.gwt.core.client.GWT;
 import com.google.gwt.core.client.Scheduler.ScheduledCommand;
 import com.google.gwt.http.client.Request;
 import com.google.gwt.http.client.RequestBuilder;
 import com.google.gwt.http.client.RequestException;
 import com.google.gwt.http.client.Response;
-import gr.grnet.pithos.web.client.foldertree.Resource;
-import java.util.HashMap;
-import java.util.Map;
+import com.google.gwt.http.client.URL;
+import com.google.gwt.i18n.client.DateTimeFormat;
+import com.google.gwt.i18n.client.DateTimeFormat.PredefinedFormat;
 
 public abstract class GetRequest<T extends Resource> implements ScheduledCommand {
 
-    private Class<T> aClass;
+       protected Class<T> aClass;
 
+    private String api;
+
+    protected String owner;
+    
     private String path;
 
     private int okCode;
     
-    private String username;
-
-    private T cached;
+    protected T result;
 
     private Map<String, String> headers = new HashMap<String, String>();
 
-    public abstract void onSuccess(T result);
+    public abstract void onSuccess(T _result);
 
     public abstract void onError(Throwable t);
 
-    public GetRequest(Class<T> aClass, String path, int okCode) {
+    public GetRequest(Class<T> aClass, String api, String owner, String path, int okCode, T result) {
         this.aClass = aClass;
+        this.api = api;
+        this.owner = owner;
         this.path = path;
         this.okCode = okCode;
+        this.result = result;
+    }
+
+    public GetRequest(Class<T> aClass, String api, String owner, String path) {
+        this(aClass, api, owner, path, -1, null);
     }
 
-    public GetRequest(Class<T> aClass, String path) {
-        this(aClass, path, -1);
+    public GetRequest(Class<T> aClass, String api, String owner, String path, T result) {
+        this(aClass, api, owner, path, -1, result);
     }
 
     @Override
     public void execute() {
-        RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, path);
-        for (String header : headers.keySet())
+       if (path.contains("?"))
+               path += "&t=" + System.currentTimeMillis();
+       else
+               path += "?t=" + System.currentTimeMillis();
+        RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, api + owner + path);
+        for (String header : headers.keySet()) {
             builder.setHeader(header, headers.get(header));
+        }
         try {
-            builder.sendRequest("", new RestRequestCallback<T>(path, okCode) {
+            builder.sendRequest("", new RestRequestCallback<T>(api + owner + path, okCode) {
                 @Override
                 public void onSuccess(T object) {
                     GetRequest.this.onSuccess(object);
@@ -56,27 +106,34 @@ public abstract class GetRequest<T extends Resource> implements ScheduledCommand
 
                 @Override
                 public T deserialize(Response response) {
-                    return Resource.createFromResponse(aClass, response);
+                    return Resource.createFromResponse(aClass, owner, response, result);
                 }
 
                 @Override
-                public void onError(Request request, Throwable throwable) {
+                public void onError(@SuppressWarnings("unused") Request request, Throwable throwable) {
                     if (throwable instanceof RestException) {
-                        if (((RestException) throwable).getHttpStatusCode() == 304 && cached != null){
-                            GWT.log("Using cache: " + cached.getUri(), null);
-                            onSuccess(cached);
+                        if (((RestException) throwable).getHttpStatusCode() == 304 && result != null){
+                            GWT.log("Using cache: " + result.toString(), null);
+                            onSuccess(result);
                             return;
                         }
                     }
                     GetRequest.this.onError(throwable);
                 }
+
+                               @Override
+                               public void onUnauthorized(Response response) {
+                    GetRequest.this.onUnauthorized(response);
+                               }
             });
         }
         catch (RequestException e) {
         }
     }
 
-    public void setHeader(String header, String value) {
+    protected abstract void onUnauthorized(Response response);
+
+       public void setHeader(String header, String value) {
         headers.put(header, value);
     }
 }