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