Subversion Repositories eFlore/Applications.del

Rev

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