Subversion Repositories eFlore/Applications.coel

Rev

Rev 1327 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
935 jpm 1
package org.tela_botanica.client.modeles.structure;
121 jpm 2
 
1040 gduche 3
import java.util.HashMap;
4
 
770 jpm 5
import org.tela_botanica.client.Mediateur;
121 jpm 6
import org.tela_botanica.client.RegistreId;
770 jpm 7
import org.tela_botanica.client.http.JsonRestRequestBuilder;
8
import org.tela_botanica.client.http.JsonRestRequestCallback;
121 jpm 9
import org.tela_botanica.client.interfaces.Rafraichissable;
935 jpm 10
import org.tela_botanica.client.modeles.Information;
1040 gduche 11
import org.tela_botanica.client.modeles.personne.PersonneListe;
935 jpm 12
import org.tela_botanica.client.modeles.projet.ProjetListe;
1327 cyprien 13
import org.tela_botanica.client.util.Debug;
770 jpm 14
import org.tela_botanica.client.util.UtilDAO;
121 jpm 15
 
16
import com.extjs.gxt.ui.client.Registry;
133 jpm 17
import com.google.gwt.core.client.GWT;
121 jpm 18
import com.google.gwt.http.client.URL;
19
import com.google.gwt.json.client.JSONArray;
156 jp_milcent 20
import com.google.gwt.json.client.JSONObject;
121 jpm 21
import com.google.gwt.json.client.JSONValue;
22
 
23
public class StructureAsyncDao {
268 jp_milcent 24
	private static final String SERVICE_NOM = "CoelStructure";
264 jp_milcent 25
 
770 jpm 26
	private String utilisateurId = null;
27
	private Rafraichissable vueARafraichir = null;
28
 
29
	public StructureAsyncDao(Rafraichissable vue) {
30
		vueARafraichir = vue;
31
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
32
	}
1327 cyprien 33
 
34
	/**
35
	 *
36
	 * @param paginationProgressive : définit le mode de consultation de la base de données
37
	 * 			- True :	la consultation des données est progressive, ce qui signifie que la liste est chargée (paginée) au
38
	 * 						fur et à mesure de la consultation des données par l'utilisateur.
39
	 * 			- False :	la consultation des données est classique : un seul appel à la base de données est effectué, le retour
40
	 * 						est renvoyé à l'appelant
41
	 * 			// FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
42
	 */
43
	public void selectionner(final boolean paginationProgressive, final String projetId, final String structureId, final String nomStructure, final int start, final int nbElements) {
1040 gduche 44
 
1327 cyprien 45
		String nom = (nomStructure == null) ? "%" : nomStructure+"%";
46
		String[] parametres = {projetId, structureId, nom};
47
 
1040 gduche 48
		HashMap<String, String> restrictions = new HashMap<String, String>();
1327 cyprien 49
 
1040 gduche 50
		if (nbElements != -1)	{
51
			restrictions.put("limit", String.valueOf(nbElements));
52
		}
53
 
1327 cyprien 54
		/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
55
		if (paginationProgressive) {
56
 
57
			/** DEFINITION DU TUPLE DE DEPART **/
58
			restrictions.put("start", String.valueOf(start));
59
 
60
			/** CONSTRUCTION DE LA REQUETE **/
61
    		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
62
 
63
    		/** ENVOI DE LA REQUETE **/
64
    		rb.envoyerRequete(null, new JsonRestRequestCallback()
65
    		{
66
    			/** RECEPTION DE LA REPONSE **/
67
    			public void surReponse(JSONValue responseValue)
68
    			{
69
    				/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
70
    				 * On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
71
    				vueARafraichir.rafraichir(responseValue);
72
    			}
73
    		});
74
		}
75
		/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
76
		else {
77
 
78
			/** DEFINITION DU TUPLE DE DEPART **/
79
			restrictions.put("start", String.valueOf(start*nbElements));
80
 
81
			final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
82
 
83
			rb.envoyerRequete(null, new JsonRestRequestCallback() {
84
 
85
				public void surReponse(JSONValue responseValue) {
86
 
87
					if (responseValue != null) {
88
 
89
						Information info = new Information("selection_structure");
90
 
91
						JSONObject responseObject = responseValue.isObject();
92
 
93
						if (responseObject != null) {
94
 
95
							// Si la réponse est un tableau, alors c'est une liste de structure qui a été retournée
96
							if (responseObject.get("structures").isArray() != null) {
97
 
98
								JSONObject reponse = responseObject;
99
								StructureListe structures;
100
								structures = new StructureListe(reponse.get("structures").isArray(), reponse.get("nbElements").isNumber(), vueARafraichir);
101
								structures.setTaillePage(nbElements);
102
								structures.setPageCourante(start);
103
 
104
								info.setDonnee(0, structures);
105
								vueARafraichir.rafraichir(structures);
106
 
107
							// Si la réponse est un objet, alors c'est une unique structure qui a été retournée
108
							} else if (responseObject.get("structures").isObject() != null) {
109
 
110
								JSONObject reponse = responseObject.get("structures").isObject();
111
								Structure structure = new Structure(reponse);
112
								StructureConservation structureConservation = new StructureConservation(reponse);
113
								StructureValorisation structureValorisation = new StructureValorisation(reponse);
114
 
115
								info.setDonnee(0, structure);
116
								info.setDonnee(1, structureConservation);
117
								info.setDonnee(2, structureValorisation);
118
								vueARafraichir.rafraichir(info);
119
							}
120
						} else {
121
							GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
1040 gduche 122
						}
770 jpm 123
					} else {
1327 cyprien 124
						if (structureId == null) {
125
							// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
126
							StructureListe structures = new StructureListe(0);
127
							vueARafraichir.rafraichir(structures);
128
						}
770 jpm 129
					}
130
				}
1327 cyprien 131
			});
132
		}
770 jpm 133
	}
134
 
135
	public void ajouter(final Structure str, StructureConservation conservation, StructureValorisation valorisation) {
136
		String postDonneesEncodees = construirePost(null, str, conservation, valorisation);
156 jp_milcent 137
 
770 jpm 138
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
139
		rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
140
			@Override
141
			public void surReponse(JSONValue responseValue) {
142
				if (responseValue.isString() != null) {
143
					Information info = new Information("ajout_structure");
144
					String structureIdOuMessage = responseValue.isString().stringValue();
145
					if (structureIdOuMessage.matches("^[0-9]+$")) {
146
						info.setDonnee(structureIdOuMessage);
156 jp_milcent 147
					} else {
770 jpm 148
						info.setMessage(structureIdOuMessage);
156 jp_milcent 149
					}
770 jpm 150
					vueARafraichir.rafraichir(info);
151
				} else {
152
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
156 jp_milcent 153
				}
770 jpm 154
			}
155
		});
