Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
500 aurelien 1
package org.tela_botanica.del.client.utils;
2
 
3
import java.util.ArrayList;
4
import java.util.Date;
5
import java.util.HashMap;
876 gduche 6
import java.util.Iterator;
500 aurelien 7
import java.util.List;
8
 
941 benjamin 9
import org.tela_botanica.del.client.cache.CacheClient;
876 gduche 10
import org.tela_botanica.del.client.modeles.Commentaire;
690 gduche 11
import org.tela_botanica.del.client.modeles.Contributeur;
500 aurelien 12
import org.tela_botanica.del.client.modeles.Image;
941 benjamin 13
import org.tela_botanica.del.client.modeles.ImageServiceResultat;
846 aurelien 14
import org.tela_botanica.del.client.modeles.InterventionForum;
1162 aurelien 15
import org.tela_botanica.del.client.modeles.MotCle;
500 aurelien 16
import org.tela_botanica.del.client.modeles.Observation;
941 benjamin 17
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
500 aurelien 18
import org.tela_botanica.del.client.modeles.PropositionDetermination;
941 benjamin 19
import org.tela_botanica.del.client.modeles.Protocole;
20
import org.tela_botanica.del.client.modeles.ProtocoleServiceResultat;
516 aurelien 21
import org.tela_botanica.del.client.modeles.Utilisateur;
846 aurelien 22
import org.tela_botanica.del.client.modeles.VoteDetermination;
500 aurelien 23
import org.tela_botanica.del.client.modeles.VoteProtocole;
24
 
25
import com.google.gwt.i18n.client.DateTimeFormat;
941 benjamin 26
import com.google.gwt.json.client.JSONArray;
500 aurelien 27
import com.google.gwt.json.client.JSONObject;
900 aurelien 28
import com.google.gwt.json.client.JSONParser;
516 aurelien 29
import com.google.gwt.json.client.JSONValue;
1104 gduche 30
import com.google.gwt.user.client.Window;
500 aurelien 31
 
941 benjamin 32
/**
33
 * Centralisation des methodes de parsing du code JSON retourné par les
34
 * webservices
35
 *
36
 * @author LIENS
37
 *
38
 */
