989 |
jpm |
1 |
package org.tela_botanica.client.modeles.collection;
|
|
|
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;
|
|
|
8 |
import org.tela_botanica.client.modeles.Information;
|
1367 |
cyprien |
9 |
import org.tela_botanica.client.synchronisation.Reponse;
|
989 |
jpm |
10 |
import org.tela_botanica.client.util.Debug;
|
|
|
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 CollectionACommentaireAsyncDao {
|
|
|
20 |
private static final String SERVICE_NOM = "CoelCollectionACommentaire";
|
|
|
21 |
public static final String SUPPRESSION_PAR_COLLECTION = "SuppressionParCollection";
|
|
|
22 |
public static final String SUPPRESSION_PAR_COMMENTAIRE = "SuppressionParCommentaire";
|
|
|
23 |
|
|
|
24 |
private String utilisateurId = null;
|
|
|
25 |
private Rafraichissable vueARafraichir = null;
|
|
|
26 |
|
|
|
27 |
public CollectionACommentaireAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
1367 |
cyprien |
28 |
if (Mediateur.DEBUG) System.out.println("|| CollectionACommentaireAsyncDao > vueARafraichir = "+vueARafraichirCourrante.getClass().toString());
|
989 |
jpm |
29 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
30 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
31 |
}
|
|
|
32 |
|
1367 |
cyprien |
33 |
public void selectionner(final String collectionId, final Integer seqId) {
|
989 |
jpm |
34 |
String[] parametres = {collectionId};
|
|
|
35 |
|
|
|
36 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
1329 |
cyprien |
37 |
|
989 |
jpm |
38 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
39 |
@Override
|
|
|
40 |
public void surReponse(JSONValue responseValue) {
|
|
|
41 |
Information info = new Information("liste_collection_a_commentaire");
|
|
|
42 |
if (responseValue != null) {
|
|
|
43 |
// Si la requête est un succès, reception d'un tableau
|
|
|
44 |
if (responseValue.isArray() != null) {
|
|
|
45 |
final JSONArray reponse = responseValue.isArray();
|
|
|
46 |
// Transformation du tableau JSON réponse en ListCommentaier
|
|
|
47 |
CollectionACommentaireListe commentaires = new CollectionACommentaireListe(reponse);
|
|
|
48 |
info.setDonnee(0, commentaires);
|
1367 |
cyprien |
49 |
|
989 |
jpm |
50 |
// et on met à jour le demandeur des données
|
1367 |
cyprien |
51 |
if (seqId != null) {
|
|
|
52 |
Reponse reponseRequete = new Reponse(info, seqId);
|
|
|
53 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
54 |
}
|
|
|
55 |
else {
|
|
|
56 |
vueARafraichir.rafraichir(info);
|
|
|
57 |
}
|
989 |
jpm |
58 |
} else {
|
|
|
59 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
60 |
}
|
|
|
61 |
} else {
|
|
|
62 |
if (collectionId == null) {
|
|
|
63 |
// Dans le cas, où nous demandons toutes les relations Collection à Commentaires et qu'il n'y en a pas, nous retournons un message d'information
|
|
|
64 |
info.setMessage("Aucune relations entre la collection et les commentaires");
|
1367 |
cyprien |
65 |
|
|
|
66 |
if (seqId != null) {
|
|
|
67 |
Reponse reponseRequete = new Reponse(info, seqId);
|
|
|
68 |
vueARafraichir.rafraichir(reponseRequete);
|
|
|
69 |
}
|
|
|
70 |
else {
|
|
|
71 |
vueARafraichir.rafraichir(info);
|
|
|
72 |
}
|
989 |
jpm |
73 |
}
|
|
|
74 |
}
|
|
|
75 |
}
|
|
|
76 |
});
|
|
|
77 |
}
|
|
|
78 |
|
|
|
79 |
public void ajouter(String collectionId, CollectionACommentaire commentaires) {
|
|
|
80 |
String postDonneesEncodees = construirePost(collectionId, commentaires);
|
|
|
81 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
82 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
83 |
@Override
|
|
|
84 |
public void surReponse(JSONValue responseValue) {
|
|
|
85 |
// Si la requête est un succès, reception d'une chaine
|
|
|
86 |
if (responseValue.isString() != null) {
|
|
|
87 |
Information info = new Information("ajout_collection_a_commentaire");
|
|
|
88 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
89 |
vueARafraichir.rafraichir(info);
|
|
|
90 |
} else {
|
|
|
91 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
92 |
}
|
|
|
93 |
}
|
|
|
94 |
});
|
|
|
95 |
}
|
|
|
96 |
|
|
|
97 |
public void modifier(CollectionACommentaire commentaires) {
|
|
|
98 |
String[] parametres = {commentaires.getIdCollection(), commentaires.getIdCommentaire()};
|
|
|
99 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
100 |
|
|
|
101 |
String postDonneesEncodees = construirePost(commentaires.getIdCollection(), commentaires);
|
|
|
102 |
|
|
|
103 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
104 |
@Override
|
|
|
105 |
public void surReponse(JSONValue responseValue) {
|
|
|
106 |
Information info = new Information("modif_collection_a_commentaire");
|
|
|
107 |
// Si la requête est un succès, reception d'une chaine
|
|
|
108 |
if (responseValue.isString() != null) {
|
|
|
109 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
110 |
vueARafraichir.rafraichir(info);
|
|
|
111 |
} else {
|
|
|
112 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
113 |
}
|
|
|
114 |
}
|
|
|
115 |
});
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
public void supprimer(String idCollectionACommentaire, String mode) {
|
|
|
119 |
String[] parametres = {utilisateurId, idCollectionACommentaire, mode};
|
|
|
120 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
121 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
122 |
@Override
|
|
|
123 |
public void surReponse(JSONValue responseValue) {
|
|
|
124 |
if (responseValue.isString() != null) {
|
|
|
125 |
Information info = new Information("suppression_collection_a_commentaire");
|
|
|
126 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
127 |
vueARafraichir.rafraichir(info);
|
|
|
128 |
} else {
|
|
|
129 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
130 |
}
|
|
|
131 |
}
|
|
|
132 |
});
|
|
|
133 |
}
|
|
|
134 |
|
|
|
135 |
private String construirePost(String collectionId, CollectionACommentaire commentaire) {
|
|
|
136 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId) +
|
|
|
137 |
"&ccac_id_collection=" + URL.encodeComponent(collectionId) +
|
|
|
138 |
"&ccac_id_commentaire=" + URL.encodeComponent(commentaire.getIdCommentaire()) +
|
|
|
139 |
"&ccac_truk_type=" + URL.encodeComponent(commentaire.getType());
|
|
|
140 |
return postDonnees;
|
|
|
141 |
}
|
|
|
142 |
}
|