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;
|
|
|
16 |
import com.google.gwt.json.client.JSONValue;
|
|
|
17 |
|
268 |
jp_milcent |
18 |
public class PersonneAsyncDao {
|
|
|
19 |
private static final String SERVICE_NOM = "CoelPersonne";
|
126 |
gduche |
20 |
|
748 |
jpm |
21 |
private String utilisateurId = null;
|
277 |
jp_milcent |
22 |
private Rafraichissable vueARafraichir = null;
|
126 |
gduche |
23 |
|
277 |
jp_milcent |
24 |
public PersonneAsyncDao(Rafraichissable vue) {
|
|
|
25 |
vueARafraichir = vue;
|
748 |
jpm |
26 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
126 |
gduche |
27 |
}
|
268 |
jp_milcent |
28 |
|
654 |
gduche |
29 |
public void selectionner(String personneId, String projetId, String nomComplet, final int pageCourante, final int nbElements) {
|
1218 |
cyprien |
30 |
|
|
|
31 |
Debug.log("|> PersonneAsyncDao.selectionner : pageCourante="+pageCourante +", nbElements=" + nbElements);
|
|
|
32 |
|
748 |
jpm |
33 |
String[] parametres = {personneId, projetId, nomComplet};
|
415 |
gduche |
34 |
|
748 |
jpm |
35 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
1052 |
gduche |
36 |
restrictions.put("start", String.valueOf(pageCourante*nbElements));
|
1218 |
cyprien |
37 |
|
|
|
38 |
Debug.log("|--> pageCourante*nbElements (start) ="+pageCourante*nbElements);
|
|
|
39 |
|
593 |
gduche |
40 |
if (nbElements != -1) {
|
748 |
jpm |
41 |
restrictions.put("limit", String.valueOf(nbElements));
|
593 |
gduche |
42 |
}
|
1218 |
cyprien |
43 |
else {
|
|
|
44 |
|
|
|
45 |
Debug.log("|--> No END restriction");
|
|
|
46 |
|
|
|
47 |
}
|
593 |
gduche |
48 |
|
755 |
aurelien |
49 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
748 |
jpm |
50 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
51 |
@Override
|
|
|
52 |
public void surReponse(JSONValue responseValue) {
|
|
|
53 |
// Si la requête est un succès, réception d'un tableau
|
|
|
54 |
if (responseValue.isArray() != null) {
|
|
|
55 |
final JSONArray reponse = responseValue.isArray();
|
|
|
56 |
|
|
|
57 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
58 |
Information info = new Information("liste_personne");
|
|
|
59 |
PersonneListe personnes;
|
|
|
60 |
if (reponse.get(0).isArray() != null) {
|
|
|
61 |
personnes = new PersonneListe(reponse);
|
241 |
jp_milcent |
62 |
} else {
|
748 |
jpm |
63 |
personnes = new PersonneListe(reponse.get(1).isArray(), reponse.get(0).isNumber(), vueARafraichir);
|
241 |
jp_milcent |
64 |
}
|
1218 |
cyprien |
65 |
|
|
|
66 |
Debug.log("personnes.size() : "+personnes.size());
|
|
|
67 |
|
748 |
jpm |
68 |
personnes.setTaillePage(nbElements);
|
1218 |
cyprien |
69 |
Debug.log("|--> personnes.setTaillePage(nbElements) : nbElements ="+nbElements);
|
748 |
jpm |
70 |
personnes.setPageCourante(pageCourante);
|
|
|
71 |
info.setDonnee(0, personnes);
|
|
|
72 |
|
|
|
73 |
// et on met à jour le demandeur des données
|
|
|
74 |
vueARafraichir.rafraichir(info);
|
|
|
75 |
} else {
|
|
|
76 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un tableau JSON et vaut : "+responseValue.toString(), null);
|
241 |
jp_milcent |
77 |
}
|
748 |
jpm |
78 |
}
|
|
|
79 |
});
|
126 |
gduche |
80 |
}
|
241 |
jp_milcent |
81 |
|
748 |
jpm |
82 |
public void ajouter(Personne personne) {
|
|
|
83 |
String postDonneesEncodees = personne.obtenirChainePOST();
|
|
|
84 |
postDonneesEncodees += "&cmhl_ce_modifier_par=" + utilisateurId;
|
432 |
gduche |
85 |
|
748 |
jpm |
86 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
87 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
88 |
@Override
|
|
|
89 |
public void surReponse(JSONValue responseValue) {
|
|
|
90 |
if (responseValue.isString() != null) {
|
772 |
jpm |
91 |
Information info = new Information("ajout_personne");
|
884 |
jpm |
92 |
String structureIdOuMessage = responseValue.isString().stringValue();
|
|
|
93 |
if (structureIdOuMessage.matches("^[0-9]+$")) {
|
|
|
94 |
info.setDonnee(structureIdOuMessage);
|
|
|
95 |
} else {
|
|
|
96 |
info.setMessage(structureIdOuMessage);
|
|
|
97 |
}
|
748 |
jpm |
98 |
vueARafraichir.rafraichir(info);
|
|
|
99 |
} else {
|
|
|
100 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
432 |
gduche |
101 |
}
|
748 |
jpm |
102 |
}
|
|
|
103 |
});
|
432 |
gduche |
104 |
}
|
|
|
105 |
|
748 |
jpm |
106 |
public void modifier(Personne personne) {
|
|
|
107 |
String postDonneesEncodees = personne.obtenirChainePOST();
|
|
|
108 |
postDonneesEncodees += "&cmhl_ce_modifier_par=" + utilisateurId;
|
775 |
jpm |
109 |
GWT.log(postDonneesEncodees, null);
|
748 |
jpm |
110 |
String[] parametres = {personne.getId()};
|
755 |
aurelien |
111 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
748 |
jpm |
112 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
113 |
@Override
|
|
|
114 |
public void surReponse(JSONValue responseValue) {
|
|
|
115 |
// Si la requête est un succès, reception d'une chaine
|
|
|
116 |
if (responseValue.isString() != null) {
|
772 |
jpm |
117 |
Information info = new Information("modification_personne");
|
|
|
118 |
info.setMessage(responseValue.isString().stringValue());
|
748 |
jpm |
119 |
vueARafraichir.rafraichir(info);
|
|
|
120 |
} else {
|
|
|
121 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
387 |
gduche |
122 |
}
|
748 |
jpm |
123 |
}
|
|
|
124 |
});
|
387 |
gduche |
125 |
}
|
751 |
jpm |
126 |
|
772 |
jpm |
127 |
public void supprimer(String personnesId) {
|
1218 |
cyprien |
128 |
|
|
|
129 |
Debug.log("|> BEGIN PersonneAsynDao.supprimer()");
|
|
|
130 |
Debug.log("|--> PersonneAsynDao.supprimer() : utilisateurId="+utilisateurId+", personnesId="+personnesId+", SERVICE_NOM="+SERVICE_NOM);
|
|
|
131 |
|
772 |
jpm |
132 |
String[] parametres = {utilisateurId, personnesId};
|
755 |
aurelien |
133 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
751 |
jpm |
134 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
135 |
@Override
|
|
|
136 |
public void surReponse(JSONValue responseValue) {
|
|
|
137 |
if (responseValue.isString() != null) {
|
772 |
jpm |
138 |
Information info = new Information("suppression_personne");
|
|
|
139 |
info.setMessage(responseValue.isString().stringValue());
|
751 |
jpm |
140 |
vueARafraichir.rafraichir(info);
|
|
|
141 |
} else {
|
|
|
142 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
143 |
}
|
|
|
144 |
}
|
|
|
145 |
});
|
1218 |
cyprien |
146 |
|
|
|
147 |
Debug.log("|> END PersonneAsynDao.supprimer()");
|
|
|
148 |
|
751 |
jpm |
149 |
}
|
126 |
gduche |
150 |
|
|
|
151 |
}
|