Preliminary impl of others shared
[pithos] / web_client / src / gr / grnet / pithos / web / client / foldertree / Resource.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
36 package gr.grnet.pithos.web.client.foldertree;
37
38 import com.google.gwt.http.client.Response;
39 import com.google.gwt.i18n.client.DateTimeFormat;
40 import com.google.gwt.json.client.JSONNumber;
41 import com.google.gwt.json.client.JSONObject;
42 import com.google.gwt.json.client.JSONString;
43
44 import gr.grnet.pithos.web.client.SharingUsers;
45
46 import java.util.Date;
47
48 public class Resource {
49
50     protected static String unmarshallString(JSONObject obj, String key){
51         if(obj.get(key) != null) {
52             JSONString s = obj.get(key).isString();
53             if(s != null)
54                 return s.stringValue();
55         }
56         return null;
57     }
58
59     protected static int unmarshallInt(JSONObject obj, String key){
60         if(obj.get(key) != null)
61             if(obj.get(key).isNumber() != null)
62                 return (int) obj.get(key).isNumber().getValue();
63         return -1;
64     }
65
66     protected static long unmarshallLong(JSONObject obj, String key){
67         if(obj.get(key) != null) {
68             JSONNumber value = obj.get(key).isNumber();
69             if(value != null)
70                 return (long) value.doubleValue();
71         }
72         return -1;
73     }
74
75     protected static boolean unmarshallBoolean(JSONObject obj, String key){
76         if(obj.get(key) != null)
77             if(obj.get(key).isBoolean() != null)
78                 return obj.get(key).isBoolean().booleanValue();
79         return false;
80     }
81
82     protected static Date unmarshallDate(JSONObject obj, String key){
83         if(obj.get(key) != null) {
84             JSONString s = obj.get(key).isString();
85             if (s != null)
86                 return DateTimeFormat.getFormat("yyyy-MM-dd'T'HH:mm:ss").parse(s.stringValue());
87         }
88         return null;
89     }
90
91     public static native String getDate(Long ms)/*-{
92         return (new Date(ms)).toUTCString();
93     }-*/;
94
95     public static <T> T createFromResponse(Class<T> aClass, String owner, Response response, T result) {
96         if (aClass.equals(AccountResource.class)) {
97             result = (T) AccountResource.createFromResponse(owner, response);
98         }
99         else if (aClass.equals(Folder.class)) {
100             result = (T) Folder.createFromResponse(owner, response, (Folder) result);
101         }
102         else if (aClass.equals(File.class)) {
103             result = (T) File.createFromResponse(owner, response, (File) result);
104         }
105         else if (aClass.equals(SharingUsers.class)) {
106                 result = (T) SharingUsers.createFromResponse(response, (SharingUsers) result);
107         }
108         return result;
109     }
110 }