500 aurelien 39
public class UtilitairesServiceResultat {
926 benjamin 40
 
941 benjamin 41
	/**
42
	 * Recupere un objet Image à partir du JSON
43
	 *
44
	 * @param imageJson
45
	 * @return
46
	 */
926 benjamin 47
	public static Image parserImageJSON(JSONObject imageJson) {
48
 
500 aurelien 49
		Image image = new Image();
763 aurelien 50
		String idImage = imageJson.get("id_image").isString().stringValue();
500 aurelien 51
		image.setIdImage(idImage);
926 benjamin 52
		image.setUrlFormat("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "%s%.jpg");
53
		image.setUrl("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "CRS.jpg");
54
		image.setMiniature("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "XS.jpg");
1014 aurelien 55
		image.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(imageJson, "mots_cles_texte")));
926 benjamin 56
 
500 aurelien 57
		return image;
58
	}
926 benjamin 59
 
941 benjamin 60
	/**
61
	 * Recupere un objet Observation à partir du JSON
62
	 *
63
	 * @param imageJson
64
	 * @return
65
	 */
500 aurelien 66
	public static Observation parserObservationJSON(JSONObject observationJson) {
926 benjamin 67
 
500 aurelien 68
		Observation observation = new Observation();
926 benjamin 69
		observation.setAuteur(getValeurOuVide(observationJson, "auteur.prenom") + " " + getValeurOuVide(observationJson, "auteur.nom"));
70
		observation.setNomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
1053 gduche 71
		observation.setPrenomAuteur(getValeurOuVide(observationJson, "auteur.prenom"));
926 benjamin 72
		observation.setIdAuteur(getValeurOuVide(observationJson, "auteur.id"));
73
		// TODO: renvoyer le courriel de l'auteur dans les obs
837 aurelien 74
		observation.setCourrielAuteur("");
926 benjamin 75
		observation.setDateTransmission(getValeurOuVide(observationJson, "date_observation"));
763 aurelien 76
		observation.setDateReleve(getValeurOuVide(observationJson, "date_observation"));
77
		observation.setFamille(getValeurOuVide(observationJson, "determination.famille"));
846 aurelien 78
		observation.setId(getValeurOuVide(observationJson, "id_observation"));
79
		observation.setIdLocalite(getValeurOuVide(observationJson, "id_zone_geo"));
80
		observation.setLocalite(getValeurOuVide(observationJson, "zone_geo"));
1062 benjamin 81
 
954 aurelien 82
		String nomRetenu = getValeurOuVide(observationJson, "determination.ns");
846 aurelien 83
		observation.setNomRetenu(getValeurOuVide(observationJson, "determination.ns"));
84
		observation.setMilieu(getValeurOuVide(observationJson, "milieu"));
85
		observation.setLieuDit(getValeurOuVide(observationJson, "lieudit"));
1026 gduche 86
		observation.setStation(getValeurOuVide(observationJson, "station"));
87
		observation.setCommentaire(getValeurOuVide(observationJson, "commentaire"));
846 aurelien 88
		observation.setNumNomenclatural(getValeurOuVide(observationJson, "determination.nn"));
1367 aurelien 89
		observation.setReferentiel(getValeurOuVide(observationJson, "determination.referentiel"));
1014 aurelien 90
		observation.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(observationJson, "mots_cles_texte")));
846 aurelien 91
		JSONValue propositions = observationJson.get("commentaires");
1062 benjamin 92
 
954 aurelien 93
		boolean creerPropositionAPartirObs = true;
1209 gduche 94
		boolean propositionInitialeExiste = false;
95
		PropositionDetermination propositionPotentiellementInitiale = null;
926 benjamin 96
		if (propositions != null && propositions.isObject() != null) {
939 benjamin 97
			List<InterventionForum> interventions = parserInterventions(propositions.isObject());
1209 gduche 98
 
939 benjamin 99
			for (InterventionForum interventionForum : interventions) {
1062 benjamin 100
				interventionForum.setObservation(observation);
101
				// Si une proposition avec le même nom retenu que l'observation
102
				// est déjà présente,
103
				// alors il n'est pas nécessaire de créer la proposition
104
				// "factice"
105
				if (interventionForum instanceof PropositionDetermination) {
106
					PropositionDetermination proposition = (PropositionDetermination) interventionForum;
107
					if (!nomRetenu.equals("") && proposition.getEspece().equals(nomRetenu)) {
954 aurelien 108
						creerPropositionAPartirObs = false;
1131 aurelien 109
						proposition.setDate(parserDateObservation(observation.getDateReleve()));
954 aurelien 110
					}
1209 gduche 111
 
112
					if (proposition.getEspece().equals(observation.getNomRetenu()) && proposition.getContributeur().getNomComplet().equals(observation.getAuteur())) {
113
						propositionPotentiellementInitiale = proposition;
114
					}
115
 
116
					if (proposition.estPropositionInitiale()) {
117
						propositionInitialeExiste = true;
118
					}
1062 benjamin 119
				}
939 benjamin 120
			}
876 gduche 121
			observation.setInterventionsForum(interventions);
846 aurelien 122
		}
1209 gduche 123
 
124
		if (!propositionInitialeExiste && propositionPotentiellementInitiale != null) {
125
			propositionPotentiellementInitiale.setEstPropositionInitiale(true);
126
		}
127
 
1062 benjamin 128
		if (creerPropositionAPartirObs) {
129
			// Si elle est nécessaire, la proposition factice est ajoutée au
130
			// début
1209 gduche 131
			observation.getInterventionsForum().add(0, creerPropositionDeterminationAPartirObservation(observation, propositionInitialeExiste));
954 aurelien 132
		}
500 aurelien 133
		return observation;
1209 gduche 134
 
500 aurelien 135
	}
1209 gduche 136
 
926 benjamin 137
 
941 benjamin 138
	/**
139
	 * Créée une proposition de determination à partir d'une observation
140
	 *
141
	 * @param observation
142
	 * @return
143
	 */
