463 |
jp_milcent |
1 |
package org.tela_botanica.client.http;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.modeles.Information;
|
|
|
4 |
|
|
|
5 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
6 |
import com.google.gwt.core.client.GWT;
|
|
|
7 |
import com.google.gwt.http.client.Request;
|
|
|
8 |
import com.google.gwt.http.client.RequestCallback;
|
|
|
9 |
import com.google.gwt.http.client.Response;
|
|
|
10 |
import com.google.gwt.json.client.JSONArray;
|
|
|
11 |
import com.google.gwt.json.client.JSONParser;
|
|
|
12 |
import com.google.gwt.json.client.JSONValue;
|
|
|
13 |
|
|
|
14 |
public class JsonRestRequestCallback implements RequestCallback {
|
|
|
15 |
|
|
|
16 |
public void onError(Request request, Throwable exception) {
|
|
|
17 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
|
|
18 |
GWT.log("Erreur à l'exécution du service : "+request.toString(), exception);
|
|
|
19 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
23 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
24 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
25 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
26 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public void onResponseReceived(Request request, Response response) {
|
|
|
30 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
31 |
if (response.getStatusCode() != 200) {
|
|
|
32 |
onErrorHTTP(request, response);
|
|
|
33 |
} else {
|
469 |
jp_milcent |
34 |
if (avoirEnteteDebug(response)) {
|
463 |
jp_milcent |
35 |
final JSONValue reponseEnteteDeboguage = JSONParser.parse(response.getHeader("X-DebugJrest-Data"));
|
|
|
36 |
if (reponseEnteteDeboguage.isArray() != null) {
|
|
|
37 |
GWT.log("DEBOGUAGE:\n"+formaterDeboguages(reponseEnteteDeboguage.isArray()), null);
|
|
|
38 |
}
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
JSONValue responseValue = null;
|
469 |
jp_milcent |
42 |
if (avoirContenu(response)) {
|
|
|
43 |
responseValue = JSONParser.parse(response.getText());
|
463 |
jp_milcent |
44 |
}
|
|
|
45 |
|
|
|
46 |
surReponse(responseValue);
|
|
|
47 |
}
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
public void surReponse(JSONValue responseValue) {
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
public String formaterDeboguages(JSONArray jsonArray) {
|
|
|
54 |
String deboguageFormate = "";
|
|
|
55 |
|
|
|
56 |
for (int i = 0 ; i < jsonArray.size() ; i++) {
|
|
|
57 |
if (jsonArray.get(i).isString() != null) {
|
|
|
58 |
deboguageFormate += jsonArray.get(i).isString().stringValue()+"\n";
|
|
|
59 |
}
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
return deboguageFormate;
|
|
|
63 |
}
|
469 |
jp_milcent |
64 |
|
|
|
65 |
public Boolean avoirEnteteDebug(Response reponse) {
|
|
|
66 |
Boolean retour = false;
|
|
|
67 |
if (reponse.getHeader("X-DebugJrest-Data") != null && reponse.getHeader("X-DebugJrest-Data").length() != 0) {
|
|
|
68 |
retour = true;
|
|
|
69 |
}
|
|
|
70 |
return retour;
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
public Boolean avoirContenu(Response reponse) {
|
|
|
74 |
Boolean retour = false;
|
|
|
75 |
if (reponse.getText() != null && reponse.getText().length() != 0) {
|
|
|
76 |
retour = true;
|
|
|
77 |
} else if (reponse.getText() == null) {
|
|
|
78 |
GWT.log("La réponse vaul null", null);
|
|
|
79 |
} else if (reponse.getText().length() == 0) {
|
|
|
80 |
GWT.log("La réponse a une taille de 0", null);
|
|
|
81 |
}
|
|
|
82 |
return retour;
|
|
|
83 |
}
|
463 |
jp_milcent |
84 |
}
|