935 |
jpm |
1 |
package org.tela_botanica.client.modeles.personne;
|
351 |
gduche |
2 |
|
593 |
gduche |
3 |
import java.util.HashMap;
|
|
|
4 |
|
317 |
gduche |
5 |
import org.tela_botanica.client.Mediateur;
|
126 |
gduche |
6 |
import org.tela_botanica.client.RegistreId;
|
748 |
jpm |
7 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
8 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
126 |
gduche |
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
935 |
jpm |
10 |
import org.tela_botanica.client.modeles.Information;
|
1218 |
cyprien |
11 |
import org.tela_botanica.client.util.Debug;
|
146 |
gduche |
12 |
import org.tela_botanica.client.util.UtilDAO;
|
126 |
gduche |
13 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
14 |
import com.google.gwt.core.client.GWT;
|
|
|
15 |
import com.google.gwt.json.client.JSONArray;
|
1327 |
cyprien |
16 |
import com.google.gwt.json.client.JSONObject;
|
126 |
gduche |
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
268 |
jp_milcent |
19 |
public class PersonneAsyncDao {
|
|
|
20 |
private static final String SERVICE_NOM = "CoelPersonne";
|
126 |
gduche |
21 |
|
748 |
jpm |
22 |
private String utilisateurId = null;
|
277 |
jp_milcent |
23 |
private Rafraichissable vueARafraichir = null;
|
126 |
gduche |
24 |
|
277 |
jp_milcent |
25 |
public PersonneAsyncDao(Rafraichissable vue) {
|
|
|
26 |
vueARafraichir = vue;
|
748 |
jpm |
27 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
126 |
gduche |
28 |
}
|
268 |
jp_milcent |
29 |
|
1327 |
cyprien |
30 |
/**
|
|
|
31 |
* @param paginationProgressive : définit le mode de consultation de la base de données
|
|
|
32 |
* - True : la consultation des données est progressive, ce qui signifie que la liste est chargée (paginée) au
|
|
|
33 |
* fur et à mesure de la consultation des données par l'utilisateur.
|
|
|
34 |
* - False : la consultation des données est classique : un seul appel à la base de données est effectué, le retour
|
|
|
35 |
* est renvoyé à l'appelant
|
|
|
36 |
* // FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
|
|
|
37 |
*/
|
|
|
38 |
public void selectionner(final boolean paginationProgressive, String personneId, String projetId, String nomComplet, final int start, final int nbElements) {
|
|
|
39 |
|
|
|
40 |
String nom = (nomComplet == null) ? "%" : nomComplet+"%";
|
|
|
41 |
String[] parametres = {personneId, projetId, nom};
|
415 |
gduche |
42 |
|
748 |
jpm |
43 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
1218 |
cyprien |
44 |
|
593 |
gduche |
45 |
if (nbElements != -1) {
|
748 |
jpm |
46 |
restrictions.put("limit", String.valueOf(nbElements));
|
593 |
gduche |
47 |
}
|
|
|
48 |
|
1327 |
cyprien |
49 |
/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
|
|
|
50 |
if (paginationProgressive) {
|
|
|
51 |
|
|
|
52 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
53 |
restrictions.put("start", String.valueOf(start));
|
|
|
54 |
|
|
|
55 |
/** CONSTRUCTION DE LA REQUETE **/
|
|
|
56 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
57 |
|
|
|
58 |
/** ENVOI DE LA REQUETE **/
|
|
|
59 |
rb.envoyerRequete(null, new JsonRestRequestCallback()
|
|
|
60 |
{
|
|
|
61 |
/** RECEPTION DE LA REPONSE **/
|
|
|
62 |
public void surReponse(JSONValue responseValue)
|
|
|
63 |
{
|
|
|
64 |
/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
|
|
|
65 |
* On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
|
|
|
66 |
vueARafraichir.rafraichir(responseValue);
|
|
|
67 |
}
|
|
|
68 |
});
|
|
|
69 |
}
|
|
|
70 |
/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
|
|
|
71 |
else {
|
|
|
72 |
|
|
|
73 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
74 |
restrictions.put("start", String.valueOf(start*nbElements));
|
|
|
75 |
|
|
|
76 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
77 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
78 |
@Override
|
|
|
79 |
public void surReponse(JSONValue responseValue) {
|
748 |
jpm |
80 |
|
1327 |
cyprien |
81 |
if (responseValue != null) {
|
|
|
82 |
JSONObject reponseObject = responseValue.isObject();
|
|
|
83 |
|
|
|
84 |
if (reponseObject.get("personnes").isArray() != null) {
|
|
|
85 |
JSONArray reponse = responseValue.isArray();
|
|
|
86 |
|
|
|
87 |
// Transformation du tableau JSON réponse en ListePersonne
|
|
|
88 |
Information info = new Information("liste_personne");
|
|
|
89 |
PersonneListe personnes;
|
|
|
90 |
personnes = new PersonneListe(reponseObject.get("personnes").isArray(), reponseObject.get("nbElements").isNumber(), vueARafraichir);
|
|
|
91 |
personnes.setTaillePage(nbElements);
|
|
|
92 |
personnes.setPageCourante(start);
|
|
|
93 |
info.setDonnee(0, personnes);
|
|
|
94 |
|
|
|
95 |
// et on met à jour le demandeur des données
|
|
|
96 |
vueARafraichir.rafraichir(info);
|
|
|
97 |
}
|
241 |
jp_milcent |
98 |
} else {
|
1327 |
cyprien |
99 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un tableau JSON et vaut : "+responseValue.toString(), null);
|
|
|
100 |
}
|
241 |
jp_milcent |
101 |
}
|
1327 |
cyprien |
102 |
});
|
|
|
103 |
}
|
126 |
gduche |
104 |
}
|
241 |
jp_milcent |
105 |
|
1255 |
cyprien |
106 |
public void ajouter(Personne personne) {
|
748 |
jpm |
107 |
String postDonneesEncodees = personne.obtenirChainePOST();
|
1255 |
cyprien |
108 |
postDonneesEncodees += "&cmhl_ce_modifier_par=" + utilisateurId;
|
748 |
jpm |
109 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
110 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
111 |
@Override
|
|
|
112 |
public void surReponse(JSONValue responseValue) {
|
|
|
113 |
if (responseValue.isString() != null) {
|
772 |
jpm |
114 |
Information info = new Information("ajout_personne");
|
884 |
jpm |
115 |
String structureIdOuMessage = responseValue.isString().stringValue();
|
|
|
116 |
if (structureIdOuMessage.matches("^[0-9]+$")) {
|
|
|
117 |
info.setDonnee(structureIdOuMessage);
|
|
|
118 |
} else {
|
|
|
119 |
info.setMessage(structureIdOuMessage);
|
|
|
120 |
}
|
748 |
jpm |
121 |
vueARafraichir.rafraichir(info);
|
|
|
122 |
} else {
|
|
|
123 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
432 |
gduche |
124 |
}
|
748 |
jpm |
125 |
}
|
1255 |
cyprien |
126 |
});
|
432 |
gduche |
127 |
}
|
|
|
128 |
|
748 |
jpm |
129 |
public void modifier(Personne personne) {
|
|
|
130 |
String postDonneesEncodees = personne.obtenirChainePOST();
|
|
|
131 |
postDonneesEncodees += "&cmhl_ce_modifier_par=" + utilisateurId;
|
775 |
jpm |
132 |
GWT.log(postDonneesEncodees, null);
|
748 |
jpm |
133 |
String[] parametres = {personne.getId()};
|
755 |
aurelien |
134 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
748 |
jpm |
135 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
136 |
@Override
|
|
|
137 |
public void surReponse(JSONValue responseValue) {
|
|
|
138 |
// Si la requête est un succès, reception d'une chaine
|
|
|
139 |
if (responseValue.isString() != null) {
|
772 |
jpm |
140 |
Information info = new Information("modification_personne");
|
|
|
141 |
info.setMessage(responseValue.isString().stringValue());
|
748 |
jpm |
142 |
vueARafraichir.rafraichir(info);
|
|
|
143 |
} else {
|
|
|
144 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
387 |
gduche |
145 |
}
|
748 |
jpm |
146 |
}
|
|
|
147 |
});
|
387 |
gduche |
148 |
}
|
751 |
jpm |
149 |
|
1255 |
cyprien |
150 |
public void supprimer(String personnesId) {
|
772 |
jpm |
151 |
String[] parametres = {utilisateurId, personnesId};
|
755 |
aurelien |
152 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
751 |
jpm |
153 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
154 |
@Override
|
|
|
155 |
public void surReponse(JSONValue responseValue) {
|
|
|
156 |
if (responseValue.isString() != null) {
|
772 |
jpm |
157 |
Information info = new Information("suppression_personne");
|
|
|
158 |
info.setMessage(responseValue.isString().stringValue());
|
751 |
jpm |
159 |
vueARafraichir.rafraichir(info);
|
|
|
160 |
} else {
|
|
|
161 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
162 |
}
|
|
|
163 |
}
|
|
|
164 |
});
|
|
|
165 |
}
|
126 |
gduche |
166 |
|
|
|
167 |
}
|