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