463 |
jp_milcent |
1 |
package org.tela_botanica.client.modeles;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.RegistreId;
|
|
|
4 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
5 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
|
|
6 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
7 |
|
|
|
8 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
9 |
import com.google.gwt.core.client.GWT;
|
|
|
10 |
import com.google.gwt.http.client.RequestBuilder;
|
|
|
11 |
import com.google.gwt.json.client.JSONArray;
|
|
|
12 |
import com.google.gwt.json.client.JSONObject;
|
|
|
13 |
import com.google.gwt.json.client.JSONValue;
|
|
|
14 |
|
|
|
15 |
public class CollectionAsyncDao {
|
|
|
16 |
|
|
|
17 |
public static final String SERVICE_NOM = "CoelCollection";
|
|
|
18 |
|
|
|
19 |
public void selectionner(final Rafraichissable vueARafraichir, final String projetId, final String collectionId) {
|
|
|
20 |
// Ajout des paramètres et données à selectionner dans l'URL
|
|
|
21 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
|
|
22 |
SERVICE_NOM + "/" +
|
|
|
23 |
(projetId == null ? "*" : projetId) + "/" +
|
|
|
24 |
(collectionId == null ? "*" : collectionId) + "/" +
|
|
|
25 |
"";
|
|
|
26 |
|
|
|
27 |
JsonRestRequestBuilder rb = new JsonRestRequestBuilder(RequestBuilder.GET, url);
|
|
|
28 |
|
|
|
29 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
468 |
jp_milcent |
30 |
@Override
|
463 |
jp_milcent |
31 |
public void surReponse(JSONValue responseValue) {
|
|
|
32 |
if (responseValue != null) {
|
|
|
33 |
// Si la requête est un succès, reception d'un objet ou d'un tableau
|
|
|
34 |
if (responseValue.isObject() != null) {
|
|
|
35 |
final JSONObject reponse = responseValue.isObject();
|
|
|
36 |
Collection collection = new Collection(reponse);
|
|
|
37 |
CollectionBotanique collectionBotanique = new CollectionBotanique(reponse);
|
|
|
38 |
|
|
|
39 |
Information info = new Information("selection_collection");
|
|
|
40 |
info.setDonnee(0, collection);
|
|
|
41 |
info.setDonnee(1, collectionBotanique);
|
|
|
42 |
vueARafraichir.rafraichir(info);
|
|
|
43 |
} else if (responseValue.isArray() != null) {
|
|
|
44 |
final JSONArray reponse = responseValue.isArray();
|
|
|
45 |
CollectionListe collections = new CollectionListe(reponse);
|
|
|
46 |
vueARafraichir.rafraichir(collections);
|
|
|
47 |
} else {
|
|
|
48 |
GWT.log(url+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
49 |
}
|
|
|
50 |
} else {
|
|
|
51 |
// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
52 |
if (collectionId == null) {
|
|
|
53 |
CollectionListe collections = new CollectionListe(0);
|
|
|
54 |
vueARafraichir.rafraichir(collections);
|
|
|
55 |
}
|
|
|
56 |
}
|
|
|
57 |
}
|
|
|
58 |
});
|
|
|
59 |
}
|
|
|
60 |
}
|