Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
12 david 1
package org.tela_botanica.client.modeles;
2
 
3
import org.tela_botanica.client.Util;
4
import org.tela_botanica.client.interfaces.Rafraichissable;
5
import org.tela_botanica.client.observation.ObservationModele;
6
 
32 jpm 7
import com.google.gwt.http.client.Request;
8
import com.google.gwt.http.client.RequestBuilder;
9
import com.google.gwt.http.client.RequestCallback;
10
import com.google.gwt.http.client.RequestException;
11
import com.google.gwt.http.client.Response;
203 david 12
import com.google.gwt.http.client.URL;
12 david 13
import com.google.gwt.json.client.JSONArray;
14
import com.google.gwt.json.client.JSONParser;
15
import com.google.gwt.json.client.JSONString;
16
import com.google.gwt.json.client.JSONValue;
61 jpm 17
import com.google.gwt.user.client.Window;
12 david 18
 
19
/**
54 david 20
 * DAO la liste des observations attachées a un observateur.
12 david 21
 * @author David Delon
20 david 22
 * TODO : se servir de ObservationDAO pour la lecture unitaire
12 david 23
 *
24
 */
25
public class ListeObservationAsynchroneDAO {
26
 
54 david 27
 
28
/**
29
 * Le modèle associé au DAO.
30
 */
31
 private ObservationModele observationModele = null;
32
 
33
 public ListeObservationAsynchroneDAO(final ObservationModele obs) {
34
  this.observationModele=obs;
35
 }
12 david 36
 
37
 
38
	/**
39
	 * Envoie une requete au serveur jrest pour obtenir le nombre d'observation correspondant
40
	 * à des critères données en paramètres
41
	 * @param r le rafraichissable qui demande la mise à jour
42
	 * @param criteres un tableau nom/valeur des critères pour les observations
43
	 */
54 david 44
	public final void obtenirListeObservation(final Rafraichissable r, final String utilisateur, final String[][] criteres)
12 david 45
	{
46
 
47
 
48
		String requete = "" ;
49
 
50
		if(criteres != null)
51
		{
52
			// on construit les paramètres du get avec les critères (&critere1=valeur1&critere2=valeur2 etc...)
203 david 53
			// ils contiennent limite et taille page et autres filtres (communes , lieu dit etc ...)S
12 david 54
 
55
			for (int i = 0; i < criteres.length; i++) {
56
 
266 aurelien 57
				if(!criteres[i][1].equals("") && criteres[i][1] != null)
12 david 58
				{
59
					if(i!= 0)
60
					{
61
						requete += "&";
62
					}
203 david 63
					requete += criteres[i][0]+"="+URL.encodeComponent(criteres[i][1]) ;
12 david 64
				}
65
			}
157 aurelien 66
		}
12 david 67
 
32 jpm 68
		// on envoie le get asynchrone
116 aurelien 69
		RequestBuilder rb = new RequestBuilder(RequestBuilder.GET,Configuration.getServiceBaseUrl()
32 jpm 70
				+"/InventoryObservationList/"+utilisateur+"/"+requete) ;
12 david 71
 
32 jpm 72
		try {
73
			rb.sendRequest(null, new RequestCallback() {
74
 
54 david 75
				public void onError(final Request request, final Throwable exception) {
32 jpm 76
					// TODO Auto-generated method stub
12 david 77
 
32 jpm 78
				}
79
 
54 david 80
				public void onResponseReceived(final Request request,
81
						final Response response) {
12 david 82
 
32 jpm 83
					final ListeObservation observationData ;
84
					final JSONValue responseValue = JSONParser.parse(response.getText());
85
 
86
					JSONArray reponse=null;
12 david 87
 
32 jpm 88
					// si c'est un tableau
89
					if ((reponse=responseValue.isArray()) != null) {
12 david 90
 
32 jpm 91
						JSONArray observation;
92
						final int taillemax = reponse.size();
93
 
94
						observationData = new ListeObservation(taillemax);
95
 
96
						for (int i = 0; i < taillemax; i++) {
20 david 97
 
32 jpm 98
							if ((observation=reponse.get(i).isArray()) != null) {
99
 
100
								String transmis=((JSONString) observation.get(13)).stringValue();
101
								String identifiantLocalite=((JSONString) observation.get(14)).toString();
102
								String nomSaisi=Util.toCelString(((JSONString) observation.get(0)).toString());
103
								String nomRetenu=Util.toCelString(((JSONString) observation.get(2)).toString());
104
								String numeroNomenclaturalSaisi=((JSONString) observation.get(1)).stringValue();
105
								String numeroNomenclaturalRetenu=((JSONString) observation.get(3)).stringValue();
106
								String numeroTaxonomique=((JSONString) observation.get(4)).stringValue();
107
								String famille=Util.toCelString(((JSONString) observation .get(5)).toString());
108
								String localite=Util.toCelString(((JSONString) observation .get(6)).toString());
109
								String lieudit=Util.toCelString(((JSONString) observation .get(9)).toString());
110
								String station=Util.toCelString(((JSONString) observation .get(10)).toString());
111
								String milieu=Util.toCelString(((JSONString) observation .get(11)).toString());
112
								String commentaire=Util.toCelString(((JSONString) observation .get(12)).toString());
113
								String date=((JSONString) observation .get(8)).stringValue();
114
								String numeroOrdre=((JSONString) observation.get(7)).stringValue();
266 aurelien 115
								String coordX=((JSONString) observation.get(15)).stringValue();
116
								String coordY=((JSONString) observation.get(16)).stringValue();
32 jpm 117
 
157 aurelien 118
								Observation obs=new Observation(transmis, nomSaisi, nomRetenu, numeroNomenclaturalSaisi, numeroNomenclaturalRetenu ,numeroTaxonomique, famille, localite, identifiantLocalite, lieudit, station, milieu, commentaire, date, numeroOrdre/*, motsCles*/);
266 aurelien 119
								obs.setCoordonneeX(coordX);
120
								obs.setCoordonneeY(coordY);
32 jpm 121
								observationData.put(obs.getNumeroOrdre(),obs);
44 david 122
 
123
 
32 jpm 124
							}
12 david 125
						}
32 jpm 126
					} else {
127
 
128
						observationData = new ListeObservation(0) ;
12 david 129
					}
32 jpm 130
 
131
					// dans tous les cas on transmet la liste crée au rafraichissable en lui demandant de répandre les données car il est
132
					// le premier à les recevoir
65 david 133
 
134
					// TODO : ce n'est pas ici qu'on devrait le decider ..
135
					r.rafraichir(observationData,true);
32 jpm 136
				}
137
			}) ;
138
 
139
		} catch (RequestException e) {
140
			// TODO Auto-generated catch block
141
			e.printStackTrace();
142
		}
12 david 143
	}
217 aurelien 144
 
145
	public void modifierEnMasse(final Rafraichissable r, String identifiant,
146
			final Observation obs) {
107 aurelien 147
 
217 aurelien 148
				RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,Configuration.getServiceBaseUrl()+ "/InventoryObservationList/" + identifiant + "/" + obs.getNumeroOrdre()+ "/") ;
149
 
150
				String postData = "identifiant="
151
					+ identifiant ;
152
				if(obs.getNomSaisi() != null) {
153
					postData += "&nom_sel=" + URL.encodeComponent(obs.getNomSaisi());
154
				}
220 aurelien 155
				if(obs.getNumeroNomenclaturalSaisi() != null) {
156
					postData += "&num_nom_sel=" + obs.getNumeroNomenclaturalSaisi();
157
				}
158
 
159
				if(obs.getIdentifiantLocalite() != null) {
160
					postData += "&id_location=" + obs.getIdentifiantLocalite();
161
				}
162
 
163
				if(obs.getLocalite() != null) {
164
					postData += "&location=" + URL.encodeComponent(obs.getLocalite());
165
				}
166
 
167
				if(obs.getDate() != null) {
168
					postData += "&date_observation=" +  obs.getDate();
169
				}
170
 
171
				if(obs.getLieudit() != null) {
172
					postData += "&lieudit="+ URL.encodeComponent(obs.getLieudit());
173
				}
174
 
175
				if(obs.getStation() != null) {
176
					postData += "&station="+ URL.encodeComponent(obs.getStation());
177
				}
178
 
179
				if(obs.getMilieu() != null) {
180
					postData += "&milieu="+ URL.encodeComponent(obs.getMilieu());
181
				}
182
 
183
				if(obs.getCommentaire() != null) {
184
					postData += "&commentaire="+URL.encodeComponent(""+obs.getCommentaire());
185
				}
266 aurelien 186
 
272 aurelien 187
				if(obs.getCoordonneeX() != null ) {
266 aurelien 188
					postData += "&coord_x="+URL.encodeComponent(""+obs.getCoordonneeX());
272 aurelien 189
				}
190
 
191
				if(obs.getCoordonneeY() != null) {
266 aurelien 192
					postData += "&coord_y="+URL.encodeComponent(""+obs.getCoordonneeY());
193
				}
194
 
195
 
196
 
217 aurelien 197
					/*+"&mots_cles="+URL.encodeComponent(obs.getMotsCles()) */;
198
				try {
199
 
200
					rb.sendRequest(postData, new RequestCallback() {
201
 
202
						public void onError(Request request, Throwable exception) {
203
							// TODO Auto-generated method stub
204
 
205
						}
206
 
207
						public void onResponseReceived(Request request,
208
								Response response) {
209
 
210
							observationModele.obtenirListeObservation(r);
211
 
212
						}
213
 
214
 
215
					}) ;
216
 
217
				} catch (RequestException e) {
218
 
219
			}
220
 
221
	}
