985 |
jpm |
1 |
package org.tela_botanica.client.modeles.commentaire;
|
|
|
2 |
|
1049 |
gduche |
3 |
import java.util.HashMap;
|
|
|
4 |
|
985 |
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;
|
|
|
10 |
import org.tela_botanica.client.modeles.Information;
|
|
|
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.json.client.JSONArray;
|
|
|
16 |
import com.google.gwt.json.client.JSONObject;
|
|
|
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
|
|
19 |
public class CommentaireAsyncDao {
|
|
|
20 |
private static final String SERVICE_NOM = "CoelCommentaire";
|
|
|
21 |
|
|
|
22 |
private String utilisateurId = null;
|
|
|
23 |
private Rafraichissable vueARafraichir = null;
|
|
|
24 |
|
|
|
25 |
public CommentaireAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
|
|
26 |
vueARafraichir = vueARafraichirCourrante ;
|
|
|
27 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
28 |
}
|
|
|
29 |
|
1049 |
gduche |
30 |
public void selectionner(final String commentaireId, String projetId, String titre, final int pageCourante, final int nbElements) {
|
997 |
jpm |
31 |
String[] parametres = {projetId, commentaireId, titre};
|
1049 |
gduche |
32 |
|
|
|
33 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
1058 |
gduche |
34 |
restrictions.put("start", String.valueOf(pageCourante*nbElements));
|
1049 |
gduche |
35 |
if (nbElements != -1) {
|
|
|
36 |
restrictions.put("limit", String.valueOf(nbElements));
|
|
|
37 |
}
|
|
|
38 |
|
1329 |
cyprien |
39 |
restrictions.put("orderby", "ccac_id_collection DESC");
|
|
|
40 |
|
1049 |
gduche |
41 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
985 |
jpm |
42 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
43 |
@Override
|
|
|
44 |
public void surReponse(JSONValue responseValue) {
|
|
|
45 |
if (responseValue != null) {
|
|
|
46 |
// Si la requête est un succès, réception d'un objet ou d'un tableau
|
1049 |
gduche |
47 |
JSONArray responseArray = responseValue.isArray();
|
1329 |
cyprien |
48 |
|
1049 |
gduche |
49 |
if (responseArray.get(1).isObject() != null) {
|
|
|
50 |
final JSONObject reponse = responseArray.get(1).isObject();
|
985 |
jpm |
51 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
52 |
Commentaire commentaire = new Commentaire(reponse);
|
|
|
53 |
// et on met à jour le demandeur des données
|
|
|
54 |
vueARafraichir.rafraichir(commentaire);
|
|
|
55 |
} else if (responseValue.isArray() != null) {
|
1329 |
cyprien |
56 |
final JSONArray reponse = responseValue.isArray();
|
1049 |
gduche |
57 |
CommentaireListe commentaires;
|
|
|
58 |
if (reponse.get(1).isObject() != null) {
|
|
|
59 |
commentaires = new CommentaireListe(reponse.get(1).isArray());
|
|
|
60 |
} else {
|
|
|
61 |
commentaires = new CommentaireListe(reponse.get(1).isArray(), reponse.get(0).isNumber(), vueARafraichir);
|
|
|
62 |
}
|
|
|
63 |
commentaires.setTaillePage(nbElements);
|
|
|
64 |
commentaires.setPageCourante(pageCourante);
|
|
|
65 |
|
985 |
jpm |
66 |
vueARafraichir.rafraichir(commentaires);
|
|
|
67 |
} else {
|
|
|
68 |
GWT.log("La réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
69 |
}
|
|
|
70 |
} else {
|
|
|
71 |
// Dans le cas, où nous demandons toutes les publication et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
72 |
if (commentaireId == null) {
|
|
|
73 |
CommentaireListe commentaires = new CommentaireListe(0);
|
|
|
74 |
vueARafraichir.rafraichir(commentaires);
|
|
|
75 |
}
|
|
|
76 |
}
|
|
|
77 |
}
|
|
|
78 |
});
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
public void ajouter(Commentaire commentaire) {
|
|
|
82 |
String postDonneesEncodees = commentaire.obtenirChainePOST()+"&cmhl_ce_modifier_par="+utilisateurId;
|
|
|
83 |
|
|
|
84 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
85 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
86 |
@Override
|
|
|
87 |
public void surReponse(JSONValue reponseValeur) {
|
|
|
88 |
traiterReponse(reponseValeur, "ajout_commentaire");
|
|
|
89 |
}
|
|
|
90 |
}) ;
|
|
|
91 |
}
|
|
|
92 |
|
|
|
93 |
public void modifier(Commentaire commentaire) {
|
|
|
94 |
String[] parametres = {commentaire.getId()};
|
|
|
95 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
96 |
|
|
|
97 |
String postDonneesEncodees = commentaire.obtenirChainePOST()+"&cmhl_ce_modifier_par="+utilisateurId;
|
|
|
98 |
|
|
|
99 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
100 |
@Override
|
|
|
101 |
public void surReponse(JSONValue reponseValeur) {
|
|
|
102 |
traiterReponse(reponseValeur, "modif_commentaire");
|
|
|
103 |
}
|
|
|
104 |
});
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
public void supprimer(String commentairesId) {
|
|
|
108 |
String[] parametres = {utilisateurId, commentairesId};
|
|
|
109 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
110 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
111 |
@Override
|
|
|
112 |
public void surReponse(JSONValue reponseValeur) {
|
|
|
113 |
traiterReponse(reponseValeur, "suppression_commentaire");
|
|
|
114 |
}
|
|
|
115 |
});
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
private void traiterReponse(JSONValue reponseValeur, String type) {
|
|
|
119 |
Information info = new Information(type);
|
|
|
120 |
// Si la requête est un succès, réception d'une chaîne
|
|
|
121 |
if (reponseValeur.isString() != null) {
|
|
|
122 |
String idOuMessage = reponseValeur.isString().stringValue();
|
|
|
123 |
if (idOuMessage.matches("^[0-9]+$")) {
|
|
|
124 |
info.setDonnee(idOuMessage);
|
|
|
125 |
} else {
|
|
|
126 |
info.setMessage(idOuMessage);
|
|
|
127 |
}
|
|
|
128 |
} else {
|
|
|
129 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
|
|
130 |
}
|
|
|
131 |
vueARafraichir.rafraichir(info);
|
|
|
132 |
}
|
|
|
133 |
|
|
|
134 |
}
|