1209 gduche 144
	private static PropositionDetermination creerPropositionDeterminationAPartirObservation(Observation observation, boolean propositionInitialeExiste) {
941 benjamin 145
 
146
		String utilisateurNom = observation.getNomAuteur();
147
		String utilisateurPrenom = observation.getPrenomAuteur();
1062 benjamin 148
 
941 benjamin 149
		String utilisateurCourriel = observation.getCourrielAuteur();
150
		String utilisateurId = observation.getIdAuteur();
151
		PropositionDetermination propositionDetermination = new PropositionDetermination(observation);
152
		Contributeur contributeur = new Contributeur(utilisateurId, utilisateurNom, utilisateurPrenom, utilisateurCourriel);
153
		propositionDetermination.setContributeur(contributeur);
154
		java.util.Date datePropDeter = parserDateObservation(observation.getDateReleve());
155
		propositionDetermination.setDate(datePropDeter);
156
		propositionDetermination.setEspece(observation.getNomRetenu());
1209 gduche 157
		if (!propositionInitialeExiste) {
158
			propositionDetermination.setEstPropositionInitiale(true);
159
		}
160
 
941 benjamin 161
 
162
		return propositionDetermination;
163
	}
164
 
165
	/**
166
	 * Recupere une liste de commentaires à partir du JSON
167
	 *
168
	 * @param imageJson
169
	 * @return
170
	 */
939 benjamin 171
	public static List<Commentaire> parserCommentaires(JSONObject commentaires) {
172
		List<InterventionForum> interventionForums = parserInterventions(commentaires);
926 benjamin 173
		List<Commentaire> commentairesListe = new ArrayList<Commentaire>();
174
		for (InterventionForum interventionForum : interventionForums) {
175
			if (interventionForum instanceof Commentaire) {
176
				commentairesListe.add((Commentaire) interventionForum);
177
			}
178
		}
179
		return commentairesListe;
180
 
181
	}
182
 
941 benjamin 183
	/**
184
	 * Recupere une liste d'interventions à partir du JSON
185
	 *
186
	 * @param imageJson
187
	 * @return
188
	 */