222
 
107 aurelien 223
	/**
224
	 * Supprime les observations possédant les identifiants données
225
	 * @param r le rafraichissable à avertir de la mise à jour
226
	 * @param identifiant l'identifiant utilisateur
227
	 * @param numerosOrdre les numéros d'ordre des observations séparés par des virgules
228
	 */
229
	public void supprimerListeObservation(Rafraichissable r, String identifiant, String numerosOrdre) {
230
 
231
		String postData = "";
232
		postData += "&action=DELETE";
233
 
234
		// on envoie un post avec l'id de l'image à supprimer
235
		RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,
236
				Configuration.getServiceBaseUrl()
237
				+ "/inventoryObservationList/"
238
				+ identifiant
239
				+ "/"
240
				+ numerosOrdre);
241
 
242
		try {
243
			rb.sendRequest(postData, new RequestCallback() {
244
 
245
				public void onError(Request request, Throwable exception) {
246
					// TODO Auto-generated method stub
247
 
248
				}
249
 
250
				public void onResponseReceived(Request request,
251
						Response response) {
252
 
253
					if (response.getText().equals("OK")) {
254
 
255
 
256
					} else {
257
						com.google.gwt.user.client.Window
258
								.alert("Problème lors de la mise à jour des données");
259
						return ;
260
					}
261
				}
262
 
263
			});
264
 
265
			r.rafraichir("OK", true) ;
266
 
267
		} catch (RequestException e) {
268
			// TODO Auto-generated catch block
269
			e.printStackTrace();
270
		}
271
 
272
	}
12 david 273
 
274
}