Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
1934 aurelien 1
package org.tela_botanica.del.client.cache;
2
 
3
import java.util.Arrays;
1995 aurelien 4
import java.util.HashMap;
1934 aurelien 5
import java.util.List;
1986 aurelien 6
import java.util.Map;
1934 aurelien 7
 
8
import org.tela_botanica.del.client.config.Config;
9
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
10
import org.tela_botanica.del.client.modeles.Image;
11
import org.tela_botanica.del.client.modeles.InformationsRecherche;
12
import org.tela_botanica.del.client.modeles.ModeTri;
13
import org.tela_botanica.del.client.modeles.Observation;
14
import org.tela_botanica.del.client.modeles.Protocole;
15
import org.tela_botanica.del.client.modeles.Utilisateur;
16
import org.tela_botanica.del.client.utils.URLUtils;
17
 
18
import com.google.gwt.core.client.GWT;
19
import com.google.gwt.user.client.Window;
20
import com.google.gwt.user.client.Window.Location;
21
 
22
public class CacheClient {
23
 
24
	private List<Protocole> listeProtocoles;
25
 
26
	private Observation observationCourante;
27
	private Image imageCourante;
28
	private String taxonPourRechercheEflore;
29
	private String idProtocoleEnAttente = null;
30
	private Protocole protocoleCourant;
31
	private String referentielCourant;
32
	private int numPageRechercheImage = 0;
33
	private int nbTotalImagesRecherchees = 0;
34
 
35
	private boolean referentielNonModifiable = false;
36
 
37
	private int pasPagination = 12;
38
	private int pageCouranteRechercheImage = 1;
39
	private int pageCouranteRechercheObservations = 1;
40
	private InformationsRecherche informationsRechercheImage;
41
	private InformationsRecherche informationsRechercheObservation;
42
	private Utilisateur utilisateur;
43
	private String pageCourante = "";
44
	private String statut;
45
	private String[] statutsPossibles = {
46
		ConstantesNavigation.PARAM_TYPE_TOUS,
47
		ConstantesNavigation.PARAM_TYPE_A_DETERMINER,
1982 aurelien 48
		ConstantesNavigation.PARAM_TYPE_A_CONFIRMER,
2050 aurelien 49
		ConstantesNavigation.PARAM_TYPE_VALIDEES,
50
		ConstantesNavigation.PARAM_TYPE_MONACTIVITE
1934 aurelien 51
	};
52
	private ModeTri modeTri = ModeTri.TRI_ASCENDANT;
53
 
1995 aurelien 54
	// Pour plus de simplicité on stocke une liste de pays où
55
	// la clé est le code iso et la valeur le pays
56
	// et une autre ou c'est l'inverse
1986 aurelien 57
	private Map<String, String> listePays;
1995 aurelien 58
	private Map<String, String> listePaysInversee;
1986 aurelien 59
 
1934 aurelien 60
	public void supprimerFiltreStatut() {
61
		this.statut = null;
62
	}
63
 
64
	public void setFiltreStatut(String statut) {
65
		this.statut = statut;
66
	}
67
 
68
	public String getFiltreStatut() {
69
		return this.statut;
70
	}
71
 
72
	public String getPageCourante() {
73
		return pageCourante;
74
	}
75
 
76
	public void setPageCourante(String pageCourante) {
77
		pageCourante = pageCourante.replaceAll("#", "");
78
		pageCourante = pageCourante.replaceAll("page_validation", ConstantesNavigation.PAGE_DETAIL_OBS);
79
		pageCourante = pageCourante.replaceAll("page_validation_pictoflora", ConstantesNavigation.PAGE_DETAIL_IMG);
80
		this.pageCourante = pageCourante;
81
	}
82
 
83
	private static CacheClient instance;
84
 
85
	private CacheClient() {
86
		instance = this;
87
	}
88
 
89
	public void initialiserAvecParametres() {
90
		String urlCourante = Window.Location.getHref();
91
		Config config = new Config();
92
		String urlAppliImg = config.getUrl("pictoflora");
93
 
94
		setPageCourante(Location.getHash());
95
 
96
		String rechercheLibre = Location.getParameter("masque");
97
		String famille = Location.getParameter("masque.famille");
98
		String taxon = Location.getParameter("masque.ns");
99
		String genre = Location.getParameter("masque.genre");
100
		String commune = Location.getParameter("masque.commune");
101
		String dept = Location.getParameter("masque.departement");
102
		String auteur = Location.getParameter("masque.auteur");
103
		String date = Location.getParameter("masque.date");
104
		String tag = Location.getParameter("masque.tag");
105
		String tagCel = Location.getParameter("masque.tag_cel");
106
		String tagDel = Location.getParameter("masque.tag_pictoflora");
107
		String referentiel = Location.getParameter("masque.referentiel");
108
		String protocole = Location.getParameter("protocole");
109
		String statutParam = Location.getParameter("masque.type");
1986 aurelien 110
		String paysParam = Location.getParameter("masque.pays");
1934 aurelien 111
 
112
		String page = Location.getParameter("page");
113
		Integer pageInt = null;
114
		try {
115
			pageInt = Integer.parseInt(page);
116
		} catch (Exception e) {
117
			pageInt = null;
118
		}
119
 
120
		String pas = Location.getParameter("pas");
121
		Integer pasInt = null;
122
		if (pas != null) {
123
			try {
124
				pasInt = Integer.parseInt(pas);
125
			} catch (Exception e) {
126
				pasInt = null;
127
			}
128
		}
129
 
130
		InformationsRecherche rechercheParArguments = new InformationsRecherche();
131
		rechercheParArguments.setRechercheLibre(rechercheLibre);
132
		rechercheParArguments.setFamille(famille);
133
		rechercheParArguments.setTaxon(taxon);
134
		rechercheParArguments.setGenre(genre);
135
		rechercheParArguments.setCommune(commune);
136
		rechercheParArguments.setDepartement(dept);
137
		rechercheParArguments.setAuteur(auteur);
138
		rechercheParArguments.setDate(date);
139
		rechercheParArguments.setTag(tag);
1986 aurelien 140
		rechercheParArguments.setPays(paysParam);
1934 aurelien 141
 
142
		if (protocole != null && !protocole.equals("")) {
143
			CacheClient.getInstance().setIdProtocoleEnAttente(protocole);
144
			rechercheParArguments.setIdProtocoleSelectionne(protocole);
145
		} else if (URLUtils.getURLSpecialParameterValue() != null) {
146
			CacheClient.getInstance().setIdProtocoleEnAttente(URLUtils.getURLSpecialParameterValue());
147
			rechercheParArguments.setIdProtocoleSelectionne(URLUtils.getURLSpecialParameterValue());
148
		}
149
 
150
		if (pasInt != null) {
151
			setPasPagination(pasInt);
152
		}
153
 
154
		if (urlCourante.contains(urlAppliImg)) {
155
			rechercheParArguments.setMotClefCel(tagCel);
156
			rechercheParArguments.setMotClefDel(tagDel);
157
			if (pageInt != null) {
158
				setPageCouranteRechercheImages(pageInt);
159
			}
160
		} else {
161
			if (pageInt != null) {
162
				setPageCouranteRechercheObservations(pageInt);
163
			}
164
		}
165
 
166
		definirOrdreTriCourantParUrl();
167
		String tri = Location.getParameter("tri");
168
		if (urlCourante.contains(urlAppliImg)) {
169
			if (tri != null) {
170
				// Pour PictoFlora
171
				if (tri.equals("moyenne-arithmetique")) {
172
					rechercheParArguments.setTriParMoyenneArithmetique(modeTri);
173
				} else if (tri.equals("points")) {
174
					rechercheParArguments.setTriParNbPoints(modeTri);
175
				} else if (tri.equals("tags")) {
176
					rechercheParArguments.setTriParNbTags(modeTri);
177
				} else {
178
					rechercheParArguments.setTriParDatePublication(modeTri);
179
				}
180
			} else {
181
				// Tri par défaut pour PictoFlora
182
				rechercheParArguments.setTriParDatePublication(ModeTri.TRI_DESCENDANT);
183
			}
184
		} else {
185
			// Pour IdentiPlante
186
			if (tri != null && tri.equals("date_observation")) {
187
				rechercheParArguments.setTriParDateObservation(modeTri);
188
			} else if(tri != null && tri.equals("nb_commentaires")) {
189
				rechercheParArguments.setTriParNbCommentaires(modeTri);
190
			} else {
191
				// Tri par défaut pour IdentiPlante
192
				rechercheParArguments.setTriParDatePublication(ModeTri.TRI_DESCENDANT);
193
			}
194
		}
195
 
196
		rechercheParArguments.setMotClef(tag);
197
 
198
		// si le référentiel est passé dans l'url alors il ne doit pas être modifiable
199
		if (referentiel != null && !referentiel.equals("")) {
200
			setReferentielCourant(referentiel);
201
			rechercheParArguments.setReferentiel(referentiel);
202
			referentielNonModifiable = true;
203
		}
204
 
205
		if (Location.getParameterMap().size() == 0) {
206
			// par défaut l'application s'ouvre sur l'onglet à déterminer
207
			statut = ConstantesNavigation.PARAM_TYPE_DEFAUT;
208
		} else {
209
			if (Arrays.asList(statutsPossibles).contains(statutParam)) {
210
				statut = statutParam;
211
			} else {
212
				statut = ConstantesNavigation.PARAM_TYPE_DEFAUT;
213
			}
214
		}
215
 
216
		informationsRechercheImage = rechercheParArguments;
217
		informationsRechercheObservation = rechercheParArguments;
218
 
219
		mettreAjourUrlCourante();
220
	}
221
 
222
	private void definirOrdreTriCourantParUrl() {
223
		String ordre = Location.getParameter("ordre");
224
		if (ordre != null) {
225
			if (ordre.equals("asc")) {
226
				this.modeTri = ModeTri.TRI_ASCENDANT;
227
			} else if (ordre.equals("desc")) {
228
				this.modeTri = ModeTri.TRI_DESCENDANT;
229
			}
230
		}
231
	}
232
 
233
	public void setIdProtocoleEnAttente(String idProtocole) {
234
		idProtocoleEnAttente = idProtocole;
235
	}
236
 
237
	public String getIdProtocoleEnAttente() {
238
		return idProtocoleEnAttente;
239
	}
240
 
241
	public Utilisateur getUtilisateur() {
242
		if (this.utilisateur == null) {
243
			this.utilisateur = new Utilisateur(null, null);
244
		}
245
		return this.utilisateur;
246
	}
247
 
248
	public void setUtilisateur(Utilisateur utilisateur) {
249
		this.utilisateur = utilisateur;
250
	}
251
 
252
	public void setHome(String home) {
253
		setPageCourante(home);
254
	}
255
 
256
	public String getHome() {
257
		return "";
258
	}
259
 
260
	public Observation getObservationCourante() {
261
		return observationCourante;
262
	}
263
 
264
	public void setObservationCourante(Observation observationCourante) {
265
		this.observationCourante = observationCourante;
266
	}
267
 
268
	public static CacheClient getInstance() {
269
		if (instance == null) {
270
			instance = new CacheClient();
271
		}
272
		return instance;
273
	}
274
 
275
	public String getTaxonPourRechercheEflore() {
276
		return taxonPourRechercheEflore;
277
	}
278
 
279
	public void setTaxonPourRechercheEflore(String taxonPourRechercheEflore) {
280
		this.taxonPourRechercheEflore = taxonPourRechercheEflore;
281
	}
282
 
283
	public int getNumPageRechercheImage() {
284
		return numPageRechercheImage;
285
	}
286
 
287
	// Pour la recherche :
288
	public int getPasPagination() {
289
		return pasPagination;
290
	}
291
 
292
	public void setPasPagination(int pasPagination) {
293
		this.pasPagination = pasPagination;
294
	}
295
 
296
	public void setPageCouranteRechercheImages(int pageCouranteRecherche) {
297
		this.pageCouranteRechercheImage = pageCouranteRecherche;
298
	}
299
 
300
	public int getPageCouranteRechercheImage() {
301
		return this.pageCouranteRechercheImage;
302
	}
303
 
304
	public void setNbTotalImagesRecherchees(int nbTotalImagesRecherchees) {
305
		this.nbTotalImagesRecherchees = nbTotalImagesRecherchees;
306
	}
307
 
308
	public int getNbTotalImagesRecherchees() {
309
		return this.nbTotalImagesRecherchees;
310
	}
311
 
312
	public Image getImageCourante() {
313
		return imageCourante;
314
	}
315
 
316
	public void setImageCourante(Image imageCourante) {
317
		this.imageCourante = imageCourante;
318
	}
319
 
320
	public void setListeProtocoles(List<Protocole> listeProtocole) {
321
		this.listeProtocoles = listeProtocole;
322
	}
323
 
324
	public List<Protocole> getListeProtocoles() {
325
		return this.listeProtocoles;
326
	}
327
 
328
	public Protocole getProtocoleCourant() {
329
		return protocoleCourant;
330
	}
331
 
332
	public void setProtocoleCourant(Protocole protocoleCourant) {
333
		this.protocoleCourant = protocoleCourant;
334
	}
335
 
336
	public InformationsRecherche getInformationsRechercheImage() {
337
		if (informationsRechercheImage == null) {
338
			informationsRechercheImage = new InformationsRecherche();
339
		}
340
		return informationsRechercheImage;
341
	}
342
 
343
	public InformationsRecherche getInformationsRechercheObservation() {
344
		if (informationsRechercheObservation == null) {
345
			informationsRechercheObservation = new InformationsRecherche();
346
		}
347
		return informationsRechercheObservation;
348
	}
349
 
350
	public void setInformationsRechercheImage(InformationsRecherche informationsRechercheImage) {
351
		this.informationsRechercheImage = informationsRechercheImage;
352
	}
353
 
354
	public void setInformationsRechercheObservation(InformationsRecherche informationsRechercheObservation) {
355
		this.informationsRechercheObservation = informationsRechercheObservation;
356
	}
357
 
358
	public int getPageCouranteRechercheObservations() {
359
		return pageCouranteRechercheObservations;
360
	}
361
 
362
	public void setPageCouranteRechercheObservations(int pageCouranteRechercheObservations) {
363
		this.pageCouranteRechercheObservations = pageCouranteRechercheObservations;
364
	}
365
 
366
	public void setReferentielCourant(String referentielCourant) {
367
		this.referentielCourant = referentielCourant;
368
	}
369
 
370
	public String getReferentielCourant() {
371
		return referentielCourant;
372
	}
373
 
374
	public void setReferentielNonModifiable(boolean referentielNonModifiable) {
375
		this.referentielNonModifiable = referentielNonModifiable;
376
	}
377
 
378
	public boolean getReferentielNonModifiable() {
379
		return referentielNonModifiable;
380
	}
381
 
382
	public String getUrlPageSignalerMauvaiseId(String id) {
383
		Config config = new Config();
384
		String urlSignalerMauvaiseId = config.getUrl("identiplante");
385
		if (!GWT.isScript()) {
386
			urlSignalerMauvaiseId += "?gwt.codesvr="+Location.getParameter("gwt.codesvr")+"";
387
		}
388
		return urlSignalerMauvaiseId+"#"+ConstantesNavigation.PAGE_DETAIL_OBS+"~"+id;
389
 
390
	}
391
 
1986 aurelien 392
	public void setListePays(Map<String, String> listePays) {
393
		this.listePays = listePays;
1995 aurelien 394
		listePaysInversee = new HashMap<String, String>();
395
		for(Map.Entry<String, String> entry : listePays.entrySet()){
396
			listePaysInversee.put(entry.getValue(), entry.getKey());
397
		}
1986 aurelien 398
	}
399
 
400
	public Map<String, String> getListePays() {
401
		return listePays;
402
	}
403
 
1995 aurelien 404
	public Map<String, String> getListePaysInversee() {
405
		return listePaysInversee;
406
	}
407
 
1934 aurelien 408
	public String genererUrlCourante() {
409
		String urlCourante = Window.Location.getHref();
410
		Config config = new Config();
411
		String urlAppliObs = config.getUrl("identiplante");
412
		String urlAppliImg = config.getUrl("pictoflora");
413
		String url = urlCourante;
414
		String arguments = "";
415
 
416
		if (urlCourante.contains(urlAppliImg)) {
417
			InformationsRecherche infoRecherche;
418
			infoRecherche = getInformationsRechercheImage();
419
 
420
			if (CacheClient.getInstance().getProtocoleCourant() != null) {
421
				infoRecherche.setIdProtocoleSelectionne("" + CacheClient.getInstance().getProtocoleCourant().getId());
422
			}
423
 
424
			arguments = infoRecherche.versChaineRequete();
425
			arguments += (arguments.isEmpty()) ? "" : "&";
426
			arguments += "page="+getPageCouranteRechercheImage()+"&pas="+getPasPagination();
427
 
428
			url = config.getUrl("pictoflora");
429
		} else if (urlCourante.contains(urlAppliObs)) {
430
			InformationsRecherche infoRecherche;
431
			infoRecherche = getInformationsRechercheObservation();
432
 
433
			arguments = "masque.type="+statut;
434
			arguments += "&page="+getPageCouranteRechercheObservations()+"&pas="+getPasPagination();
435
			arguments += "&"+infoRecherche.versChaineRequete();
436
 
437
			url = config.getUrl("identiplante");
438
		}
439
 
440
		if (!GWT.isScript()) {
441
			arguments += "&gwt.codesvr="+Location.getParameter("gwt.codesvr")+"";
442
		}
443
		arguments = (arguments.isEmpty()) ? "" : "?" + arguments;
444
		String signet = getPageCourante().equals("") ? "" : "#" + getPageCourante();
445
		url += arguments + signet;
446
 
447
		// remplacements batards pour corriger l'url
448
		// TODO: factoriser toute la fonction
449
		url = url.replaceAll("&#", "#");
450
		url = url.replaceAll("&&", "&");
451
		url = url.replaceAll("\\?&", "?");
452
		if (url.endsWith("&")) {
453
			url = url.substring(0, url.length()-1);
454
		}
455
 
456
		return url;
457
	}
458
 
459
	public void mettreAjourUrlCourante() {
460
		mettreAJourUrlCouranteSansRecharger(genererUrlCourante());
461
	}
462
 
463
	private static native void mettreAJourUrlCouranteSansRecharger(String nouvelleUrl) /*-{
464
		// javascript double negative trick
465
		// pour plus d'info http://stackoverflow.com/questions/4686583/can-someone-explain-this-double-negative-trick
466
		if (!!($wnd.history && $wnd.history.pushState)) {
467
			var currentState = $wnd.history.state;
468
			if (currentState != nouvelleUrl) {
469
				$wnd.history.pushState(nouvelleUrl, "", nouvelleUrl);
470
			}
471
		}
472
	}-*/;
473
}