939 benjamin 189
	public static List<InterventionForum> parserInterventions(JSONObject interventions) {
889 gduche 190
		HashMap<String, InterventionForum> interventionsNonTypees = new HashMap<String, InterventionForum>();
926 benjamin 191
 
192
		List<InterventionForum> retour = new ArrayList<InterventionForum>();
939 benjamin 193
 
926 benjamin 194
		// parcourir les interventions et en faire un tableau
939 benjamin 195
		if (interventions == null) {
926 benjamin 196
			return retour;
197
		}
888 gduche 198
		Iterator<String> itInterventions = interventions.keySet().iterator();
199
		while (itInterventions.hasNext()) {
200
			JSONObject jsonIntervention = interventions.get(itInterventions.next()).isObject();
201
			String nomSel = getValeurOuVide(jsonIntervention, "nom_sel");
926 benjamin 202
 
888 gduche 203
			String id = getValeurOuVide(jsonIntervention, "id_commentaire");
981 aurelien 204
			String idParent = getValeurOuVide(jsonIntervention, "id_parent");
888 gduche 205
			String texte = getValeurOuVide(jsonIntervention, "texte");
926 benjamin 206
 
977 aurelien 207
			String idUtilisateur = getValeurOuVide(jsonIntervention, "auteur.id");
952 aurelien 208
			String nom = getValeurOuVide(jsonIntervention, "auteur.nom");
209
			String prenom = getValeurOuVide(jsonIntervention, "auteur.prenom");
210
			String courriel = getValeurOuVide(jsonIntervention, "auteur.courriel");
888 gduche 211
			Contributeur contributeur = new Contributeur(idUtilisateur, nom, prenom, courriel);
1209 gduche 212
 
965 aurelien 213
			Date date = parserDateObservation(getValeurOuVide(jsonIntervention, "date"));
926 benjamin 214
 
888 gduche 215
			if (!nomSel.equals("")) {
216
				String nom_sel = getValeurOuVide(jsonIntervention, "nom_sel");
217
				String nom_sel_nn = getValeurOuVide(jsonIntervention, "nom_sel_nn");
218
				String nom_ret = getValeurOuVide(jsonIntervention, "nom_ret");
219
				String nom_ret_nn = getValeurOuVide(jsonIntervention, "nom_ret_nn");
220
				String famille = getValeurOuVide(jsonIntervention, "famille");
221
				String nom_referentiel = getValeurOuVide(jsonIntervention, "nom_referentiel");
1209 gduche 222
 
920 aurelien 223
				String nbCommentaires = getValeurOuVide(jsonIntervention, "nb_commentaires");
926 benjamin 224
 
888 gduche 225
				PropositionDetermination intervention = new PropositionDetermination(id, contributeur, texte);
1209 gduche 226
				String proposition_initiale = getValeurOuVide(jsonIntervention, "proposition_initiale");
227
				if (proposition_initiale != null && proposition_initiale.equals("1")) {
228
					intervention.setEstPropositionInitiale(true);
229
				} /*else {
230
					String nomRetObs = intervention.getObservation().getNomRetenu();
231
					String auteur = intervention.getObservation().getAuteur();
232
					boolean b = nom_ret.equals(nomRetObs) && intervention.getContributeur().getNomComplet().equals(auteur);
233
					intervention.setEstPropositionInitiale(b);
234
				}*/
235
 
939 benjamin 236
				// intervention.setObservation(observation);
888 gduche 237
				intervention.setEspece(nom_sel);
926 benjamin 238
 
239
				if (!nbCommentaires.equals("")) {
933 aurelien 240
					int nbComm = Integer.parseInt(nbCommentaires);
1062 benjamin 241
					// if (!texte.equals("")) {
242
					// nbComm++;
243
					// }
933 aurelien 244
					intervention.setNbCommentaires(nbComm);
920 aurelien 245
				}
926 benjamin 246
 
1393 aurelien 247
				if (nom_sel_nn != null && !nom_sel_nn.equals("")) {
248
					intervention.setNumNomenclatural(nom_sel_nn);
1104 gduche 249
				}
250
 
1393 aurelien 251
				if(nom_referentiel != null && !nom_referentiel.equals("")) {
252
					intervention.setReferentiel(nom_referentiel);
253
				}
1209 gduche 254
 
888 gduche 255
				if (!idParent.equals("")) {
256
					intervention.setIdParent(idParent);
257
				}
926 benjamin 258
 
259
				if (jsonIntervention.get("votes") != null && jsonIntervention.get("votes").isObject() != null) {
939 benjamin 260
					intervention.setVotesDeterminations(parserVotesDetermination(jsonIntervention.get("votes").isObject()));
888 gduche 261
				}
926 benjamin 262
 
888 gduche 263
				intervention.setDate(date);
889 gduche 264
				interventionsNonTypees.put(intervention.getId(), intervention);
926 benjamin 265
 
888 gduche 266
			} else {
267
				Commentaire intervention = new Commentaire(contributeur, date, texte);
893 gduche 268
				intervention.setId(id);
888 gduche 269
				intervention.setDate(date);
889 gduche 270
				interventionsNonTypees.put(intervention.getId(), intervention);
893 gduche 271
				if (!idParent.equals("")) {
272
					intervention.setIdParent(idParent);
273
				}
888 gduche 274
			}
275
		}
276
 
889 gduche 277
		Iterator<String> itIntervention = interventionsNonTypees.keySet().iterator();
278
		while (itIntervention.hasNext()) {
279
			String id = itIntervention.next();
280
			InterventionForum intervention = interventionsNonTypees.get(id);
281
			String idParent = intervention.getIdParent();
1003 benjamin 282
			if (idParent != null && !idParent.equals("") && !idParent.equals("0") && interventionsNonTypees.containsKey(idParent)) {
893 gduche 283
				InterventionForum parent = interventionsNonTypees.get(idParent);
284
				intervention.setParent(parent);
1062 benjamin 285
				parent.ajouterCommentaire((Commentaire) intervention);
286
			} else {
1003 benjamin 287
				retour.add(intervention);
288
			}
889 gduche 289
		}
926 benjamin 290
 
889 gduche 291
		return retour;
500 aurelien 292
	}
939 benjamin 293
 
941 benjamin 294
	/**
295
	 * Recupere une liste de commentaires à partir du JSON
296
	 *
297
	 * @param imageJson
298
	 * @return
299
	 */
