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;
|
643 |
jp_milcent |
13 |
import com.google.gwt.json.client.JSONParser;
|
463 |
jp_milcent |
14 |
import com.google.gwt.json.client.JSONValue;
|
|
|
15 |
|
|
|
16 |
public class CollectionAsyncDao {
|
|
|
17 |
|
|
|
18 |
public static final String SERVICE_NOM = "CoelCollection";
|
|
|
19 |
|
|
|
20 |
public void selectionner(final Rafraichissable vueARafraichir, final String projetId, final String collectionId) {
|
|
|
21 |
// Ajout des paramètres et données à selectionner dans l'URL
|
|
|
22 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
|
|
23 |
SERVICE_NOM + "/" +
|
|
|
24 |
(projetId == null ? "*" : projetId) + "/" +
|
|
|
25 |
(collectionId == null ? "*" : collectionId) + "/" +
|
|
|
26 |
"";
|
|
|
27 |
|
|
|
28 |
JsonRestRequestBuilder rb = new JsonRestRequestBuilder(RequestBuilder.GET, url);
|
|
|
29 |
|
|
|
30 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
468 |
jp_milcent |
31 |
@Override
|
463 |
jp_milcent |
32 |
public void surReponse(JSONValue responseValue) {
|
|
|
33 |
if (responseValue != null) {
|
|
|
34 |
// Si la requête est un succès, reception d'un objet ou d'un tableau
|
|
|
35 |
if (responseValue.isObject() != null) {
|
|
|
36 |
final JSONObject reponse = responseValue.isObject();
|
|
|
37 |
Collection collection = new Collection(reponse);
|
|
|
38 |
CollectionBotanique collectionBotanique = new CollectionBotanique(reponse);
|
|
|
39 |
|
|
|
40 |
Information info = new Information("selection_collection");
|
|
|
41 |
info.setDonnee(0, collection);
|
|
|
42 |
info.setDonnee(1, collectionBotanique);
|
|
|
43 |
vueARafraichir.rafraichir(info);
|
|
|
44 |
} else if (responseValue.isArray() != null) {
|
|
|
45 |
final JSONArray reponse = responseValue.isArray();
|
|
|
46 |
CollectionListe collections = new CollectionListe(reponse);
|
|
|
47 |
vueARafraichir.rafraichir(collections);
|
|
|
48 |
} else {
|
|
|
49 |
GWT.log(url+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
50 |
}
|
|
|
51 |
} else {
|
|
|
52 |
// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
53 |
if (collectionId == null) {
|
|
|
54 |
CollectionListe collections = new CollectionListe(0);
|
|
|
55 |
vueARafraichir.rafraichir(collections);
|
|
|
56 |
}
|
|
|
57 |
}
|
|
|
58 |
}
|
|
|
59 |
});
|
|
|
60 |
}
|
643 |
jp_milcent |
61 |
|
|
|
62 |
public void modifier(final Rafraichissable vueARafraichir, final String projetId, final String collectionId, Collection collection) {
|
|
|
63 |
// Ajout des paramètres et données à selectionner dans l'URL
|
|
|
64 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
|
|
65 |
SERVICE_NOM + "/" + collectionId;
|
|
|
66 |
|
|
|
67 |
JsonRestRequestBuilder rb = new JsonRestRequestBuilder(RequestBuilder.POST, url);
|
|
|
68 |
|
|
|
69 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
70 |
@Override
|
|
|
71 |
public void surReponse(JSONValue reponseValeur) {
|
|
|
72 |
Information info = new Information("modif_collection");
|
|
|
73 |
|
|
|
74 |
// Si la requête est un succès, reception d'une chaine
|
|
|
75 |
if (reponseValeur.isString() != null) {
|
|
|
76 |
info.setMessage(reponseValeur.isString().stringValue());
|
|
|
77 |
} else {
|
|
|
78 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
vueARafraichir.rafraichir(info);
|
|
|
82 |
}
|
|
|
83 |
});
|
|
|
84 |
}
|
463 |
jp_milcent |
85 |
}
|