935 |
jpm |
1 |
package org.tela_botanica.client.modeles.collection;
|
883 |
jpm |
2 |
|
1513 |
jpm |
3 |
import java.util.HashMap;
|
|
|
4 |
|
883 |
jpm |
5 |
import org.tela_botanica.client.Mediateur;
|
|
|
6 |
import org.tela_botanica.client.RegistreId;
|
|
|
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;
|
1367 |
cyprien |
11 |
import org.tela_botanica.client.synchronisation.Reponse;
|
883 |
jpm |
12 |
import org.tela_botanica.client.util.Debug;
|
|
|
13 |
import org.tela_botanica.client.util.UtilDAO;
|
|
|
14 |
|
|
|
15 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
16 |
import com.google.gwt.core.client.GWT;
|
|
|
17 |
import com.google.gwt.http.client.URL;
|
|
|
18 |
import com.google.gwt.json.client.JSONArray;
|
1513 |
jpm |
19 |
import com.google.gwt.json.client.JSONObject;
|
883 |
jpm |
20 |
import com.google.gwt.json.client.JSONValue;
|
|
|
21 |
|
|
|
22 |
public class CollectionAPublicationAsyncDao {
|
|
|
23 |
private static final String SERVICE_NOM = "CoelCollectionAPublication";
|
|
|
24 |
|
|
|
25 |
private String utilisateurId = null;
|
|
|
26 |
private Rafraichissable vueARafraichir = null;
|
|
|
27 |
|
|
|
28 |
public CollectionAPublicationAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
1367 |
cyprien |
29 |
if (Mediateur.DEBUG) System.out.println("|| CollectionAPublicationAsyncDao > vueARafraichir = "+vueARafraichirCourrante.getClass().toString());
|
883 |
jpm |
30 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
31 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
32 |
}
|
|
|
33 |
|
1513 |
jpm |
34 |
public void selectionner(final boolean paginationProgressive, final String collectionId, final String recherche, final int start, final int nbElements, final Integer seqId) {
|
|
|
35 |
|
883 |
jpm |
36 |
String[] parametres = {collectionId};
|
|
|
37 |
|
1513 |
jpm |
38 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
|
|
39 |
|
|
|
40 |
if (nbElements != -1) {
|
|
|
41 |
restrictions.put("limit", String.valueOf(nbElements));
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
restrictions.put("orderby", "cpu_fmt_auteur");
|
1329 |
cyprien |
45 |
|
1513 |
jpm |
46 |
/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
|
|
|
47 |
if (paginationProgressive) {
|
|
|
48 |
|
|
|
49 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
50 |
restrictions.put("start", String.valueOf(start));
|
|
|
51 |
|
|
|
52 |
/** CONSTRUCTION DE LA REQUETE **/
|
|
|
53 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
54 |
|
|
|
55 |
/** ENVOI DE LA REQUETE **/
|
|
|
56 |
rb.envoyerRequete(null, new JsonRestRequestCallback()
|
|
|
57 |
{
|
|
|
58 |
/** RECEPTION DE LA REPONSE **/
|
|
|
59 |
public void surReponse(JSONValue responseValue)
|
|
|
60 |
{
|
|
|
61 |
/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
|
|
|
62 |
* On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
|
|
|
63 |
|
|
|
64 |
if (seqId != null) {
|
|
|
65 |
if (Mediateur.DEBUG) System.out.println("<-- CollectionAPublicationAsyncDao > Liste paginée, retour au sequenceur");
|
|
|
66 |
Reponse reponseRequete = new Reponse(responseValue, seqId);
|
|
|
67 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
68 |
}
|
|
|
69 |
else {
|
|
|
70 |
if (Mediateur.DEBUG) System.out.println("<-- CollectionAPublicationAsyncDao > Liste paginée, retour à "+vueARafraichir.getClass().toString());
|
|
|
71 |
vueARafraichir.rafraichir(responseValue);
|
|
|
72 |
}
|
|
|
73 |
}
|
|
|
74 |
});
|
|
|
75 |
}
|
|
|
76 |
/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
|
|
|
77 |
else {
|
|
|
78 |
|
|
|
79 |
/** DEFINITION DU TUPLE DE DEPART **/
|
|
|
80 |
restrictions.put("start", String.valueOf(start*nbElements));
|
|
|
81 |
|
|
|
82 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
|
|
83 |
|
|
|
84 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
85 |
@Override
|
|
|
86 |
public void surReponse(JSONValue responseValue) {
|
|
|
87 |
|
|
|
88 |
Information info = new Information("liste_collection_a_publication");
|
|
|
89 |
|
|
|
90 |
if (responseValue != null) {
|
|
|
91 |
|
|
|
92 |
JSONObject responseObject = responseValue.isObject();
|
|
|
93 |
if (responseObject != null) {
|
|
|
94 |
// Si la réponse est un tableau, alors c'est une liste de collections qui a été retournée
|
|
|
95 |
if (responseObject.get("collectionsAPublication").isArray() != null) {
|
|
|
96 |
|
|
|
97 |
final JSONArray reponse = responseObject.get("collectionsAPublication").isArray();
|
|
|
98 |
|
|
|
99 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
100 |
CollectionAPublicationListe publications = new CollectionAPublicationListe(reponse);
|
|
|
101 |
info.setDonnee(0, publications);
|
|
|
102 |
|
|
|
103 |
// et on met à jour le demandeur des données
|
|
|
104 |
if (seqId != null) {
|
|
|
105 |
if (Mediateur.DEBUG) System.out.println("<-- CollectionAPublicationAsyncDao > Liste non paginée, retour au sequenceur");
|
|
|
106 |
Reponse reponseRequete = new Reponse(info, seqId);
|
|
|
107 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
108 |
}
|
|
|
109 |
else {
|
|
|
110 |
if (Mediateur.DEBUG) System.out.println("<-- CollectionAPublicationAsyncDao > Liste non paginée, retour au sequenceur");
|
|
|
111 |
vueARafraichir.rafraichir(info);
|
|
|
112 |
}
|
|
|
113 |
// Si la réponse est un objet, alors c'est une unique collection qui a été retournée
|
|
|
114 |
} else if (responseObject.get("collectionsAPublication").isObject() != null) {
|
|
|
115 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un tableau JSON et vaut : "+responseValue.toString(), null);
|
|
|
116 |
}
|
1367 |
cyprien |
117 |
}
|
1513 |
jpm |
118 |
} else {
|
|
|
119 |
// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
120 |
if (collectionId == null) {
|
|
|
121 |
info.setMessage("Aucune relations entre la collection et les publications");
|
1367 |
cyprien |
122 |
vueARafraichir.rafraichir(info);
|
|
|
123 |
}
|
883 |
jpm |
124 |
}
|
|
|
125 |
}
|
1513 |
jpm |
126 |
});
|
|
|
127 |
}
|
|
|
128 |
}
|
883 |
jpm |
129 |
|
|
|
130 |
public void ajouter(String collectionId, CollectionAPublication publications) {
|
|
|
131 |
String postDonneesEncodees = construirePost(collectionId, publications);
|
|
|
132 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
133 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
134 |
@Override
|
|
|
135 |
public void surReponse(JSONValue responseValue) {
|
|
|
136 |
// Si la requête est un succès, reception d'une chaine
|
|
|
137 |
if (responseValue.isString() != null) {
|
|
|
138 |
Information info = new Information("ajout_collection_a_publication");
|
|
|
139 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
140 |
vueARafraichir.rafraichir(info);
|
|
|
141 |
} else {
|
|
|
142 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
143 |
}
|
|
|
144 |
}
|
|
|
145 |
});
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
public void modifier(CollectionAPublication publications) {
|
|
|
149 |
String[] parametres = {publications.getIdCollection(), publications.getIdPublication()};
|
|
|
150 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
151 |
|
|
|
152 |
String postDonneesEncodees = construirePost(publications.getIdCollection(), publications);
|
|
|
153 |
|
|
|
154 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
155 |
@Override
|
|
|
156 |
public void surReponse(JSONValue responseValue) {
|
|
|
157 |
Information info = new Information("modif_collection_a_publication");
|
|
|
158 |
// Si la requête est un succès, reception d'une chaine
|
|
|
159 |
if (responseValue.isString() != null) {
|
|
|
160 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
161 |
vueARafraichir.rafraichir(info);
|
|
|
162 |
} else {
|
|
|
163 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
164 |
}
|
|
|
165 |
}
|
|
|
166 |
});
|
|
|
167 |
}
|
|
|
168 |
|
|
|
169 |
public void supprimer(String idCollectionAPublication) {
|
|
|
170 |
String[] parametres = {utilisateurId, idCollectionAPublication};
|
|
|
171 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
172 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
173 |
@Override
|
|
|
174 |
public void surReponse(JSONValue responseValue) {
|
|
|
175 |
if (responseValue.isString() != null) {
|
|
|
176 |
Information info = new Information("suppression_collection_a_publication");
|
|
|
177 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
178 |
vueARafraichir.rafraichir(info);
|
|
|
179 |
} else {
|
|
|
180 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
181 |
}
|
|
|
182 |
}
|
|
|
183 |
});
|
|
|
184 |
}
|
|
|
185 |
|
|
|
186 |
private String construirePost(String collectionId, CollectionAPublication publication) {
|
|
|
187 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId) +
|
|
|
188 |
"&ccapu_id_collection=" + URL.encodeComponent(collectionId) +
|
|
|
189 |
"&ccapu_id_publication=" + URL.encodeComponent(publication.getIdPublication());
|
|
|
190 |
return postDonnees;
|
|
|
191 |
}
|
|
|
192 |
}
|