121 |
jpm |
1 |
package org.tela_botanica.client.modeles;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.RegistreId;
|
|
|
4 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
5 |
|
|
|
6 |
import com.extjs.gxt.ui.client.Registry;
|
153 |
jpm |
7 |
import com.extjs.gxt.ui.client.widget.Info;
|
133 |
jpm |
8 |
import com.google.gwt.core.client.GWT;
|
121 |
jpm |
9 |
import com.google.gwt.http.client.Request;
|
|
|
10 |
import com.google.gwt.http.client.RequestBuilder;
|
|
|
11 |
import com.google.gwt.http.client.RequestCallback;
|
|
|
12 |
import com.google.gwt.http.client.RequestException;
|
|
|
13 |
import com.google.gwt.http.client.Response;
|
|
|
14 |
import com.google.gwt.http.client.URL;
|
|
|
15 |
import com.google.gwt.json.client.JSONArray;
|
|
|
16 |
import com.google.gwt.json.client.JSONParser;
|
|
|
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
|
|
19 |
public class StructureAsyncDao {
|
|
|
20 |
|
|
|
21 |
public void ajouter(final Rafraichissable r, String utilisateurId, final Structure str) {
|
153 |
jpm |
22 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
|
|
23 |
"CoelStructureListe/";
|
121 |
jpm |
24 |
|
153 |
jpm |
25 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
|
|
|
26 |
|
140 |
jpm |
27 |
String postDonnees = "cmhl_ce_modifier_par=" + utilisateurId +
|
|
|
28 |
"&cs_ce_projet =" + URL.encodeComponent(str.getIdProjet()) +
|
|
|
29 |
"&cs_ce_mere =" + URL.encodeComponent(str.getIdMere()) +
|
|
|
30 |
"&cs_guid =" + URL.encodeComponent(str.getGuid()) +
|
|
|
31 |
"&cs_truk_identifiant_alternatif =" + URL.encodeComponent(str.getIdAlternatif()) +
|
|
|
32 |
"&cs_nom=" + URL.encodeComponent(str.getNom()) +
|
|
|
33 |
"&cs_truk_nom_alternatif =" + URL.encodeComponent(str.getNomAlternatif()) +
|
|
|
34 |
"&cs_ce_type =" + URL.encodeComponent(str.getType()) +
|
|
|
35 |
"&cs_ce_truk_type_prive =" + URL.encodeComponent(str.getTypePrive()) +
|
|
|
36 |
"&cs_ce_truk_type_public =" + URL.encodeComponent(str.getTypePublic()) +
|
|
|
37 |
"&cs_adresse_01 =" + URL.encodeComponent(str.getAdresse()) +
|
|
|
38 |
"&cs_adresse_02 =" + URL.encodeComponent(str.getAdresseComplement()) +
|
|
|
39 |
"&cs_date_fondation =" + URL.encodeComponent(str.getDateFondation()) +
|
|
|
40 |
"&cs_code_postal =" + URL.encodeComponent(str.getCodePostal()) +
|
|
|
41 |
"&cs_ville =" + URL.encodeComponent(str.getVille()) +
|
|
|
42 |
"&cs_region =" + URL.encodeComponent(str.getRegion()) +
|
|
|
43 |
"&cs_pays =" + URL.encodeComponent(str.getPays()) +
|
|
|
44 |
"&cs_telephone =" + URL.encodeComponent(str.getTelephone()) +
|
|
|
45 |
"&cs_fax =" + URL.encodeComponent(str.getFax()) +
|
|
|
46 |
"&cs_truk_url =" + URL.encodeComponent(str.getUrl()) +
|
|
|
47 |
"&cs_nbre_personne =" + URL.encodeComponent(str.getNbrePersonne()) +
|
121 |
jpm |
48 |
"";
|
|
|
49 |
|
|
|
50 |
try {
|
|
|
51 |
rb.sendRequest(postDonnees, new RequestCallback() {
|
|
|
52 |
|
|
|
53 |
public void onError(Request request, Throwable exception) {
|
153 |
jpm |
54 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
|
|
55 |
GWT.log("Erreur à l'exécution du service CoelStructureListe", exception);
|
|
|
56 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
121 |
jpm |
57 |
}
|
153 |
jpm |
58 |
|
|
|
59 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
60 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
61 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
62 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
63 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
64 |
}
|
121 |
jpm |
65 |
|
|
|
66 |
public void onResponseReceived(Request request, Response response) {
|
153 |
jpm |
67 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
68 |
if (response.getStatusCode() != 200) {
|
|
|
69 |
onErrorHTTP(request, response);
|
|
|
70 |
} else {
|
|
|
71 |
if (response.getText().length() != 0 && response.getText() != null) {
|
|
|
72 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
73 |
|
155 |
jpm |
74 |
// Si la requête est un succès, reception d'une chaine
|
|
|
75 |
if (responseValue.isString() != null) {
|
|
|
76 |
Information info = new Information("ajout_structure", responseValue.isString().stringValue());
|
153 |
jpm |
77 |
r.rafraichir(info);
|
|
|
78 |
} else {
|
155 |
jpm |
79 |
GWT.log(url+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
153 |
jpm |
80 |
}
|
|
|
81 |
} else {
|
|
|
82 |
GWT.log(url, null);
|
|
|
83 |
if (response.getText().length() == 0) {
|
|
|
84 |
GWT.log("\tLa réponse a une taille de 0", null);
|
|
|
85 |
}
|
|
|
86 |
if (response.getText() == null) {
|
|
|
87 |
GWT.log("\tLa réponse vaul null", null);
|
|
|
88 |
}
|
121 |
jpm |
89 |
}
|
|
|
90 |
}
|
|
|
91 |
}
|
|
|
92 |
|
|
|
93 |
}) ;
|
|
|
94 |
} catch (RequestException e) {
|
153 |
jpm |
95 |
// Gestion des exceptions déclenchées par la création de la requête (url non-valide ?)
|
|
|
96 |
GWT.log("Erreur à la création du service CoelProjetsListe", e);
|
|
|
97 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de la création de la requête.");
|
121 |
jpm |
98 |
}
|
|
|
99 |
}
|
133 |
jpm |
100 |
|
|
|
101 |
public void supprimer(final Rafraichissable r, String idUtilisateur, String idStr) {
|
|
|
102 |
// Ajout des paramètres et données à supprimer dans l'URL
|
|
|
103 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
|
|
104 |
"CoelStructureListe/" +
|
|
|
105 |
idUtilisateur + "/" +
|
|
|
106 |
idStr +
|
|
|
107 |
"";
|
|
|
108 |
|
|
|
109 |
// DELETE n'étant pas disponible comme méthode HTTP, nous utilisons POST avec le paramètre action=DELETE
|
|
|
110 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
|
|
|
111 |
String postDonnees = "action=DELETE";
|
|
|
112 |
|
|
|
113 |
try {
|
|
|
114 |
rb.sendRequest(postDonnees, new RequestCallback() {
|
|
|
115 |
|
|
|
116 |
public void onError(Request request, Throwable exception) {
|
|
|
117 |
// TODO Auto-generated method stub
|
|
|
118 |
|
|
|
119 |
}
|
|
|
120 |
|
153 |
jpm |
121 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
122 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
123 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
124 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
125 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
126 |
}
|
|
|
127 |
|
133 |
jpm |
128 |
public void onResponseReceived(Request request, Response response) {
|
153 |
jpm |
129 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
130 |
if (response.getStatusCode() != 200) {
|
|
|
131 |
onErrorHTTP(request, response);
|
|
|
132 |
} else {
|
|
|
133 |
if (response.getText().length() != 0 && response.getText() != null) {
|
|
|
134 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
135 |
|
|
|
136 |
// Si la requête est un succès, reception d'un tableau
|
|
|
137 |
if (responseValue.isString() != null) {
|
|
|
138 |
Information info = new Information("suppression_structure", responseValue.isString().stringValue());
|
|
|
139 |
r.rafraichir(info);
|
|
|
140 |
} else {
|
|
|
141 |
GWT.log(url+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
142 |
}
|
133 |
jpm |
143 |
} else {
|
153 |
jpm |
144 |
GWT.log(url, null);
|
|
|
145 |
if (response.getText().length() == 0) {
|
|
|
146 |
GWT.log("\tLa réponse a une taille de 0", null);
|
|
|
147 |
}
|
|
|
148 |
if (response.getText() == null) {
|
|
|
149 |
GWT.log("\tLa réponse vaul null", null);
|
|
|
150 |
}
|
133 |
jpm |
151 |
}
|
|
|
152 |
}
|
|
|
153 |
}
|
|
|
154 |
|
|
|
155 |
}) ;
|
|
|
156 |
} catch (RequestException e) {
|
153 |
jpm |
157 |
// Gestion des exceptions déclenchées par la création de la requête (url non-valide ?)
|
|
|
158 |
GWT.log("Erreur à la création du service CoelProjetsListe", e);
|
|
|
159 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de la création de la requête.");
|
133 |
jpm |
160 |
}
|
|
|
161 |
}
|
121 |
jpm |
162 |
}
|