156 jp_milcent 156
	}
770 jpm 157
 
158
	public void modifier(String structureId, Structure str, StructureConservation conservation, StructureValorisation valorisation) {
159
		String postDonneesEncodees = construirePost(structureId, str, conservation, valorisation);
772 jpm 160
		String[] parametres = {structureId};
161
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
162
		rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
163
			@Override
164
			public void surReponse(JSONValue responseValue) {
165
				// Si la requête est un succès, reception d'une chaine
166
				if (responseValue.isString() != null) {
167
					Information info = new Information("modif_structure");
168
					info.setMessage(responseValue.isString().stringValue());
169
					vueARafraichir.rafraichir(info);
170
				} else {
171
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
121 jpm 172
				}
772 jpm 173
			}
174
		});
121 jpm 175
	}
770 jpm 176
 
772 jpm 177
	public void supprimer(String structuresId) {
178
		String[] parametres = {utilisateurId, structuresId};
179
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
180
		rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
181
			@Override
182
			public void surReponse(JSONValue responseValue) {
183
				if (responseValue.isString() != null) {
184
					Information info = new Information("suppression_structure");
185
					info.setMessage(responseValue.isString().stringValue());
186
					vueARafraichir.rafraichir(info);
187
				} else {
188
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
133 jpm 189
				}
772 jpm 190
			}
191
		});
133 jpm 192
	}
169 jp_milcent 193
 