931 aurelien 300
	public static String convertirEtParserRetourAjoutCommentaire(String retour) {
929 aurelien 301
		JSONObject retourJson = JSONParser.parseStrict(retour).isObject();
302
		return parserRetourAjoutCommentaire(retourJson);
303
	}
926 benjamin 304
 
941 benjamin 305
	/**
306
	 * Recupere une liste de commentaires à partir d'un objet JSON
307
	 *
308
	 * @param imageJson
309
	 * @return
310
	 */
884 aurelien 311
	public static String parserRetourAjoutCommentaire(JSONObject retour) {
312
		String id = "";
926 benjamin 313
		if (retour != null) {
884 aurelien 314
			id = getValeurOuVide(retour, "id_commentaire");
315
		}
316
		return id;
317
	}
926 benjamin 318
 
888 gduche 319
	public static String getValeurOuVide(JSONObject objet, String index) {
920 aurelien 320
		return (objet.get(index) != null && objet.get(index).isString() != null) ? objet.get(index).isString().stringValue() : "";
888 gduche 321
	}
926 benjamin 322
 
941 benjamin 323
	/**
324
	 * Recupere une liste de votes sur une determination à partir du JSON
325
	 *
326
	 * @param imageJson
327
	 * @return
328
	 */
939 benjamin 329
	public static HashMap<String, VoteDetermination> parserRetourListeVotesDetermination(String votesString) {
900 aurelien 330
 
331
		HashMap<String, VoteDetermination> retour = null;
926 benjamin 332
 
900 aurelien 333
		JSONObject votes = JSONParser.parseStrict(votesString).isObject();
926 benjamin 334
		if (votes != null && votes.get("resultats") != null && votes.get("resultats").isObject() != null) {
900 aurelien 335
			JSONObject resultat = votes.get("resultats").isObject();
939 benjamin 336
			retour = parserVotesDetermination(resultat);
900 aurelien 337
		}
338
		return retour;
339
	}
926 benjamin 340
 
941 benjamin 341
	/**
342
	 * Recupere une liste de votes sur une determination à partir d'un objet
343
	 * JSON
344
	 *
345
	 * @param imageJson
346
	 * @return
347
	 */
939 benjamin 348
	public static HashMap<String, VoteDetermination> parserVotesDetermination(JSONObject votes) {
846 aurelien 349
		HashMap<String, VoteDetermination> votesDetermination = new HashMap<String, VoteDetermination>();
350
		java.util.Iterator<String> itVotes = votes.keySet().iterator();
351
		while (itVotes.hasNext()) {
352
			JSONObject vote = votes.get(itVotes.next()).isObject();
353
			VoteDetermination vd = new VoteDetermination();
354
			vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
965 aurelien 355
			vd.setDate(parserDateObservation(getValeurOuVide(vote, "date")));
846 aurelien 356
			vd.setId(getValeurOuVide(vote, "vote.id"));
357
			vd.setVote(Integer.parseInt(getValeurOuVide(vote, "vote")));
900 aurelien 358
			vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
926 benjamin 359
 
360
			if (vote.get("auteur.nom") != null && vote.get("auteur.nom") != null && vote.get("auteur.courriel") != null) {
361
				Contributeur auteur = new Contributeur(getValeurOuVide(vote, "auteur.id"), getValeurOuVide(vote, "auteur.nom"), getValeurOuVide(vote, "auteur.prenom"), getValeurOuVide(vote, "auteur.courriel"));
900 aurelien 362
				vd.setAuteur(auteur);
363
			}
926 benjamin 364
 
846 aurelien 365
			votesDetermination.put(getValeurOuVide(vote, "auteur.id"), vd);
926 benjamin 366
		}
846 aurelien 367
		return votesDetermination;
368
	}
926 benjamin 369
 
941 benjamin 370
	/**
371
	 * Recupere une liste de votes sur des images à partir d'un objet JSON
372
	 *
373
	 * @param imageJson
374
	 * @return
375
	 */
