638 |
aurelien |
1 |
package org.tela_botanica.del.client.composants.votes.moyennevotes;
|
9 |
benjamin |
2 |
|
1566 |
mathias |
3 |
import java.util.HashMap;
|
629 |
aurelien |
4 |
import java.util.Iterator;
|
9 |
benjamin |
5 |
|
629 |
aurelien |
6 |
import org.tela_botanica.del.client.cache.CacheClient;
|
1085 |
gduche |
7 |
import org.tela_botanica.del.client.composants.votefleur.VoteFleurPresenteur;
|
|
|
8 |
import org.tela_botanica.del.client.composants.votefleur.VoteFleurVue;
|
629 |
aurelien |
9 |
import org.tela_botanica.del.client.modeles.Image;
|
423 |
gduche |
10 |
import org.tela_botanica.del.client.modeles.Protocole;
|
148 |
benjamin |
11 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
1471 |
aurelien |
12 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
13 |
import org.tela_botanica.del.client.navigation.evenement.changementEtatUtilisateur.EvenementChangementEtatUtilisateur;
|
|
|
14 |
import org.tela_botanica.del.client.navigation.evenement.changementEtatUtilisateur.GestionnaireEvenementChangementEtatUtilisateur;
|
|
|
15 |
import org.tela_botanica.del.client.navigation.evenement.suppressioncommentaire.EvenementSuppressionCommentaire;
|
|
|
16 |
import org.tela_botanica.del.client.navigation.evenement.suppressioncommentaire.GestionnaireEvenementSuppressionCommentaire;
|
423 |
gduche |
17 |
import org.tela_botanica.del.client.services.rest.VoteProtocoleService;
|
1471 |
aurelien |
18 |
import org.tela_botanica.del.client.services.rest.async.AjoutVoteProtocoleCallback;
|
823 |
aurelien |
19 |
import org.tela_botanica.del.client.services.rest.async.VoteProtocoleCallback;
|
939 |
benjamin |
20 |
|
423 |
gduche |
21 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
22 |
import com.google.gwt.event.dom.client.ClickHandler;
|
629 |
aurelien |
23 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
1095 |
gduche |
24 |
import com.google.gwt.event.dom.client.HasMouseMoveHandlers;
|
|
|
25 |
import com.google.gwt.event.dom.client.MouseMoveEvent;
|
|
|
26 |
import com.google.gwt.event.dom.client.MouseMoveHandler;
|
1471 |
aurelien |
27 |
import com.google.gwt.user.client.Window;
|
629 |
aurelien |
28 |
import com.google.gwt.user.client.ui.HasText;
|
9 |
benjamin |
29 |
import com.google.gwt.user.client.ui.HasWidgets;
|
629 |
aurelien |
30 |
import com.google.gwt.user.client.ui.IsWidget;
|
9 |
benjamin |
31 |
|
14 |
benjamin |
32 |
public class MoyenneVotePresenteur {
|
9 |
benjamin |
33 |
|
629 |
aurelien |
34 |
public interface Vue extends IsWidget {
|
|
|
35 |
public HasClickHandlers getBoutonAnnuler();
|
939 |
benjamin |
36 |
|
629 |
aurelien |
37 |
public HasClickHandlers getVotes();
|
939 |
benjamin |
38 |
|
629 |
aurelien |
39 |
public int getValeurVote();
|
939 |
benjamin |
40 |
|
629 |
aurelien |
41 |
public void afficherBoutonAnnuler();
|
939 |
benjamin |
42 |
|
629 |
aurelien |
43 |
public void masquerBoutonAnnuler();
|
939 |
benjamin |
44 |
|
629 |
aurelien |
45 |
public void afficherNbVotes();
|
939 |
benjamin |
46 |
|
|
|
47 |
public void masquerNbVotes();
|
|
|
48 |
|
1566 |
mathias |
49 |
public void afficherNbPoints();
|
|
|
50 |
|
|
|
51 |
public void masquerNbPoints();
|
|
|
52 |
|
629 |
aurelien |
53 |
public void reinitialiserVotes();
|
939 |
benjamin |
54 |
|
1566 |
mathias |
55 |
public void rafraichir(int moyenneVote, int nbVotes, int nombrePoints);
|
939 |
benjamin |
56 |
|
629 |
aurelien |
57 |
public void ajouterAuParent(HasWidgets composite);
|
1095 |
gduche |
58 |
|
1084 |
gduche |
59 |
public void afficherVotePrisEnCompte();
|
1095 |
gduche |
60 |
|
1085 |
gduche |
61 |
public HasWidgets getZoneFleur();
|
1095 |
gduche |
62 |
|
1086 |
gduche |
63 |
public HasText getZoneProtocole();
|
1095 |
gduche |
64 |
|
1088 |
gduche |
65 |
public void setNoteGenerale(int note);
|
1095 |
gduche |
66 |
|
1092 |
gduche |
67 |
public void afficherVoteModifie();
|
1095 |
gduche |
68 |
|
|
|
69 |
public HasMouseMoveHandlers getZoneVoter();
|
|
|
70 |
public void masquerZoneVoter();
|
1266 |
aurelien |
71 |
|
|
|
72 |
public void setNoteGeneraleToolTip(double valeurVoteTotalPrecise);
|
1471 |
aurelien |
73 |
|
|
|
74 |
void desactiverInteractionVote();
|
|
|
75 |
|
|
|
76 |
void activerInteractionVote();
|
|
|
77 |
|
|
|
78 |
void afficherVoteSupprime();
|
629 |
aurelien |
79 |
}
|
939 |
benjamin |
80 |
|
629 |
aurelien |
81 |
private Vue vue;
|
423 |
gduche |
82 |
private Protocole protocole;
|
629 |
aurelien |
83 |
private Image image;
|
939 |
benjamin |
84 |
|
629 |
aurelien |
85 |
private int valeurVoteDefaut = -1;
|
|
|
86 |
private int valeurVoteUtilisateur = -1;
|
|
|
87 |
private int valeurVoteTotal = 0;
|
1566 |
mathias |
88 |
private int nombrePoints = 0;
|
1266 |
aurelien |
89 |
private double valeurVoteTotalPrecise = 0.0;
|
939 |
benjamin |
90 |
|
|
|
91 |
// TODO: on devrait passer un conteneur qui permet d'accéder à ces services
|
959 |
benjamin |
92 |
private VoteProtocoleService voteProtocoleService;
|
939 |
benjamin |
93 |
|
1095 |
gduche |
94 |
public MoyenneVotePresenteur(Image image, Protocole protocole, Vue vue,
|
|
|
95 |
VoteProtocoleService voteProtocoleService) {
|
629 |
aurelien |
96 |
this.vue = vue;
|
423 |
gduche |
97 |
this.protocole = protocole;
|
629 |
aurelien |
98 |
this.image = image;
|
959 |
benjamin |
99 |
this.voteProtocoleService = voteProtocoleService;
|
1095 |
gduche |
100 |
|
1086 |
gduche |
101 |
String nomProtocole = protocole.getNom();
|
1095 |
gduche |
102 |
nomProtocole = nomProtocole.substring(0, 1).toUpperCase()
|
|
|
103 |
+ nomProtocole.substring(1).toLowerCase();
|
1086 |
gduche |
104 |
vue.getZoneProtocole().setText(nomProtocole);
|
9 |
benjamin |
105 |
}
|
|
|
106 |
|
629 |
aurelien |
107 |
public void go(HasWidgets composite) {
|
|
|
108 |
vue.ajouterAuParent(composite);
|
423 |
gduche |
109 |
gererEvenements();
|
629 |
aurelien |
110 |
rafraichirVue();
|
9 |
benjamin |
111 |
}
|
939 |
benjamin |
112 |
|
423 |
gduche |
113 |
public void gererEvenements() {
|
1095 |
gduche |
114 |
|
|
|
115 |
vue.getZoneVoter().addMouseMoveHandler(new MouseMoveHandler() {
|
|
|
116 |
|
|
|
117 |
@Override
|
|
|
118 |
public void onMouseMove(MouseMoveEvent event) {
|
|
|
119 |
vue.masquerZoneVoter();
|
|
|
120 |
}
|
|
|
121 |
});
|
|
|
122 |
|
423 |
gduche |
123 |
vue.getVotes().addClickHandler(new ClickHandler() {
|
|
|
124 |
@Override
|
|
|
125 |
public void onClick(ClickEvent event) {
|
629 |
aurelien |
126 |
valeurVoteUtilisateur = vue.getValeurVote();
|
1471 |
aurelien |
127 |
enregistrerVote();
|
423 |
gduche |
128 |
vue.afficherBoutonAnnuler();
|
|
|
129 |
vue.masquerNbVotes();
|
1566 |
mathias |
130 |
vue.masquerNbPoints();
|
423 |
gduche |
131 |
}
|
|
|
132 |
});
|
939 |
benjamin |
133 |
|
423 |
gduche |
134 |
vue.getBoutonAnnuler().addClickHandler(new ClickHandler() {
|
|
|
135 |
@Override
|
|
|
136 |
public void onClick(ClickEvent event) {
|
629 |
aurelien |
137 |
valeurVoteUtilisateur = valeurVoteDefaut;
|
423 |
gduche |
138 |
vue.masquerBoutonAnnuler();
|
1471 |
aurelien |
139 |
supprimerVote();
|
423 |
gduche |
140 |
vue.afficherNbVotes();
|
1566 |
mathias |
141 |
vue.afficherNbPoints();
|
423 |
gduche |
142 |
vue.reinitialiserVotes();
|
|
|
143 |
}
|
|
|
144 |
});
|
1471 |
aurelien |
145 |
|
|
|
146 |
BusEvenementiel.getInstance().addHandler(EvenementChangementEtatUtilisateur.TYPE, new GestionnaireEvenementChangementEtatUtilisateur() {
|
423 |
gduche |
147 |
@Override
|
1471 |
aurelien |
148 |
public void onModificationEtatUtilisateur(EvenementChangementEtatUtilisateur evenementChangementEtatUtilisateur) {
|
|
|
149 |
rafraichirVue();
|
423 |
gduche |
150 |
}
|
|
|
151 |
});
|
|
|
152 |
}
|
939 |
benjamin |
153 |
|
629 |
aurelien |
154 |
public void setValeurVoteUtilisateur(int valeurVoteUtilisateur) {
|
|
|
155 |
this.valeurVoteUtilisateur = valeurVoteUtilisateur;
|
|
|
156 |
}
|
939 |
benjamin |
157 |
|
423 |
gduche |
158 |
public void enregistrerVote() {
|
1471 |
aurelien |
159 |
vue.desactiverInteractionVote();
|
939 |
benjamin |
160 |
final VoteProtocole voteProtocole = new VoteProtocole();
|
423 |
gduche |
161 |
voteProtocole.setProtocole(this.protocole);
|
629 |
aurelien |
162 |
voteProtocole.setVote(valeurVoteUtilisateur);
|
1095 |
gduche |
163 |
String idContributeur = CacheClient.getInstance().getUtilisateur()
|
|
|
164 |
.getId();
|
823 |
aurelien |
165 |
voteProtocole.setContributeur(idContributeur);
|
1471 |
aurelien |
166 |
|
|
|
167 |
//TODO: ceci devrait pouvoir être factorisé
|
1095 |
gduche |
168 |
if (image.utilisateurAVotePourProtocole(this.protocole.getId() + "",
|
|
|
169 |
idContributeur)) {
|
1471 |
aurelien |
170 |
voteProtocole.setId(image.getVotesProtocoles(this.protocole.getId()+"").get(idContributeur).getId());
|
|
|
171 |
VoteProtocoleCallback vpc = new VoteProtocoleCallback() {
|
|
|
172 |
@Override
|
|
|
173 |
public void surRetour(Void objetRetour) {
|
|
|
174 |
image.ajouterVoteProtocole(voteProtocole);
|
|
|
175 |
rafraichirVue();
|
|
|
176 |
vue.afficherVoteModifie();
|
|
|
177 |
vue.activerInteractionVote();
|
|
|
178 |
}
|
|
|
179 |
};
|
1095 |
gduche |
180 |
voteProtocoleService.modifierVote(image.getIdImage(),
|
|
|
181 |
voteProtocole, vpc);
|
823 |
aurelien |
182 |
} else {
|
1471 |
aurelien |
183 |
AjoutVoteProtocoleCallback vpc = new AjoutVoteProtocoleCallback() {
|
|
|
184 |
@Override
|
|
|
185 |
public void surRetour(String idVote) {
|
|
|
186 |
voteProtocole.setId(idVote);
|
|
|
187 |
image.ajouterVoteProtocole(voteProtocole);
|
|
|
188 |
rafraichirVue();
|
|
|
189 |
vue.afficherVotePrisEnCompte();
|
|
|
190 |
vue.activerInteractionVote();
|
|
|
191 |
}
|
|
|
192 |
};
|
1095 |
gduche |
193 |
voteProtocoleService.ajouterVote(image.getIdImage(), voteProtocole,
|
|
|
194 |
vpc);
|
823 |
aurelien |
195 |
}
|
629 |
aurelien |
196 |
}
|
1471 |
aurelien |
197 |
|
|
|
198 |
public void supprimerVote() {
|
|
|
199 |
vue.desactiverInteractionVote();
|
|
|
200 |
final String idContributeur = CacheClient.getInstance().getUtilisateur()
|
|
|
201 |
.getId();
|
|
|
202 |
final VoteProtocole voteProtocole = image.getVotesProtocoles(protocole.getId()).get(idContributeur);
|
|
|
203 |
VoteProtocoleCallback vpc = new VoteProtocoleCallback() {
|
|
|
204 |
@Override
|
|
|
205 |
public void surRetour(Void objetRetour) {
|
|
|
206 |
// TODO: voir si l'on affiche un message en cas de succès ?
|
|
|
207 |
image.supprimerVoteProtocole(protocole.getId() + "", idContributeur);
|
|
|
208 |
rafraichirVue();
|
|
|
209 |
vue.afficherVoteSupprime();
|
|
|
210 |
vue.activerInteractionVote();
|
|
|
211 |
}
|
939 |
benjamin |
212 |
|
1471 |
aurelien |
213 |
};
|
|
|
214 |
voteProtocoleService.supprimerVote(image.getIdImage(), voteProtocole, vpc);
|
|
|
215 |
}
|
|
|
216 |
|
629 |
aurelien |
217 |
public int getValeurVoteTotal() {
|
|
|
218 |
return valeurVoteTotal;
|
|
|
219 |
}
|
|
|
220 |
|
|
|
221 |
public IsWidget getVue() {
|
|
|
222 |
return vue;
|
|
|
223 |
}
|
939 |
benjamin |
224 |
|
629 |
aurelien |
225 |
private void rafraichirVue() {
|
1266 |
aurelien |
226 |
valeurVoteTotal = calculerMoyenneVotesArrondie();
|
1566 |
mathias |
227 |
//valeurVoteTotalPrecise = calculerMoyenneVotes();
|
|
|
228 |
valeurVoteTotalPrecise = calculerMoyennePondereeVotes();
|
|
|
229 |
nombrePoints = calculerNombrePointsEchelleArbitraire();
|
1095 |
gduche |
230 |
VoteProtocole voteProtocole = image.getVotesProtocoles(
|
|
|
231 |
protocole.getId()).get(
|
|
|
232 |
CacheClient.getInstance().getUtilisateur().getId());
|
1088 |
gduche |
233 |
int voteUtilisateur = 0;
|
|
|
234 |
if (voteProtocole != null) {
|
|
|
235 |
voteUtilisateur = voteProtocole.getVote();
|
1095 |
gduche |
236 |
vue.masquerZoneVoter();
|
1088 |
gduche |
237 |
}
|
1471 |
aurelien |
238 |
|
|
|
239 |
if(image.utilisateurAVotePourProtocole(protocole.getId()+"", CacheClient.getInstance().getUtilisateur().getId())) {
|
|
|
240 |
vue.afficherBoutonAnnuler();
|
|
|
241 |
}
|
1095 |
gduche |
242 |
|
|
|
243 |
VoteFleurPresenteur presenteurFleur = new VoteFleurPresenteur(
|
|
|
244 |
new VoteFleurVue());
|
1085 |
gduche |
245 |
presenteurFleur.setNote(valeurVoteTotal);
|
1088 |
gduche |
246 |
vue.setNoteGenerale(valeurVoteTotal);
|
1266 |
aurelien |
247 |
vue.setNoteGeneraleToolTip(valeurVoteTotalPrecise);
|
1085 |
gduche |
248 |
presenteurFleur.go(vue.getZoneFleur());
|
1095 |
gduche |
249 |
vue.rafraichir(voteUtilisateur,
|
1566 |
mathias |
250 |
image.getVotesProtocoles(protocole.getId()).size(), nombrePoints);
|
629 |
aurelien |
251 |
}
|
1566 |
mathias |
252 |
|
|
|
253 |
// Calcule une moyenne, où chaque note est pondérée par son nombre d'occurrences au carré.
|
|
|
254 |
// voir http://www.tela-botanica.org/wikini/DevInformatiques/wakka.php?wiki=AppliDelCalculVotes
|
|
|
255 |
public double calculerMoyennePondereeVotes() {
|
|
|
256 |
|
|
|
257 |
double score = 0;
|
|
|
258 |
double diviseur = 0;
|
|
|
259 |
int nbOccurrences;
|
|
|
260 |
HashMap<Integer,Integer> occurrencesParNote = new HashMap<Integer,Integer>();
|
|
|
261 |
|
|
|
262 |
// rangement par note => occurrences
|
|
|
263 |
for (String clef : image.getVotesProtocoles(protocole.getId()).keySet()) {
|
|
|
264 |
VoteProtocole imageCelValidationData = image.getVotesProtocoles(protocole.getId()).get(clef);
|
|
|
265 |
nbOccurrences = 1;
|
|
|
266 |
if (occurrencesParNote.containsKey(imageCelValidationData.getVote())) {
|
|
|
267 |
nbOccurrences = occurrencesParNote.get(imageCelValidationData.getVote()) + 1;
|
|
|
268 |
}
|
|
|
269 |
occurrencesParNote.put(imageCelValidationData.getVote(), nbOccurrences);
|
629 |
aurelien |
270 |
}
|
939 |
benjamin |
271 |
|
1566 |
mathias |
272 |
// calcul pondéré
|
|
|
273 |
for (Integer clef : occurrencesParNote.keySet()) {
|
|
|
274 |
score += clef * occurrencesParNote.get(clef) * occurrencesParNote.get(clef);
|
|
|
275 |
diviseur += occurrencesParNote.get(clef) * occurrencesParNote.get(clef);
|
629 |
aurelien |
276 |
}
|
|
|
277 |
|
1566 |
mathias |
278 |
if (diviseur > 0) {
|
|
|
279 |
score /= diviseur;
|
|
|
280 |
}
|
|
|
281 |
|
|
|
282 |
return score;
|
1266 |
aurelien |
283 |
}
|
|
|
284 |
|
1566 |
mathias |
285 |
// remplace chaque note par un nombre de points noté dans "echelle" afin de favoriser
|
|
|
286 |
// les note fortes (5 et 4), pour le défi photo notamment
|
|
|
287 |
public int calculerNombrePointsEchelleArbitraire() {
|
|
|
288 |
int points = 0;
|
|
|
289 |
int[] echelle = {-1,0,1,4,20};
|
|
|
290 |
|
|
|
291 |
for (String clef : image.getVotesProtocoles(protocole.getId()).keySet()) {
|
|
|
292 |
VoteProtocole imageCelValidationData = image.getVotesProtocoles(protocole.getId()).get(clef);
|
|
|
293 |
points += echelle[imageCelValidationData.getVote() - 1];
|
|
|
294 |
}
|
|
|
295 |
|
|
|
296 |
return points;
|
|
|
297 |
}
|
|
|
298 |
|
1266 |
aurelien |
299 |
public int calculerMoyenneVotesArrondie() {
|
1566 |
mathias |
300 |
//double valeurVote = calculerMoyenneVotes();
|
|
|
301 |
double valeurVote = calculerMoyennePondereeVotes();
|
939 |
benjamin |
302 |
return (int) Math.round(valeurVote);
|
423 |
gduche |
303 |
}
|
9 |
benjamin |
304 |
}
|