770 jpm 194
	private String construirePost(String structureId, Structure str, StructureConservation conservation, StructureValorisation valorisation) {
865 jpm 195
		String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
196
 
602 jp_milcent 197
		if (str != null) {
612 jp_milcent 198
			if (structureId != null) {
199
				postDonnees += "&cs_id_structure=" + URL.encodeComponent(structureId);
200
			}
1364 cyprien 201
 
202
			postDonnees += "&cpr_abreviation=" + URL.encodeComponent(str.getAbreviationProjet());
602 jp_milcent 203
			postDonnees += "&cs_ce_projet=" + URL.encodeComponent(str.getIdProjet()) +
204
				"&cs_ce_mere=" + URL.encodeComponent(str.getIdMere()) +
205
				"&cs_guid=" + URL.encodeComponent(str.getGuid()) +
206
				"&cs_truk_identifiant_alternatif=" + URL.encodeComponent(str.getIdAlternatif()) +
207
				"&cs_nom=" + URL.encodeComponent(str.getNom()) +
208
				"&cs_truk_nom_alternatif=" + URL.encodeComponent(str.getNomAlternatif()) +
1171 jpm 209
				"&cs_description=" + URL.encodeComponent(str.getDescription()) +
602 jp_milcent 210
				"&cs_ce_type=" + URL.encodeComponent(str.getType()) +
211
				"&cs_ce_truk_type_prive=" + URL.encodeComponent(str.getTypePrive()) +
212
				"&cs_ce_truk_type_public=" + URL.encodeComponent(str.getTypePublic()) +
213
				"&cs_adresse_01=" + URL.encodeComponent(str.getAdresse()) +
214
				"&cs_adresse_02=" + URL.encodeComponent(str.getAdresseComplement()) +
215
				"&cs_date_fondation=" + URL.encodeComponent(str.getDateFondationFormatMysql()) +
216
				"&cs_code_postal=" + URL.encodeComponent(str.getCodePostal()) +
217
				"&cs_ville=" + URL.encodeComponent(str.getVille()) +
1037 gduche 218
				"&cs_ce_truk_region=" + URL.encodeComponent(str.get("ce_truk_region").toString()) +
602 jp_milcent 219
				"&cs_ce_truk_pays=" + URL.encodeComponent(str.getPays()) +
1171 jpm 220
				"&cs_latitude=" + URL.encodeComponent(str.getLatitude()) +
221
				"&cs_longitude=" + URL.encodeComponent(str.getLongitude()) +
602 jp_milcent 222
				"&cs_truk_telephone=" + URL.encodeComponent(str.getTelephone()) +
223
				"&cs_truk_url=" + URL.encodeComponent(str.getUrl()) +
1171 jpm 224
				"&cs_nbre_personne=" + URL.encodeComponent(Integer.toString(str.getNbrePersonne())) +
225
				"&cs_condition_acces=" + URL.encodeComponent(str.getConditionAcces())+
226
				"&cs_condition_usage=" + URL.encodeComponent(str.getConditionUsage())+
1039 gduche 227
				"&cs_courriel=" + URL.encodeComponent(str.getCourriel());
602 jp_milcent 228
		}
229
		if (conservation != null) {
612 jp_milcent 230
			if (structureId != null) {
231
				postDonnees += "&csc_id_structure=" + URL.encodeComponent(structureId);
232
			}
602 jp_milcent 233
			postDonnees += "&csc_mark_formation=" + URL.encodeComponent(conservation.getFormation()) +
234
				"&csc_formation=" + URL.encodeComponent(conservation.getFormationInfo()) +
235
				"&csc_mark_formation_interet=" + URL.encodeComponent(conservation.getFormationInteret()) +
236
				"&csc_truk_stockage_local=" + URL.encodeComponent(conservation.getStockageLocal()) +
237
				"&csc_truk_stockage_meuble=" + URL.encodeComponent(conservation.getStockageMeuble()) +
238
				"&csc_truk_stockage_parametre=" + URL.encodeComponent(conservation.getStockageParametre()) +
239
				"&csc_mark_collection_commune=" + URL.encodeComponent(conservation.getCollectionCommune()) +
240
				"&csc_truk_collection_autre=" + URL.encodeComponent(conservation.getCollectionAutre()) +
241
				"&csc_mark_acces_controle=" + URL.encodeComponent(conservation.getAccesControle()) +
242
				"&csc_mark_restauration=" + URL.encodeComponent(conservation.getRestauration()) +
243
				"&csc_truk_restauration_operation=" + URL.encodeComponent(conservation.getRestaurationOperation()) +
244
				"&csc_ce_materiel_conservation=" + URL.encodeComponent(conservation.getMaterielConservation()) +
245
				"&csc_truk_materiel_autre=" + URL.encodeComponent(conservation.getMaterielAutre()) +
246
				"&csc_mark_traitement=" + URL.encodeComponent(conservation.getTraitement()) +
247
				"&csc_truk_traitement=" + URL.encodeComponent(conservation.getTraitements()) +
248
				"&csc_mark_acquisition_collection=" + URL.encodeComponent(conservation.getAcquisitionCollection()) +
249
				"&csc_mark_acquisition_echantillon=" + URL.encodeComponent(conservation.getAcquisitionEchantillon()) +
250
				"&csc_mark_acquisition_traitement=" + URL.encodeComponent(conservation.getAcquisitionTraitement()) +
251
				"&csc_truk_acquisition_traitement_poison=" + URL.encodeComponent(conservation.getAcquisitionTraitementPoison()) +
252
				"&csc_truk_acquisition_traitement_insecte=" + URL.encodeComponent(conservation.getAcquisitionTraitementInsecte());
253
		}
254
		if (valorisation != null) {
612 jp_milcent 255
			if (structureId != null) {
632 jp_milcent 256
				postDonnees += "&csv_id_structure=" + URL.encodeComponent(structureId);
612 jp_milcent 257
			}
602 jp_milcent 258
			postDonnees += "&csv_mark_action=" + URL.encodeComponent(valorisation.getAction()) +
259
				"&csv_truk_action=" + URL.encodeComponent(valorisation.getActionInfo()) +
260
				"&csv_publication=" + URL.encodeComponent(valorisation.getPublication()) +
261
				"&csv_collection_autre=" + URL.encodeComponent(valorisation.getCollectionAutre()) +
262
				"&csv_mark_action_future=" + URL.encodeComponent(valorisation.getActionFuture()) +
263
				"&csv_action_future=" + URL.encodeComponent(valorisation.getActionFutureInfo()) +
264
				"&csv_mark_recherche=" + URL.encodeComponent(valorisation.getRecherche()) +
265
				"&csv_truk_recherche_provenance=" + URL.encodeComponent(valorisation.getRechercheProvenance()) +
266
				"&csv_truk_recherche_type=" + URL.encodeComponent(valorisation.getRechercheType()) +
267
				"&csv_mark_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotif()) +
268
				"&csv_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotifInfo()) +
269
				"&csv_mark_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotif()) +
270
				"&csv_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotifInfo());
271
		}
272
		return postDonnees;
273
	}
121 jpm 274
}