208 |
jp_milcent |
1 |
package org.tela_botanica.client.modeles;
|
|
|
2 |
|
763 |
jpm |
3 |
import org.tela_botanica.client.Mediateur;
|
208 |
jp_milcent |
4 |
import org.tela_botanica.client.RegistreId;
|
763 |
jpm |
5 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
6 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
208 |
jp_milcent |
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
763 |
jpm |
8 |
import org.tela_botanica.client.util.UtilDAO;
|
208 |
jp_milcent |
9 |
|
|
|
10 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
11 |
import com.google.gwt.core.client.GWT;
|
231 |
jp_milcent |
12 |
import com.google.gwt.http.client.URL;
|
208 |
jp_milcent |
13 |
import com.google.gwt.json.client.JSONArray;
|
|
|
14 |
import com.google.gwt.json.client.JSONValue;
|
|
|
15 |
|
|
|
16 |
public class StructureAPersonneAsyncDao {
|
231 |
jp_milcent |
17 |
private static final String SERVICE_NOM = "CoelStructureAPersonne";
|
763 |
jpm |
18 |
|
|
|
19 |
private String utilisateurId = null;
|
|
|
20 |
private Rafraichissable vueARafraichir = null;
|
|
|
21 |
|
|
|
22 |
public StructureAPersonneAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
|
|
23 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
24 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
25 |
}
|
231 |
jp_milcent |
26 |
|
763 |
jpm |
27 |
public void selectionner(final String structureId, final String roleId) {
|
|
|
28 |
String[] parametres = {structureId, roleId};
|
|
|
29 |
|
|
|
30 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
|
|
31 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
32 |
@Override
|
|
|
33 |
public void surReponse(JSONValue responseValue) {
|
|
|
34 |
Information info = new Information("liste_structure_a_personne");
|
|
|
35 |
if (responseValue != null) {
|
|
|
36 |
// Si la requête est un succès, reception d'un tableau
|
|
|
37 |
if (responseValue.isArray() != null) {
|
|
|
38 |
final JSONArray reponse = responseValue.isArray();
|
|
|
39 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
40 |
StructureAPersonneListe personnel = new StructureAPersonneListe(reponse);
|
|
|
41 |
info.setDonnee(0, personnel);
|
|
|
42 |
// et on met à jour le demandeur des données
|
|
|
43 |
vueARafraichir.rafraichir(info);
|
208 |
jp_milcent |
44 |
} else {
|
763 |
jpm |
45 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un talbeau JSON et vaut : "+responseValue.toString(), null);
|
208 |
jp_milcent |
46 |
}
|
763 |
jpm |
47 |
} else {
|
|
|
48 |
if (structureId == null) {
|
|
|
49 |
// 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
|
|
|
50 |
info.setMessage("Aucun personnel");
|
|
|
51 |
vueARafraichir.rafraichir(info);
|
|
|
52 |
}
|
208 |
jp_milcent |
53 |
}
|
763 |
jpm |
54 |
}
|
|
|
55 |
});
|
208 |
jp_milcent |
56 |
}
|
231 |
jp_milcent |
57 |
|
767 |
jpm |
58 |
public void ajouter(String structureId, StructureAPersonne personnel) {
|
|
|
59 |
String postDonneesEncodees = construirePost(structureId, personnel);
|
763 |
jpm |
60 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
61 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
62 |
@Override
|
|
|
63 |
public void surReponse(JSONValue responseValue) {
|
|
|
64 |
// Si la requête est un succès, reception d'une chaine
|
|
|
65 |
if (responseValue.isString() != null) {
|
|
|
66 |
Information info = new Information("ajout_structure_a_personne");
|
|
|
67 |
info.setMessage(responseValue.isString().stringValue());
|
767 |
jpm |
68 |
vueARafraichir.rafraichir(info);
|
763 |
jpm |
69 |
} else {
|
|
|
70 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
71 |
}
|
763 |
jpm |
72 |
}
|
|
|
73 |
});
|
231 |
jp_milcent |
74 |
}
|
|
|
75 |
|
767 |
jpm |
76 |
public void modifier(StructureAPersonne personnel) {
|
|
|
77 |
String[] parametres = {personnel.getIdStructure(), personnel.getIdPersonne(), personnel.getIdRole()};
|
|
|
78 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
231 |
jp_milcent |
79 |
|
767 |
jpm |
80 |
String postDonneesEncodees = construirePost(personnel.getIdStructure(), personnel);
|
|
|
81 |
|
|
|
82 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
83 |
@Override
|
|
|
84 |
public void surReponse(JSONValue responseValue) {
|
|
|
85 |
Information info = new Information("modif_structure_a_personne");
|
|
|
86 |
// Si la requête est un succès, reception d'une chaine
|
|
|
87 |
if (responseValue.isString() != null) {
|
|
|
88 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
89 |
vueARafraichir.rafraichir(info);
|
|
|
90 |
} else {
|
|
|
91 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
92 |
}
|
767 |
jpm |
93 |
}
|
|
|
94 |
});
|
231 |
jp_milcent |
95 |
}
|
|
|
96 |
|
767 |
jpm |
97 |
public void supprimer(String idStrAPer) {
|
|
|
98 |
String[] parametres = {utilisateurId, idStrAPer};
|
|
|
99 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
100 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
101 |
@Override
|
|
|
102 |
public void surReponse(JSONValue responseValue) {
|
|
|
103 |
if (responseValue.isString() != null) {
|
|
|
104 |
Information info = new Information("suppression_structure_a_personne");
|
|
|
105 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
106 |
vueARafraichir.rafraichir(info);
|
|
|
107 |
} else {
|
|
|
108 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
109 |
}
|
767 |
jpm |
110 |
}
|
|
|
111 |
});
|
231 |
jp_milcent |
112 |
}
|
602 |
jp_milcent |
113 |
|
767 |
jpm |
114 |
private String construirePost(String structureId, StructureAPersonne personnel) {
|
602 |
jp_milcent |
115 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
|
609 |
jp_milcent |
116 |
if (!personnel.getIdPersonne().equals("")) {
|
|
|
117 |
postDonnees += "&csap_id_personne=" + URL.encodeComponent(personnel.getIdPersonne()) +
|
|
|
118 |
"&cp_id_personne=" + URL.encodeComponent(personnel.getIdPersonne());
|
|
|
119 |
}
|
611 |
jp_milcent |
120 |
postDonnees += "&csap_id_structure=" + URL.encodeComponent(structureId) +
|
|
|
121 |
"&csap_id_role=" + URL.encodeComponent(personnel.getIdRole()) +
|
602 |
jp_milcent |
122 |
"&csap_ce_truk_fonction=" + URL.encodeComponent(personnel.getFonction()) +
|
|
|
123 |
"&csap_service=" + URL.encodeComponent(personnel.getService()) +
|
|
|
124 |
"&csap_ce_truk_statut=" + URL.encodeComponent(personnel.getStatut()) +
|
|
|
125 |
"&csap_mark_contact=" + URL.encodeComponent(personnel.getContact()) +
|
|
|
126 |
"&csap_bota_travail_hebdo_tps=" + URL.encodeComponent(personnel.getBotaTravailHebdoTps()) +
|
609 |
jp_milcent |
127 |
"&cp_ce_projet=" + URL.encodeComponent(personnel.getIdProjetPersonne()) +
|
602 |
jp_milcent |
128 |
"&cp_prenom=" + URL.encodeComponent(personnel.getPrenom()) +
|
|
|
129 |
"&cp_nom=" + URL.encodeComponent(personnel.getNom()) +
|
|
|
130 |
"&cp_truk_telephone=" + URL.encodeComponent(personnel.getTelephone()) +
|
|
|
131 |
"&cp_truk_courriel=" + URL.encodeComponent(personnel.getCourriel()) +
|
|
|
132 |
"&cp_ce_truk_specialite=" + URL.encodeComponent(personnel.getSpecialite()) +
|
|
|
133 |
"";
|
|
|
134 |
return postDonnees;
|
|
|
135 |
}
|
208 |
jp_milcent |
136 |
}
|