Subversion Repositories eFlore/Applications.coel

Rev

Rev 1415 | Rev 1513 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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