926 benjamin 376
	public static HashMap<String, HashMap<String, VoteProtocole>> parserVotesProtocoles(JSONObject votes) {
377
 
378
		HashMap<String, HashMap<String, VoteProtocole>> votesProtocoles = new HashMap<String, HashMap<String, VoteProtocole>>();
777 aurelien 379
		java.util.Iterator<String> itProtocoles = votes.keySet().iterator();
926 benjamin 380
		while (itProtocoles.hasNext()) {
381
			JSONObject protocole = votes.get(itProtocoles.next()).isObject();
777 aurelien 382
			JSONObject votesPourCeProtocoles = protocole.get("votes").isObject();
383
			String idProtocoleVote = protocole.get("protocole.id").isString().stringValue();
384
			java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
926 benjamin 385
			while (itVotes.hasNext()) {
777 aurelien 386
				JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
387
				VoteProtocole vd = new VoteProtocole();
388
				vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
389
				// TODO récupérer la date du vote et la parser
965 aurelien 390
				vd.setDate(parserDateObservation(getValeurOuVide(voteEnCours, "date")));
777 aurelien 391
				int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
392
				vd.setVote(valeurVote);
926 benjamin 393
				if (!votesProtocoles.containsKey(idProtocoleVote)) {
394
					votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
777 aurelien 395
				}
396
				votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
500 aurelien 397
			}
398
		}
926 benjamin 399
 
500 aurelien 400
		return votesProtocoles;
401
	}
926 benjamin 402
 
941 benjamin 403
	/**
404
	 * Recupere une date à partir du JSON
405
	 *
406
	 * @param imageJson
407
	 * @return
408
	 */
500 aurelien 409
	public static Date parserDateObservation(String date) {
410
		Date dateParsee = new Date();
965 aurelien 411
		DateTimeFormat formatDateObs = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm:ss");
926 benjamin 412
		try {
413
			dateParsee = formatDateObs.parse(date);
414
		} catch (IllegalArgumentException e) {
415
			dateParsee = new java.sql.Date(0);
500 aurelien 416
		}
926 benjamin 417
		return dateParsee;
500 aurelien 418
	}
926 benjamin 419
 
941 benjamin 420
	/**
421
	 * Recupere des mots-clefs à partir du JSON
422
	 *
423
	 * @param imageJson
424
	 * @return
425
	 */
500 aurelien 426
	public static List<String> parserMotsCles(String motsClesTexte) {
427
		String[] tabMotsCle = motsClesTexte.split(",");
428
		List<String> motsClesParses = new ArrayList<String>();
429
		for (int i = 0; i < tabMotsCle.length; i++) {
1014 aurelien 430
			motsClesParses.add(tabMotsCle[i].trim());
500 aurelien 431
		}
926 benjamin 432
 
500 aurelien 433
		return motsClesParses;
434
	}
926 benjamin 435
 
500 aurelien 436
	public static String getIdAvecPadding(String id) {
437
		int maxZeros = 9 - id.length();
438
		for (int i = 0; i < maxZeros; i++) {
439
			id = "0" + id;
440
		}
441
		return id;
442
	}
926 benjamin 443
 
941 benjamin 444
	/**
445
	 * Recupere un utilisateur à partir du JSON
446
	 *
447
	 * @param imageJson
448
	 * @return
449
	 */
516 aurelien 450
	public static Utilisateur parserUtilisateurJson(JSONValue valeurJson) {
926 benjamin 451
 
516 aurelien 452
		JSONObject utilisateurJson = valeurJson.isObject();
453
		boolean connecteUtilisateur = utilisateurJson.get("connecte").isBoolean().booleanValue();
454
		String idUtilisateur = utilisateurJson.get("id_utilisateur").isString().stringValue();
926 benjamin 455
 
516 aurelien 456
		Utilisateur utilisateur;
926 benjamin 457
 
458
		if (connecteUtilisateur) {
522 aurelien 459
			String courrielUtilisateur = utilisateurJson.get("courriel").isString().stringValue();
516 aurelien 460
			String nomUtilisateur = utilisateurJson.get("nom").isString().stringValue();
461
			String prenomUtilisateur = utilisateurJson.get("prenom").isString().stringValue();
926 benjamin 462
 
516 aurelien 463
			utilisateur = new Utilisateur(idUtilisateur, prenomUtilisateur, nomUtilisateur, courrielUtilisateur);
464
		} else {
465
			utilisateur = new Utilisateur(idUtilisateur);
466
		}
926 benjamin 467
 
516 aurelien 468
		return utilisateur;
469
	}
