935 |
jpm |
1 |
package org.tela_botanica.client.modeles.projet;
|
147 |
gduche |
2 |
|
890 |
aurelien |
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.RegistreId;
|
751 |
jpm |
5 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
6 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
147 |
gduche |
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
935 |
jpm |
8 |
import org.tela_botanica.client.modeles.Information;
|
147 |
gduche |
9 |
import org.tela_botanica.client.util.UtilDAO;
|
|
|
10 |
|
890 |
aurelien |
11 |
import com.extjs.gxt.ui.client.Registry;
|
929 |
jpm |
12 |
import com.google.gwt.core.client.GWT;
|
147 |
gduche |
13 |
import com.google.gwt.json.client.JSONArray;
|
879 |
aurelien |
14 |
import com.google.gwt.json.client.JSONObject;
|
147 |
gduche |
15 |
import com.google.gwt.json.client.JSONValue;
|
|
|
16 |
|
268 |
jp_milcent |
17 |
public class ProjetAsyncDao {
|
|
|
18 |
private static final String SERVICE_NOM = "CoelProjet";
|
147 |
gduche |
19 |
|
890 |
aurelien |
20 |
String utilisateurId = null;
|
751 |
jpm |
21 |
private Rafraichissable vueARafraichir = null;
|
147 |
gduche |
22 |
|
751 |
jpm |
23 |
public ProjetAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
|
|
24 |
vueARafraichir = vueARafraichirCourrante;
|
890 |
aurelien |
25 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
147 |
gduche |
26 |
}
|
|
|
27 |
|
929 |
jpm |
28 |
public void selectionner(final String projetId) {
|
|
|
29 |
String[] param = {projetId};
|
|
|
30 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, param);
|
751 |
jpm |
31 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
32 |
@Override
|
|
|
33 |
public void surReponse(JSONValue responseValue) {
|
929 |
jpm |
34 |
if (responseValue != null) {
|
|
|
35 |
// Si la requête est un succès, reception d'un objet ou d'un tableau
|
|
|
36 |
if (responseValue.isObject() != null) {
|
|
|
37 |
final JSONObject reponse = responseValue.isObject();
|
|
|
38 |
Projet projet = new Projet(reponse);
|
|
|
39 |
|
|
|
40 |
Information info = new Information("selection_projet");
|
|
|
41 |
info.setDonnee(0, projet);
|
|
|
42 |
vueARafraichir.rafraichir(info);
|
|
|
43 |
} else if (responseValue.isArray() != null) {
|
|
|
44 |
final JSONArray reponse = responseValue.isArray();
|
|
|
45 |
ProjetListe projets = new ProjetListe(reponse);
|
|
|
46 |
vueARafraichir.rafraichir(projets);
|
|
|
47 |
} else {
|
|
|
48 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
49 |
}
|
751 |
jpm |
50 |
} else {
|
929 |
jpm |
51 |
// Dans le cas, où nous demandons tous les projets et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
52 |
if (projetId == null) {
|
|
|
53 |
ProjetListe projets = new ProjetListe(0);
|
|
|
54 |
vueARafraichir.rafraichir(projets);
|
|
|
55 |
}
|
147 |
gduche |
56 |
}
|
751 |
jpm |
57 |
}
|
|
|
58 |
});
|
879 |
aurelien |
59 |
|
|
|
60 |
}
|
890 |
aurelien |
61 |
|
|
|
62 |
public void ajouter(Projet projet) {
|
|
|
63 |
String postDonneesEncodees = projet.obtenirChainePOST()+"&cmhl_ce_modifier_par="+utilisateurId;
|
|
|
64 |
|
|
|
65 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
66 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
67 |
@Override
|
|
|
68 |
public void surReponse(JSONValue reponseValeur) {
|
929 |
jpm |
69 |
traiterReponse(reponseValeur, "ajout_projet");
|
890 |
aurelien |
70 |
}
|
|
|
71 |
}) ;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
public void modifier(Projet projet) {
|
|
|
75 |
String[] parametres = {projet.getId()};
|
|
|
76 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
77 |
|
|
|
78 |
String postDonneesEncodees = projet.obtenirChainePOST()+"&cmhl_ce_modifier_par="+utilisateurId;
|
|
|
79 |
|
|
|
80 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
81 |
@Override
|
|
|
82 |
public void surReponse(JSONValue reponseValeur) {
|
929 |
jpm |
83 |
traiterReponse(reponseValeur, "modif_projet");
|
890 |
aurelien |
84 |
}
|
|
|
85 |
});
|
|
|
86 |
}
|
|
|
87 |
|
|
|
88 |
public void supprimer(String projetsId) {
|
|
|
89 |
String[] parametres = {utilisateurId, projetsId};
|
|
|
90 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
91 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
92 |
@Override
|
|
|
93 |
public void surReponse(JSONValue reponseValeur) {
|
|
|
94 |
traiterReponse(reponseValeur, "suppression_projet");
|
|
|
95 |
}
|
|
|
96 |
});
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
private void traiterReponse(JSONValue reponseValeur, String type) {
|
|
|
100 |
Information info = new Information(type);
|
|
|
101 |
// Si la requête est un succès, réception d'une chaîne
|
|
|
102 |
if (reponseValeur.isString() != null) {
|
|
|
103 |
info.setDonnee(reponseValeur.isString().stringValue());
|
|
|
104 |
} else {
|
|
|
105 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
|
|
106 |
}
|
|
|
107 |
vueARafraichir.rafraichir(info);
|
|
|
108 |
}
|
151 |
jpm |
109 |
}
|