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