935 |
jpm |
1 |
package org.tela_botanica.client.modeles.collection;
|
875 |
jpm |
2 |
|
|
|
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.RegistreId;
|
|
|
5 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
6 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
|
|
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
935 |
jpm |
8 |
import org.tela_botanica.client.modeles.Information;
|
1367 |
cyprien |
9 |
import org.tela_botanica.client.synchronisation.Reponse;
|
883 |
jpm |
10 |
import org.tela_botanica.client.util.Debug;
|
875 |
jpm |
11 |
import org.tela_botanica.client.util.UtilDAO;
|
|
|
12 |
|
|
|
13 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
14 |
import com.google.gwt.core.client.GWT;
|
|
|
15 |
import com.google.gwt.http.client.URL;
|
|
|
16 |
import com.google.gwt.json.client.JSONArray;
|
|
|
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
|
|
19 |
public class CollectionAPersonneAsyncDao {
|
|
|
20 |
private static final String SERVICE_NOM = "CoelCollectionAPersonne";
|
|
|
21 |
|
|
|
22 |
private String utilisateurId = null;
|
|
|
23 |
private Rafraichissable vueARafraichir = null;
|
|
|
24 |
|
|
|
25 |
public CollectionAPersonneAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
1367 |
cyprien |
26 |
if (Mediateur.DEBUG) System.out.println("|| CollectionAPersonneAsyncDao > vueARafraichir = "+vueARafraichirCourrante.getClass().toString());
|
875 |
jpm |
27 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
28 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
29 |
}
|
|
|
30 |
|
1367 |
cyprien |
31 |
public void selectionner(final String collectionId, final String roleId, final Integer seqId) {
|
875 |
jpm |
32 |
String[] parametres = {collectionId, roleId};
|
|
|
33 |
|
|
|
34 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
1329 |
cyprien |
35 |
|
875 |
jpm |
36 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
37 |
@Override
|
|
|
38 |
public void surReponse(JSONValue responseValue) {
|
|
|
39 |
Information info = new Information("liste_collection_a_personne");
|
|
|
40 |
if (responseValue != null) {
|
|
|
41 |
// Si la requête est un succès, reception d'un tableau
|
|
|
42 |
if (responseValue.isArray() != null) {
|
|
|
43 |
final JSONArray reponse = responseValue.isArray();
|
|
|
44 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
45 |
CollectionAPersonneListe personnes = new CollectionAPersonneListe(reponse);
|
|
|
46 |
info.setDonnee(0, personnes);
|
|
|
47 |
// et on met à jour le demandeur des données
|
1367 |
cyprien |
48 |
if (seqId != null) {
|
|
|
49 |
Reponse reponseRequete = new Reponse(info, seqId);
|
|
|
50 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
51 |
}
|
|
|
52 |
else {
|
|
|
53 |
vueARafraichir.rafraichir(info);
|
|
|
54 |
}
|
875 |
jpm |
55 |
} else {
|
|
|
56 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
57 |
}
|
|
|
58 |
} else {
|
|
|
59 |
if (collectionId == null) {
|
|
|
60 |
// Dans le cas, où nous demandons toutes les relations Collection à Personne et qu'il n'y en a pas, nous retournons un message d'information
|
|
|
61 |
info.setMessage("Aucune relations entre la collection et les personnes");
|
|
|
62 |
vueARafraichir.rafraichir(info);
|
|
|
63 |
}
|
|
|
64 |
}
|
|
|
65 |
}
|
|
|
66 |
});
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
public void ajouter(String collectionId, CollectionAPersonne personnes) {
|
|
|
70 |
String postDonneesEncodees = construirePost(collectionId, personnes);
|
|
|
71 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
72 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
73 |
@Override
|
|
|
74 |
public void surReponse(JSONValue responseValue) {
|
|
|
75 |
// Si la requête est un succès, reception d'une chaine
|
|
|
76 |
if (responseValue.isString() != null) {
|
|
|
77 |
Information info = new Information("ajout_collection_a_personne");
|
|
|
78 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
79 |
vueARafraichir.rafraichir(info);
|
|
|
80 |
} else {
|
|
|
81 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
82 |
}
|
|
|
83 |
}
|
|
|
84 |
});
|
|
|
85 |
}
|
|
|
86 |
|
|
|
87 |
public void modifier(CollectionAPersonne personnes) {
|
|
|
88 |
String[] parametres = {personnes.getIdCollection(), personnes.getIdPersonne(), personnes.getIdRole()};
|
|
|
89 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
90 |
|
|
|
91 |
String postDonneesEncodees = construirePost(personnes.getIdCollection(), personnes);
|
1329 |
cyprien |
92 |
|
875 |
jpm |
93 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
94 |
@Override
|
|
|
95 |
public void surReponse(JSONValue responseValue) {
|
|
|
96 |
Information info = new Information("modif_collection_a_personne");
|
|
|
97 |
// Si la requête est un succès, reception d'une chaine
|
|
|
98 |
if (responseValue.isString() != null) {
|
|
|
99 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
100 |
vueARafraichir.rafraichir(info);
|
|
|
101 |
} else {
|
|
|
102 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
103 |
}
|
|
|
104 |
}
|
|
|
105 |
});
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
public void supprimer(String idCollectionAPersonne) {
|
|
|
109 |
String[] parametres = {utilisateurId, idCollectionAPersonne};
|
|
|
110 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
111 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
112 |
@Override
|
|
|
113 |
public void surReponse(JSONValue responseValue) {
|
|
|
114 |
if (responseValue.isString() != null) {
|
|
|
115 |
Information info = new Information("suppression_collection_a_personne");
|
|
|
116 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
117 |
vueARafraichir.rafraichir(info);
|
|
|
118 |
} else {
|
|
|
119 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
120 |
}
|
|
|
121 |
}
|
|
|
122 |
});
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
private String construirePost(String collectionId, CollectionAPersonne personne) {
|
|
|
126 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId) +
|
|
|
127 |
"&ccap_id_collection=" + URL.encodeComponent(collectionId) +
|
|
|
128 |
"&ccap_id_personne=" + URL.encodeComponent(personne.getIdPersonne()) +
|
|
|
129 |
"&ccap_id_role=" + URL.encodeComponent(personne.getIdRole());
|
|
|
130 |
return postDonnees;
|
|
|
131 |
}
|
|
|
132 |
}
|