Rev 952 | Rev 977 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.utils;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import org.tela_botanica.del.client.cache.CacheClient;
import org.tela_botanica.del.client.modeles.Commentaire;
import org.tela_botanica.del.client.modeles.Contributeur;
import org.tela_botanica.del.client.modeles.Image;
import org.tela_botanica.del.client.modeles.ImageServiceResultat;
import org.tela_botanica.del.client.modeles.InterventionForum;
import org.tela_botanica.del.client.modeles.Observation;
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
import org.tela_botanica.del.client.modeles.PropositionDetermination;
import org.tela_botanica.del.client.modeles.Protocole;
import org.tela_botanica.del.client.modeles.ProtocoleServiceResultat;
import org.tela_botanica.del.client.modeles.Utilisateur;
import org.tela_botanica.del.client.modeles.VoteDetermination;
import org.tela_botanica.del.client.modeles.VoteProtocole;
import com.google.gwt.i18n.client.DateTimeFormat;
import com.google.gwt.json.client.JSONArray;
import com.google.gwt.json.client.JSONObject;
import com.google.gwt.json.client.JSONParser;
import com.google.gwt.json.client.JSONValue;
/**
* Centralisation des methodes de parsing du code JSON retourné par les
* webservices
*
* @author LIENS
*
*/
public class UtilitairesServiceResultat {
/**
* Recupere un objet Image à partir du JSON
*
* @param imageJson
* @return
*/
public static Image parserImageJSON(JSONObject imageJson) {
Image image = new Image();
String idImage = imageJson.get("id_image").isString().stringValue();
image.setIdImage(idImage);
image.setUrlFormat("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "%s%.jpg");
image.setUrl("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "CRS.jpg");
image.setMiniature("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "XS.jpg");
return image;
}
/**
* Recupere un objet Observation à partir du JSON
*
* @param imageJson
* @return
*/
public static Observation parserObservationJSON(JSONObject observationJson) {
Observation observation = new Observation();
observation.setAuteur(getValeurOuVide(observationJson, "auteur.prenom") + " " + getValeurOuVide(observationJson, "auteur.nom"));
observation.setNomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
observation.setPrenomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
observation.setIdAuteur(getValeurOuVide(observationJson, "auteur.id"));
// TODO: renvoyer le courriel de l'auteur dans les obs
observation.setCourrielAuteur("");
observation.setDateTransmission(getValeurOuVide(observationJson, "date_observation"));
observation.setDateReleve(getValeurOuVide(observationJson, "date_observation"));
observation.setFamille(getValeurOuVide(observationJson, "determination.famille"));
observation.setId(getValeurOuVide(observationJson, "id_observation"));
observation.setIdLocalite(getValeurOuVide(observationJson, "id_zone_geo"));
observation.setLocalite(getValeurOuVide(observationJson, "zone_geo"));
String nomRetenu = getValeurOuVide(observationJson, "determination.ns");
observation.setNomRetenu(getValeurOuVide(observationJson, "determination.ns"));
observation.setMilieu(getValeurOuVide(observationJson, "milieu"));
observation.setLieuDit(getValeurOuVide(observationJson, "lieudit"));
observation.setNumNomenclatural(getValeurOuVide(observationJson, "determination.nn"));
// TODO: renvoyer les mots clés des observations
// observation.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(observationJson,
// "mots_cles_texte")));
JSONValue propositions = observationJson.get("commentaires");
boolean creerPropositionAPartirObs = true;
if (propositions != null && propositions.isObject() != null) {
List<InterventionForum> interventions = parserInterventions(propositions.isObject());
for (InterventionForum interventionForum : interventions) {
interventionForum.setObservation(observation);
// Si une proposition avec le même nom retenu que l'observation est déjà présente,
// alors il n'est pas nécessaire de créer la proposition "factice"
if(interventionForum instanceof PropositionDetermination) {
PropositionDetermination proposition = (PropositionDetermination)interventionForum;
if(!nomRetenu.equals("") && proposition.getEspece().equals(nomRetenu)) {
creerPropositionAPartirObs = false;
}
}
}
observation.setInterventionsForum(interventions);
}
if(creerPropositionAPartirObs) {
// Si elle est nécessaire, la proposition factice est ajoutée au début
observation.getInterventionsForum().add(0, creerPropositionDeterminationAPartirObservation(observation));
}
return observation;
}
/**
* Créée une proposition de determination à partir d'une observation
*
* @param observation
* @return
*/
private static PropositionDetermination creerPropositionDeterminationAPartirObservation(Observation observation) {
String utilisateurNom = observation.getNomAuteur();
String utilisateurPrenom = observation.getPrenomAuteur();
String utilisateurCourriel = observation.getCourrielAuteur();
String utilisateurId = observation.getIdAuteur();
PropositionDetermination propositionDetermination = new PropositionDetermination(observation);
Contributeur contributeur = new Contributeur(utilisateurId, utilisateurNom, utilisateurPrenom, utilisateurCourriel);
propositionDetermination.setContributeur(contributeur);
java.util.Date datePropDeter = parserDateObservation(observation.getDateReleve());
propositionDetermination.setDate(datePropDeter);
propositionDetermination.setEspece(observation.getNomRetenu());
return propositionDetermination;
}
/**
* Recupere une liste de commentaires à partir du JSON
*
* @param imageJson
* @return
*/
public static List<Commentaire> parserCommentaires(JSONObject commentaires) {
List<InterventionForum> interventionForums = parserInterventions(commentaires);
List<Commentaire> commentairesListe = new ArrayList<Commentaire>();
for (InterventionForum interventionForum : interventionForums) {
if (interventionForum instanceof Commentaire) {
commentairesListe.add((Commentaire) interventionForum);
}
}
return commentairesListe;
}
/**
* Recupere une liste d'interventions à partir du JSON
*
* @param imageJson
* @return
*/
public static List<InterventionForum> parserInterventions(JSONObject interventions) {
HashMap<String, InterventionForum> interventionsNonTypees = new HashMap<String, InterventionForum>();
List<InterventionForum> retour = new ArrayList<InterventionForum>();
// parcourir les interventions et en faire un tableau
if (interventions == null) {
return retour;
}
Iterator<String> itInterventions = interventions.keySet().iterator();
while (itInterventions.hasNext()) {
JSONObject jsonIntervention = interventions.get(itInterventions.next()).isObject();
String nomSel = getValeurOuVide(jsonIntervention, "nom_sel");
String id = getValeurOuVide(jsonIntervention, "id_commentaire");
String idParent = getValeurOuVide(jsonIntervention, "ce_commentaire_parent");
String texte = getValeurOuVide(jsonIntervention, "texte");
String idUtilisateur = getValeurOuVide(jsonIntervention, "ce_utilisateur");
String nom = getValeurOuVide(jsonIntervention, "auteur.nom");
String prenom = getValeurOuVide(jsonIntervention, "auteur.prenom");
String courriel = getValeurOuVide(jsonIntervention, "auteur.courriel");
Contributeur contributeur = new Contributeur(idUtilisateur, nom, prenom, courriel);
// TODO : parser date
Date date = new Date();
if (!nomSel.equals("")) {
String nom_sel = getValeurOuVide(jsonIntervention, "nom_sel");
String nom_sel_nn = getValeurOuVide(jsonIntervention, "nom_sel_nn");
String nom_ret = getValeurOuVide(jsonIntervention, "nom_ret");
String nom_ret_nn = getValeurOuVide(jsonIntervention, "nom_ret_nn");
String famille = getValeurOuVide(jsonIntervention, "famille");
String nom_referentiel = getValeurOuVide(jsonIntervention, "nom_referentiel");
String nbCommentaires = getValeurOuVide(jsonIntervention, "nb_commentaires");
PropositionDetermination intervention = new PropositionDetermination(id, contributeur, texte);
// intervention.setObservation(observation);
intervention.setEspece(nom_sel);
if (!nbCommentaires.equals("")) {
int nbComm = Integer.parseInt(nbCommentaires);
if (!texte.equals("")) {
nbComm++;
}
intervention.setNbCommentaires(nbComm);
}
if (!idParent.equals("")) {
intervention.setIdParent(idParent);
}
if (jsonIntervention.get("votes") != null && jsonIntervention.get("votes").isObject() != null) {
intervention.setVotesDeterminations(parserVotesDetermination(jsonIntervention.get("votes").isObject()));
}
intervention.setDate(date);
interventionsNonTypees.put(intervention.getId(), intervention);
} else {
Commentaire intervention = new Commentaire(contributeur, date, texte);
intervention.setId(id);
intervention.setDate(date);
interventionsNonTypees.put(intervention.getId(), intervention);
if (!idParent.equals("")) {
intervention.setIdParent(idParent);
}
}
}
Iterator<String> itIntervention = interventionsNonTypees.keySet().iterator();
while (itIntervention.hasNext()) {
String id = itIntervention.next();
InterventionForum intervention = interventionsNonTypees.get(id);
String idParent = intervention.getIdParent();
if (idParent != null && !idParent.equals("") && !idParent.equals("0")) {
InterventionForum parent = interventionsNonTypees.get(idParent);
intervention.setParent(parent);
}
}
retour.addAll(interventionsNonTypees.values());
return retour;
}
/**
* Recupere une liste de commentaires à partir du JSON
*
* @param imageJson
* @return
*/
public static String convertirEtParserRetourAjoutCommentaire(String retour) {
JSONObject retourJson = JSONParser.parseStrict(retour).isObject();
return parserRetourAjoutCommentaire(retourJson);
}
/**
* Recupere une liste de commentaires à partir d'un objet JSON
*
* @param imageJson
* @return
*/
public static String parserRetourAjoutCommentaire(JSONObject retour) {
String id = "";
if (retour != null) {
id = getValeurOuVide(retour, "id_commentaire");
}
return id;
}
public static String getValeurOuVide(JSONObject objet, String index) {
return (objet.get(index) != null && objet.get(index).isString() != null) ? objet.get(index).isString().stringValue() : "";
}
/**
* Recupere une liste de votes sur une determination à partir du JSON
*
* @param imageJson
* @return
*/
public static HashMap<String, VoteDetermination> parserRetourListeVotesDetermination(String votesString) {
HashMap<String, VoteDetermination> retour = null;
JSONObject votes = JSONParser.parseStrict(votesString).isObject();
if (votes != null && votes.get("resultats") != null && votes.get("resultats").isObject() != null) {
JSONObject resultat = votes.get("resultats").isObject();
retour = parserVotesDetermination(resultat);
}
return retour;
}
/**
* Recupere une liste de votes sur une determination à partir d'un objet
* JSON
*
* @param imageJson
* @return
*/
public static HashMap<String, VoteDetermination> parserVotesDetermination(JSONObject votes) {
HashMap<String, VoteDetermination> votesDetermination = new HashMap<String, VoteDetermination>();
java.util.Iterator<String> itVotes = votes.keySet().iterator();
while (itVotes.hasNext()) {
JSONObject vote = votes.get(itVotes.next()).isObject();
VoteDetermination vd = new VoteDetermination();
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
vd.setDate(new Date());
vd.setId(getValeurOuVide(vote, "vote.id"));
vd.setVote(Integer.parseInt(getValeurOuVide(vote, "vote")));
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
if (vote.get("auteur.nom") != null && vote.get("auteur.nom") != null && vote.get("auteur.courriel") != null) {
Contributeur auteur = new Contributeur(getValeurOuVide(vote, "auteur.id"), getValeurOuVide(vote, "auteur.nom"), getValeurOuVide(vote, "auteur.prenom"), getValeurOuVide(vote, "auteur.courriel"));
vd.setAuteur(auteur);
}
votesDetermination.put(getValeurOuVide(vote, "auteur.id"), vd);
}
return votesDetermination;
}
/**
* Recupere une liste de votes sur des images à partir d'un objet JSON
*
* @param imageJson
* @return
*/
public static HashMap<String, HashMap<String, VoteProtocole>> parserVotesProtocoles(JSONObject votes) {
HashMap<String, HashMap<String, VoteProtocole>> votesProtocoles = new HashMap<String, HashMap<String, VoteProtocole>>();
java.util.Iterator<String> itProtocoles = votes.keySet().iterator();
while (itProtocoles.hasNext()) {
JSONObject protocole = votes.get(itProtocoles.next()).isObject();
JSONObject votesPourCeProtocoles = protocole.get("votes").isObject();
String idProtocoleVote = protocole.get("protocole.id").isString().stringValue();
java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
while (itVotes.hasNext()) {
JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
VoteProtocole vd = new VoteProtocole();
vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
// TODO récupérer la date du vote et la parser
vd.setDate(new Date());
int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
vd.setVote(valeurVote);
if (!votesProtocoles.containsKey(idProtocoleVote)) {
votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
}
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
}
}
return votesProtocoles;
}
/**
* Recupere une date à partir du JSON
*
* @param imageJson
* @return
*/
public static Date parserDateObservation(String date) {
Date dateParsee = new Date();
DateTimeFormat formatDateObs = DateTimeFormat.getFormat("dd/MM/yyyy");
try {
dateParsee = formatDateObs.parse(date);
} catch (IllegalArgumentException e) {
dateParsee = new java.sql.Date(0);
}
return dateParsee;
}
/**
* Recupere des mots-clefs à partir du JSON
*
* @param imageJson
* @return
*/
public static List<String> parserMotsCles(String motsClesTexte) {
String[] tabMotsCle = motsClesTexte.split(",");
List<String> motsClesParses = new ArrayList<String>();
for (int i = 0; i < tabMotsCle.length; i++) {
motsClesParses.add(tabMotsCle[i]);
}
return motsClesParses;
}
public static String getIdAvecPadding(String id) {
int maxZeros = 9 - id.length();
for (int i = 0; i < maxZeros; i++) {
id = "0" + id;
}
return id;
}
/**
* Recupere un utilisateur à partir du JSON
*
* @param imageJson
* @return
*/
public static Utilisateur parserUtilisateurJson(JSONValue valeurJson) {
JSONObject utilisateurJson = valeurJson.isObject();
boolean connecteUtilisateur = utilisateurJson.get("connecte").isBoolean().booleanValue();
String idUtilisateur = utilisateurJson.get("id_utilisateur").isString().stringValue();
Utilisateur utilisateur;
if (connecteUtilisateur) {
String courrielUtilisateur = utilisateurJson.get("courriel").isString().stringValue();
String nomUtilisateur = utilisateurJson.get("nom").isString().stringValue();
String prenomUtilisateur = utilisateurJson.get("prenom").isString().stringValue();
utilisateur = new Utilisateur(idUtilisateur, prenomUtilisateur, nomUtilisateur, courrielUtilisateur);
} else {
utilisateur = new Utilisateur(idUtilisateur);
}
return utilisateur;
}
/**
* Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet
* JSON
*
* @param retourJson
* @return
*/
public static ProtocoleServiceResultat parserProtocoleServiceResultat(JSONValue retourJson) {
List<Protocole> protocoles = new ArrayList<Protocole>();
JSONObject tableauProto = retourJson.isObject().get("resultats").isObject();
if (tableauProto != null) {
java.util.Iterator<String> it = tableauProto.keySet().iterator();
while (it.hasNext()) {
JSONObject protocoleJSON = tableauProto.get(it.next()).isObject();
Protocole protocole = new Protocole();
String idProtocole = UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.id");
protocole.setId(Integer.parseInt(idProtocole));
protocole.setNom(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.intitule"));
protocole.setDescription(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.descriptif"));
protocoles.add(protocole);
}
}
return new ProtocoleServiceResultat(protocoles);
}
/**
* Retourne un objet {@link ImageServiceResultat} à partir du JSON
*
* @param retourJson
* @return
*/
public static ImageServiceResultat parserImageServiceResultat(JSONValue retourJson) {
ImageServiceResultat imageServiceResultat = new ImageServiceResultat();
int nbTotalImagesPourLaRecherche;
List<Image> images = new ArrayList<Image>();
// TODO ajouter vérifications plus précises
if (retourJson.isObject().get("entete") != null) {
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
nbTotalImagesPourLaRecherche = (int) total;
JSONObject tableauImg = retourJson.isObject().get("resultats").isObject();
java.util.Iterator<String> it = tableauImg.keySet().iterator();
while (it.hasNext()) {
JSONObject imageJson = tableauImg.get(it.next()).isObject();
Image image = parserRetourImage(imageJson);
images.add(image);
}
} else {
JSONArray tableauImg = retourJson.isObject().get("images").isArray();
nbTotalImagesPourLaRecherche = (int) tableauImg.size();
for (int i = 0; i < nbTotalImagesPourLaRecherche; i++) {
JSONObject imageJson = tableauImg.get(i).isObject();
Image image = parserRetourImage(imageJson);
images.add(image);
}
}
imageServiceResultat.setImages(images);
imageServiceResultat.setNbTotalImagesPourLaRecherche(nbTotalImagesPourLaRecherche);
return imageServiceResultat;
}
/**
* Retourne un objet {@link Image} à partir du JSON
*
* @param retourJson
* @return
*/
public static Image parserRetourImage(JSONObject imageJson) {
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
if (imageJson.get("observation") != null && imageJson.get("observation").isObject() != null) {
JSONObject observationJson = imageJson.get("observation").isObject();
image.setObservation(UtilitairesServiceResultat.parserObservationJSON(observationJson));
}
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
JSONObject votes = imageJson.get("protocoles_votes").isObject();
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
}
return image;
}
/**
* Retourne un objet {@link ObservationServiceResultat} à partir du JSON
*
* @param retourJson
* @return
*/
public static ObservationServiceResultat parserObservationServiceResultat(JSONValue retourJson) {
ObservationServiceResultat observationServiceResultat = new ObservationServiceResultat();
List<Observation> observations = new ArrayList<Observation>();
int nbTotalObservationsPourLaRecherche = 0;
if (retourJson.isObject().get("entete") != null) {
// TODO ajouter vérifications plus précises
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
nbTotalObservationsPourLaRecherche = (int) total;
JSONObject tableauObs = retourJson.isObject().get("resultats").isObject();
if (tableauObs != null) {
java.util.Iterator<String> it = tableauObs.keySet().iterator();
while (it.hasNext()) {
JSONObject observationJson = tableauObs.get(it.next()).isObject();
Observation observation = analyserObservation(observationJson);
observations.add(observation);
}
}
} else {
JSONObject observationJson = retourJson.isObject();
Observation observation = analyserObservation(observationJson);
observations.add(observation);
CacheClient.getInstance().setObservationCourante(observation);
}
observationServiceResultat.setObservations(observations);
observationServiceResultat.setNbTotalObservationsPourLaRecherche(nbTotalObservationsPourLaRecherche);
return observationServiceResultat;
}
/**
* Retourne un objet {@link Observation} avec ses {@link Image} associées à
* partir du JSON
*
* @param retourJson
* @return
*/
private static Observation analyserObservation(JSONObject observationJson) {
Observation observation = UtilitairesServiceResultat.parserObservationJSON(observationJson);
JSONArray tableauImagesObs = observationJson.get("images").isArray();
List<Image> imagesPourObs = new ArrayList<Image>();
int nbImages = tableauImagesObs.size();
for (int j = 0; j < nbImages; j++) {
JSONObject imageJson = tableauImagesObs.get(j).isObject();
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
JSONObject votes = imageJson.get("protocoles_votes").isObject();
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
}
image.setObservation(observation);
imagesPourObs.add(image);
}
observation.setImages(imagesPourObs);
return observation;
}
}