935 |
jpm |
1 |
package org.tela_botanica.client.modeles.publication;
|
736 |
aurelien |
2 |
|
761 |
jpm |
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.RegistreId;
|
736 |
aurelien |
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;
|
1218 |
cyprien |
9 |
import org.tela_botanica.client.util.Debug;
|
748 |
jpm |
10 |
import org.tela_botanica.client.util.UtilDAO;
|
736 |
aurelien |
11 |
|
761 |
jpm |
12 |
import com.extjs.gxt.ui.client.Registry;
|
736 |
aurelien |
13 |
import com.google.gwt.core.client.GWT;
|
|
|
14 |
import com.google.gwt.http.client.URL;
|
|
|
15 |
import com.google.gwt.json.client.JSONArray;
|
|
|
16 |
import com.google.gwt.json.client.JSONObject;
|
|
|
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
|
|
19 |
public class PublicationAPersonneAsyncDao {
|
|
|
20 |
|
|
|
21 |
private static final String SERVICE_NOM = "CoelPublicationAPersonne";
|
|
|
22 |
|
761 |
jpm |
23 |
private String utilisateurId = null;
|
736 |
aurelien |
24 |
private Rafraichissable vueARafraichir = null;
|
|
|
25 |
|
751 |
jpm |
26 |
public PublicationAPersonneAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
|
|
27 |
vueARafraichir = vueARafraichirCourrante;
|
761 |
jpm |
28 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
736 |
aurelien |
29 |
}
|
|
|
30 |
|
822 |
jpm |
31 |
public void selectionner(String publicationId, String personnesId, String roleId) {
|
1218 |
cyprien |
32 |
|
|
|
33 |
Debug.log("|> BEGIN PublicationAPersonneAsyncDAO.selectionner(String publicationId, String personnesId, String roleId)");
|
|
|
34 |
|
|
|
35 |
Debug.log("|--> Requete, publicationId="+publicationId+", personnesId="+personnesId+", roleId="+roleId);
|
|
|
36 |
|
822 |
jpm |
37 |
String[] parametres = {publicationId, personnesId, roleId};
|
1218 |
cyprien |
38 |
|
|
|
39 |
Debug.log("|--> Requete, SERVICE_NOM ="+SERVICE_NOM);
|
|
|
40 |
Debug.log("|--> Requete, parametres ="+parametres);
|
|
|
41 |
|
748 |
jpm |
42 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
1218 |
cyprien |
43 |
|
741 |
aurelien |
44 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
45 |
@Override
|
|
|
46 |
public void surReponse(JSONValue responseValue) {
|
|
|
47 |
if (responseValue != null) {
|
748 |
jpm |
48 |
// Si la requête est un succès, réception d'un objet ou d'un tableau
|
741 |
aurelien |
49 |
if (responseValue.isObject() != null) {
|
|
|
50 |
final JSONObject reponse = responseValue.isObject();
|
|
|
51 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
52 |
PublicationAPersonne publicationAPersonne = new PublicationAPersonne(reponse);
|
1218 |
cyprien |
53 |
|
|
|
54 |
Debug.log("|--> PublicationAPersonneAsyncDAO.selectionner() : publicationAPersonne="+publicationAPersonne.toString());
|
|
|
55 |
|
741 |
aurelien |
56 |
// et on met à jour le demandeur des données
|
|
|
57 |
vueARafraichir.rafraichir(publicationAPersonne);
|
|
|
58 |
} else if (responseValue.isArray() != null) {
|
1218 |
cyprien |
59 |
|
|
|
60 |
Debug.log("|--> PublicationAPersonneAsyncDAO.selectionner() : responseValue.isArray()");
|
|
|
61 |
|
741 |
aurelien |
62 |
final JSONArray reponse = responseValue.isArray();
|
|
|
63 |
PublicationAPersonneListe publicationsAPersonneListe = new PublicationAPersonneListe(reponse);
|
1218 |
cyprien |
64 |
|
|
|
65 |
Debug.log("|--> PublicationAPersonneAsyncDAO.selectionner() : publicationsAPersonneListe="+publicationsAPersonneListe.toString());
|
|
|
66 |
Debug.log("|--> PublicationAPersonneAsyncDAO.selectionner() : appel à rafraichir(publicationsAPersonneListe)");
|
|
|
67 |
|
741 |
aurelien |
68 |
vueARafraichir.rafraichir(publicationsAPersonneListe);
|
|
|
69 |
} else {
|
784 |
aurelien |
70 |
GWT.log("La réponse n'est pas un objet ou un tableau JSON et vaut : "+responseValue.toString(), null);
|
741 |
aurelien |
71 |
}
|
|
|
72 |
} else {
|
1218 |
cyprien |
73 |
|
|
|
74 |
Debug.log("|--> PublicationAPersonneAsyncDAO.selectionner() : ELSE");
|
|
|
75 |
|
741 |
aurelien |
76 |
// Dans le cas, où nous demandons toutes les publication et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
77 |
PublicationAPersonneListe publicationAPersonneListe = new PublicationAPersonneListe(0);
|
|
|
78 |
vueARafraichir.rafraichir(publicationAPersonneListe);
|
|
|
79 |
}
|
|
|
80 |
}
|
|
|
81 |
});
|
1218 |
cyprien |
82 |
|
|
|
83 |
Debug.log("|> END PublicationAPersonneAsyncDAO.selectionner(String publicationId, String personnesId, String roleId)");
|
|
|
84 |
|
741 |
aurelien |
85 |
}
|
|
|
86 |
|
822 |
jpm |
87 |
public void ajouter(String publicationId, String personnesId, String roleId) {
|
1218 |
cyprien |
88 |
Debug.log("<8-8> BEGIN PublicationAPersonneAsyncDao.ajouter()");
|
|
|
89 |
|
|
|
90 |
Debug.log("<8-8> Service_nom="+SERVICE_NOM);
|
|
|
91 |
|
761 |
jpm |
92 |
String postDonneesEncodees = "cpuap_id_publication="+URL.encodeComponent(publicationId)
|
901 |
jpm |
93 |
+"&cpuap_id_auteur="+URL.encodeComponent(personnesId)
|
822 |
jpm |
94 |
+"&cpuap_id_role="+URL.encodeComponent(roleId)
|
761 |
jpm |
95 |
+"&cmhl_ce_modifier_par="+utilisateurId;
|
1218 |
cyprien |
96 |
|
|
|
97 |
Debug.log("<8-8> postDonneesEncodees="+postDonneesEncodees);
|
|
|
98 |
|
751 |
jpm |
99 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
736 |
aurelien |
100 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
101 |
@Override
|
|
|
102 |
public void surReponse(JSONValue reponseValeur) {
|
901 |
jpm |
103 |
traiterReponse(reponseValeur, "ajout_publication_a_personne");
|
736 |
aurelien |
104 |
}
|
1132 |
jpm |
105 |
});
|
1218 |
cyprien |
106 |
|
|
|
107 |
Debug.log("<8-8> END PublicationAPersonneAsyncDao.ajouter()");
|
736 |
aurelien |
108 |
}
|
741 |
aurelien |
109 |
|
822 |
jpm |
110 |
public void modifier(String publicationId, String personnesId, String roleId) {
|
|
|
111 |
String[] parametres = {publicationId, personnesId, roleId};
|
751 |
jpm |
112 |
|
753 |
aurelien |
113 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
751 |
jpm |
114 |
|
822 |
jpm |
115 |
String postDonneesEncodees = "cpuap_id_publication="+URL.encodeComponent(publicationId)
|
1132 |
jpm |
116 |
+"&cmhl_ce_modifier_par="+utilisateurId;
|
751 |
jpm |
117 |
|
741 |
aurelien |
118 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
119 |
@Override
|
|
|
120 |
public void surReponse(JSONValue reponseValeur) {
|
901 |
jpm |
121 |
traiterReponse(reponseValeur, "modif_publication_a_personne");
|
741 |
aurelien |
122 |
}
|
1132 |
jpm |
123 |
});
|
741 |
aurelien |
124 |
}
|
|
|
125 |
|
901 |
jpm |
126 |
public void supprimer(String idPublicationAPersonne) {
|
|
|
127 |
String[] parametres = {utilisateurId, idPublicationAPersonne};
|
|
|
128 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
1218 |
cyprien |
129 |
|
|
|
130 |
Debug.log("888> BEGIN PublicationAPersonneAsyncDao.supprimer()");
|
|
|
131 |
Debug.log("888> idPublicationAPersonne="+idPublicationAPersonne);
|
|
|
132 |
|
901 |
jpm |
133 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
134 |
@Override
|
|
|
135 |
public void surReponse(JSONValue responseValue) {
|
|
|
136 |
if (responseValue.isString() != null) {
|
|
|
137 |
Information info = new Information("suppression_publication_a_personne");
|
|
|
138 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
139 |
vueARafraichir.rafraichir(info);
|
|
|
140 |
} else {
|
|
|
141 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
142 |
}
|
|
|
143 |
}
|
|
|
144 |
});
|
1218 |
cyprien |
145 |
|
|
|
146 |
Debug.log("888> END PublicationAPersonneAsyncDao.supprimer()");
|
901 |
jpm |
147 |
}
|
|
|
148 |
|
736 |
aurelien |
149 |
private void traiterReponse(JSONValue reponseValeur, String type) {
|
|
|
150 |
Information info = new Information(type);
|
748 |
jpm |
151 |
// Si la requête est un succès, réception d'une chaîne
|
736 |
aurelien |
152 |
if (reponseValeur.isBoolean() != null) {
|
|
|
153 |
info.setDonnee(reponseValeur.isBoolean().booleanValue());
|
|
|
154 |
} else if (reponseValeur.isString() != null) {
|
|
|
155 |
info.setDonnee(reponseValeur.isString().stringValue());
|
|
|
156 |
} else {
|
|
|
157 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
|
|
158 |
}
|
|
|
159 |
|
|
|
160 |
vueARafraichir.rafraichir(info);
|
|
|
161 |
}
|
|
|
162 |
}
|