935 |
jpm |
1 |
package org.tela_botanica.client.modeles.structure;
|
208 |
jp_milcent |
2 |
|
1454 |
cyprien |
3 |
import java.util.HashMap;
|
|
|
4 |
|
763 |
jpm |
5 |
import org.tela_botanica.client.Mediateur;
|
208 |
jp_milcent |
6 |
import org.tela_botanica.client.RegistreId;
|
763 |
jpm |
7 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
8 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
208 |
jp_milcent |
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
935 |
jpm |
10 |
import org.tela_botanica.client.modeles.Information;
|
1319 |
gduche |
11 |
import org.tela_botanica.client.synchronisation.Reponse;
|
1210 |
cyprien |
12 |
import org.tela_botanica.client.util.Debug;
|
763 |
jpm |
13 |
import org.tela_botanica.client.util.UtilDAO;
|
208 |
jp_milcent |
14 |
|
|
|
15 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
16 |
import com.google.gwt.core.client.GWT;
|
231 |
jp_milcent |
17 |
import com.google.gwt.http.client.URL;
|
208 |
jp_milcent |
18 |
import com.google.gwt.json.client.JSONArray;
|
1454 |
cyprien |
19 |
import com.google.gwt.json.client.JSONObject;
|
208 |
jp_milcent |
20 |
import com.google.gwt.json.client.JSONValue;
|
|
|
21 |
|
|
|
22 |
public class StructureAPersonneAsyncDao {
|
231 |
jp_milcent |
23 |
private static final String SERVICE_NOM = "CoelStructureAPersonne";
|
763 |
jpm |
24 |
|
|
|
25 |
private String utilisateurId = null;
|
|
|
26 |
private Rafraichissable vueARafraichir = null;
|
|
|
27 |
|
|
|
28 |
public StructureAPersonneAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
1367 |
cyprien |
29 |
if (Mediateur.DEBUG) System.out.println("|| StructureAPersonneAsyncDao > vueARafraichir = "+vueARafraichirCourrante.getClass().toString());
|
763 |
jpm |
30 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
31 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
32 |
}
|
1454 |
cyprien |
33 |
|
231 |
jp_milcent |
34 |
|
1454 |
cyprien |
35 |
public void selectionner(final boolean paginationProgressive, final String structureId, final String roleId, final String recherche, final int start, final int nbElements, final Integer seqId) {
|
|
|
36 |
Debug.log("selectionner structure a personne");
|
|
|
37 |
/*Debug.log("paginationProgressive="+paginationProgressive);
|
|
|
38 |
Debug.log("structureId="+structureId);
|
|
|
39 |
Debug.log("roleId="+roleId);
|
|
|
40 |
Debug.log("recherche="+recherche);
|
|
|
41 |
Debug.log("nbElements="+nbElements);
|
|
|
42 |
Debug.log("seqId="+seqId);*/
|
763 |
jpm |
43 |
String[] parametres = {structureId, roleId};
|
|
|
44 |
|
1454 |
cyprien |
45 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
|
|
46 |
|
|
|
47 |
if (nbElements != -1) {
|
|
|
48 |
restrictions.put("limit", String.valueOf(nbElements));
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
restrictions.put("orderby", "cp_nom");
|
|
|
52 |
|
|
|
53 |
/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
|
|
|
54 |
if (paginationProgressive) {
|
|
|
55 |
|
|
|
56 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
57 |
restrictions.put("start", String.valueOf(start));
|
|
|
58 |
|
|
|
59 |
/** CONSTRUCTION DE LA REQUETE **/
|
|
|
60 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
61 |
|
|
|
62 |
/** ENVOI DE LA REQUETE **/
|
|
|
63 |
rb.envoyerRequete(null, new JsonRestRequestCallback()
|
|
|
64 |
{
|
|
|
65 |
/** RECEPTION DE LA REPONSE **/
|
|
|
66 |
public void surReponse(JSONValue responseValue)
|
|
|
67 |
{
|
|
|
68 |
/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
|
|
|
69 |
* On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
|
|
|
70 |
if (seqId != null) {
|
|
|
71 |
if (Mediateur.DEBUG) System.out.println("<-- StructureAPersonneAsyncDao > Liste paginée, retour au sequenceur");
|
|
|
72 |
Reponse reponseRequete = new Reponse(responseValue, seqId);
|
|
|
73 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
74 |
}
|
|
|
75 |
else {
|
|
|
76 |
if (Mediateur.DEBUG) System.out.println("<-- StructureAPersonneAsyncDao > Liste paginée, retour à "+vueARafraichir.getClass().toString());
|
|
|
77 |
vueARafraichir.rafraichir(responseValue);
|
|
|
78 |
}
|
|
|
79 |
}
|
|
|
80 |
});
|
|
|
81 |
}
|
|
|
82 |
/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
|
|
|
83 |
else {
|
|
|
84 |
|
|
|
85 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
86 |
restrictions.put("start", String.valueOf(start*nbElements));
|
|
|
87 |
|
|
|
88 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
89 |
|
|
|
90 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
91 |
@Override
|
|
|
92 |
public void surReponse(JSONValue responseValue) {
|
|
|
93 |
|
|
|
94 |
Information info = new Information("liste_structure_a_personne");
|
|
|
95 |
|
|
|
96 |
if (responseValue != null) {
|
|
|
97 |
|
|
|
98 |
JSONObject responseObject = responseValue.isObject();
|
|
|
99 |
|
|
|
100 |
if (responseObject != null) {
|
|
|
101 |
|
|
|
102 |
// Si la réponse est un tableau, alors c'est une liste de Structures qui a été retournée
|
|
|
103 |
if (responseObject.get("structuresAPersonne").isArray() != null) {
|
|
|
104 |
|
|
|
105 |
final JSONArray reponse = responseObject.get("structuresAPersonne").isArray();
|
|
|
106 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
107 |
StructureAPersonneListe personnes = new StructureAPersonneListe(reponse);
|
|
|
108 |
info.setDonnee(0, personnes);
|
|
|
109 |
// et on met à jour le demandeur des données
|
|
|
110 |
if (seqId != null) {
|
|
|
111 |
Reponse reponseRequete = new Reponse(info, seqId);
|
|
|
112 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
113 |
}
|
|
|
114 |
else {
|
|
|
115 |
vueARafraichir.rafraichir(info);
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
// Si la réponse est un objet, alors c'est une unique Structure qui a été retournée
|
|
|
119 |
} else if (responseObject.get("structuresAPersonne").isObject() != null) {
|
|
|
120 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un tableau JSON et vaut : "+responseValue.toString(), null);
|
|
|
121 |
}
|
|
|
122 |
}
|
|
|
123 |
} else {
|
|
|
124 |
// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
125 |
if (structureId == null) {
|
|
|
126 |
// Dans le cas, où nous demandons toutes les relations Structure à Personne et qu'il n'y en a pas, nous retournons un message d'information
|
|
|
127 |
info.setMessage("Aucun personnel");
|
1319 |
gduche |
128 |
vueARafraichir.rafraichir(info);
|
|
|
129 |
}
|
208 |
jp_milcent |
130 |
}
|
|
|
131 |
}
|
1454 |
cyprien |
132 |
});
|
|
|
133 |
}
|
|
|
134 |
}
|
231 |
jp_milcent |
135 |
|
1454 |
cyprien |
136 |
|
1292 |
cyprien |
137 |
public void ajouter(String structureId, StructureAPersonne personnel) {
|
767 |
jpm |
138 |
String postDonneesEncodees = construirePost(structureId, personnel);
|
763 |
jpm |
139 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
140 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
141 |
@Override
|
|
|
142 |
public void surReponse(JSONValue responseValue) {
|
|
|
143 |
// Si la requête est un succès, reception d'une chaine
|
|
|
144 |
if (responseValue.isString() != null) {
|
|
|
145 |
Information info = new Information("ajout_structure_a_personne");
|
|
|
146 |
info.setMessage(responseValue.isString().stringValue());
|
767 |
jpm |
147 |
vueARafraichir.rafraichir(info);
|
763 |
jpm |
148 |
} else {
|
|
|
149 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
150 |
}
|
763 |
jpm |
151 |
}
|
1292 |
cyprien |
152 |
});
|
231 |
jp_milcent |
153 |
}
|
|
|
154 |
|
767 |
jpm |
155 |
public void modifier(StructureAPersonne personnel) {
|
|
|
156 |
String[] parametres = {personnel.getIdStructure(), personnel.getIdPersonne(), personnel.getIdRole()};
|
|
|
157 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
231 |
jp_milcent |
158 |
|
767 |
jpm |
159 |
String postDonneesEncodees = construirePost(personnel.getIdStructure(), personnel);
|
|
|
160 |
|
|
|
161 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
162 |
@Override
|
|
|
163 |
public void surReponse(JSONValue responseValue) {
|
|
|
164 |
Information info = new Information("modif_structure_a_personne");
|
|
|
165 |
// Si la requête est un succès, reception d'une chaine
|
|
|
166 |
if (responseValue.isString() != null) {
|
|
|
167 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
168 |
vueARafraichir.rafraichir(info);
|
|
|
169 |
} else {
|
|
|
170 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
171 |
}
|
767 |
jpm |
172 |
}
|
|
|
173 |
});
|
231 |
jp_milcent |
174 |
}
|
|
|
175 |
|
767 |
jpm |
176 |
public void supprimer(String idStrAPer) {
|
|
|
177 |
String[] parametres = {utilisateurId, idStrAPer};
|
|
|
178 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
179 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
180 |
@Override
|
|
|
181 |
public void surReponse(JSONValue responseValue) {
|
|
|
182 |
if (responseValue.isString() != null) {
|
|
|
183 |
Information info = new Information("suppression_structure_a_personne");
|
|
|
184 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
185 |
vueARafraichir.rafraichir(info);
|
|
|
186 |
} else {
|
|
|
187 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
188 |
}
|
767 |
jpm |
189 |
}
|
|
|
190 |
});
|
231 |
jp_milcent |
191 |
}
|
602 |
jp_milcent |
192 |
|
767 |
jpm |
193 |
private String construirePost(String structureId, StructureAPersonne personnel) {
|
602 |
jp_milcent |
194 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
|
609 |
jp_milcent |
195 |
if (!personnel.getIdPersonne().equals("")) {
|
|
|
196 |
postDonnees += "&csap_id_personne=" + URL.encodeComponent(personnel.getIdPersonne()) +
|
|
|
197 |
"&cp_id_personne=" + URL.encodeComponent(personnel.getIdPersonne());
|
|
|
198 |
}
|
611 |
jp_milcent |
199 |
postDonnees += "&csap_id_structure=" + URL.encodeComponent(structureId) +
|
|
|
200 |
"&csap_id_role=" + URL.encodeComponent(personnel.getIdRole()) +
|
602 |
jp_milcent |
201 |
"&csap_ce_truk_fonction=" + URL.encodeComponent(personnel.getFonction()) +
|
|
|
202 |
"&csap_service=" + URL.encodeComponent(personnel.getService()) +
|
|
|
203 |
"&csap_ce_truk_statut=" + URL.encodeComponent(personnel.getStatut()) +
|
|
|
204 |
"&csap_mark_contact=" + URL.encodeComponent(personnel.getContact()) +
|
|
|
205 |
"&csap_bota_travail_hebdo_tps=" + URL.encodeComponent(personnel.getBotaTravailHebdoTps()) +
|
609 |
jp_milcent |
206 |
"&cp_ce_projet=" + URL.encodeComponent(personnel.getIdProjetPersonne()) +
|
602 |
jp_milcent |
207 |
"&cp_prenom=" + URL.encodeComponent(personnel.getPrenom()) +
|
|
|
208 |
"&cp_nom=" + URL.encodeComponent(personnel.getNom()) +
|
1210 |
cyprien |
209 |
"&cp_fmt_nom_complet=" + URL.encodeComponent(personnel.getNomComplet()) +
|
602 |
jp_milcent |
210 |
"&cp_truk_telephone=" + URL.encodeComponent(personnel.getTelephone()) +
|
|
|
211 |
"&cp_truk_courriel=" + URL.encodeComponent(personnel.getCourriel()) +
|
|
|
212 |
"&cp_ce_truk_specialite=" + URL.encodeComponent(personnel.getSpecialite()) +
|
1329 |
cyprien |
213 |
"&cp_ce_deces=" + URL.encodeComponent(personnel.getDeces()) +
|
602 |
jp_milcent |
214 |
"";
|
|
|
215 |
return postDonnees;
|
|
|
216 |
}
|
208 |
jp_milcent |
217 |
}
|