1175 aurelien 470
 
471
	/**
472
	 * Recupere un utilisateur à partir du JSON
473
	 *
474
	 * @param imageJson
475
	 * @return
476
	 */
477
	public static HashMap<String, String> parserPreferencesUtilisateur(JSONValue valeurJson) {
478
 
479
		JSONObject utilisateurJson = valeurJson.isObject();
480
		HashMap<String, String> preferences = new HashMap<String, String>();
481
		JSONObject preferencesJson = utilisateurJson.get("preferences").isObject();
482
 
483
		java.util.Iterator<String> it = preferencesJson.keySet().iterator();
484
		while (it.hasNext()) {
485
			String cle = it.next();
486
			preferences.put(cle, preferencesJson.get(cle).isString().stringValue());
487
		}
488
		return preferences;
489
	}
941 benjamin 490
 
491
	/**
492
	 * Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet
493
	 * JSON
494
	 *
495
	 * @param retourJson
496
	 * @return
497
	 */
498
	public static ProtocoleServiceResultat parserProtocoleServiceResultat(JSONValue retourJson) {
499
		List<Protocole> protocoles = new ArrayList<Protocole>();
500
		JSONObject tableauProto = retourJson.isObject().get("resultats").isObject();
501
 
502
		if (tableauProto != null) {
503
			java.util.Iterator<String> it = tableauProto.keySet().iterator();
504
			while (it.hasNext()) {
505
 
506
				JSONObject protocoleJSON = tableauProto.get(it.next()).isObject();
507
				Protocole protocole = new Protocole();
508
				String idProtocole = UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.id");
509
				protocole.setId(Integer.parseInt(idProtocole));
510
				protocole.setNom(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.intitule"));
511
				protocole.setDescription(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.descriptif"));
1218 aurelien 512
				protocole.setTag(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.tag"));
941 benjamin 513
				protocoles.add(protocole);
514
			}
515
		}
516
 
517
		return new ProtocoleServiceResultat(protocoles);
518
	}
519
 
520
	/**
521
	 * Retourne un objet {@link ImageServiceResultat} à partir du JSON
522
	 *
523
	 * @param retourJson
524
	 * @return
525
	 */
526
	public static ImageServiceResultat parserImageServiceResultat(JSONValue retourJson) {
527
 
528
		ImageServiceResultat imageServiceResultat = new ImageServiceResultat();
529
		int nbTotalImagesPourLaRecherche;
530
 
531
		List<Image> images = new ArrayList<Image>();
532
		// TODO ajouter vérifications plus précises
533
		if (retourJson.isObject().get("entete") != null) {
534
			double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
535
			nbTotalImagesPourLaRecherche = (int) total;
536
			JSONObject tableauImg = retourJson.isObject().get("resultats").isObject();
1062 benjamin 537
			if (tableauImg != null) {
538
				java.util.Iterator<String> it = tableauImg.keySet().iterator();
539
				while (it.hasNext()) {
540
					JSONObject imageJson = tableauImg.get(it.next()).isObject();
541
					Image image = parserRetourImage(imageJson);
542
					images.add(image);
543
				}
941 benjamin 544
			}
545
 
546
		} else {
547
			JSONArray tableauImg = retourJson.isObject().get("images").isArray();
548
			nbTotalImagesPourLaRecherche = (int) tableauImg.size();
549
			for (int i = 0; i < nbTotalImagesPourLaRecherche; i++) {
550
				JSONObject imageJson = tableauImg.get(i).isObject();
551
				Image image = parserRetourImage(imageJson);
552
				images.add(image);
553
			}
554
		}
555
 
556
		imageServiceResultat.setImages(images);
557
		imageServiceResultat.setNbTotalImagesPourLaRecherche(nbTotalImagesPourLaRecherche);
558
 
559
		return imageServiceResultat;
560
 
561
	}
562
 
563
	/**
564
	 * Retourne un objet {@link Image} à partir du JSON
565
	 *
566
	 * @param retourJson
567
	 * @return
568
	 */
569
	public static Image parserRetourImage(JSONObject imageJson) {
570
		Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
571
 
572
		if (imageJson.get("observation") != null && imageJson.get("observation").isObject() != null) {
573
			JSONObject observationJson = imageJson.get("observation").isObject();
574
			image.setObservation(UtilitairesServiceResultat.parserObservationJSON(observationJson));
575
		}
576
 
577
		if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
578
			JSONObject votes = imageJson.get("protocoles_votes").isObject();
579
			image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
580
		}
581
 
582
		return image;
583
	}
584
 
585
	/**
586
	 * Retourne un objet {@link ObservationServiceResultat} à partir du JSON
587
	 *
588
	 * @param retourJson
589
	 * @return
590
	 */
591
	public static ObservationServiceResultat parserObservationServiceResultat(JSONValue retourJson) {
592
 
593
		ObservationServiceResultat observationServiceResultat = new ObservationServiceResultat();
594
 
595
		List<Observation> observations = new ArrayList<Observation>();
596
		int nbTotalObservationsPourLaRecherche = 0;
597
 
598
		if (retourJson.isObject().get("entete") != null) {
599
			// TODO ajouter vérifications plus précises
600
			double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
601
			nbTotalObservationsPourLaRecherche = (int) total;
602
			JSONObject tableauObs = retourJson.isObject().get("resultats").isObject();
603
 
604
			if (tableauObs != null) {
605
				java.util.Iterator<String> it = tableauObs.keySet().iterator();
606
				while (it.hasNext()) {
607
					JSONObject observationJson = tableauObs.get(it.next()).isObject();
608
					Observation observation = analyserObservation(observationJson);
609
					observations.add(observation);
610
				}
611
			}
612
		} else {
613
			JSONObject observationJson = retourJson.isObject();
614
			Observation observation = analyserObservation(observationJson);
615
			observations.add(observation);
616
			CacheClient.getInstance().setObservationCourante(observation);
617
		}
618
 
619
		observationServiceResultat.setObservations(observations);
620
		observationServiceResultat.setNbTotalObservationsPourLaRecherche(nbTotalObservationsPourLaRecherche);
621
 
622
		return observationServiceResultat;
623
	}
624
 
625
	/**
626
	 * Retourne un objet {@link Observation} avec ses {@link Image} associées à
627
	 * partir du JSON
628
	 *
629
	 * @param retourJson
630
	 * @return
631
	 */
632
	private static Observation analyserObservation(JSONObject observationJson) {
633
		Observation observation = UtilitairesServiceResultat.parserObservationJSON(observationJson);
634
		JSONArray tableauImagesObs = observationJson.get("images").isArray();
635
		List<Image> imagesPourObs = new ArrayList<Image>();
636
 
637
		int nbImages = tableauImagesObs.size();
638
		for (int j = 0; j < nbImages; j++) {
639
			JSONObject imageJson = tableauImagesObs.get(j).isObject();
640
 
641
			Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
642
			if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
643
				JSONObject votes = imageJson.get("protocoles_votes").isObject();
644
				image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
645
			}
646
			image.setObservation(observation);
647
			imagesPourObs.add(image);
648
		}
649
 
650
		observation.setImages(imagesPourObs);
651
 
652
		return observation;
653
	}
654
 
1162 aurelien 655
	public static List<MotCle> parserRetourListeMotsClesImage(JSONObject retourJson) {
656
		List<MotCle> motsCles = new ArrayList<MotCle>();
1151 aurelien 657
		JSONObject tableauMc = retourJson;
658
		if (tableauMc != null) {
659
			java.util.Iterator<String> it = tableauMc.keySet().iterator();
660
			while (it.hasNext()) {
661
				JSONObject mc = tableauMc.get(it.next()).isObject();
1162 aurelien 662
				MotCle motCle = new MotCle(getValeurOuVide(mc, "id_mot_cle"), getValeurOuVide(mc, "image"), getValeurOuVide(mc, "mot_cle"));
663
				motsCles.add(motCle);
1151 aurelien 664
			}
665
		}
666
		return motsCles;
667
	}
500 aurelien 668
}