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