60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
1562 |
jpm |
3 |
import java.util.ArrayList;
|
1468 |
jpm |
4 |
import java.util.HashMap;
|
231 |
jp_milcent |
5 |
import java.util.Iterator;
|
134 |
jpm |
6 |
import java.util.List;
|
1562 |
jpm |
7 |
import java.util.logging.Level;
|
|
|
8 |
import java.util.logging.Logger;
|
134 |
jpm |
9 |
|
61 |
jpm |
10 |
import org.tela_botanica.client.composants.AideFenetre;
|
60 |
jpm |
11 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
1210 |
cyprien |
12 |
import org.tela_botanica.client.composants.InfoLogger;
|
898 |
gduche |
13 |
import org.tela_botanica.client.composants.LicenceFenetre;
|
1023 |
jpm |
14 |
import org.tela_botanica.client.composants.AproposFenetre;
|
907 |
jpm |
15 |
import org.tela_botanica.client.configuration.APropos;
|
|
|
16 |
import org.tela_botanica.client.configuration.Configuration;
|
358 |
jp_milcent |
17 |
import org.tela_botanica.client.i18n.Constantes;
|
466 |
gduche |
18 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
19 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
156 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
21 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
61 |
jpm |
22 |
import org.tela_botanica.client.modeles.Utilisateur;
|
1014 |
gduche |
23 |
import org.tela_botanica.client.modeles.Valeur;
|
935 |
jpm |
24 |
import org.tela_botanica.client.modeles.collection.Collection;
|
989 |
jpm |
25 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
26 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireAsyncDao;
|
|
|
27 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
|
935 |
jpm |
28 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
|
|
29 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonneListe;
|
|
|
30 |
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
|
|
|
31 |
import org.tela_botanica.client.modeles.collection.CollectionAPublicationListe;
|
|
|
32 |
import org.tela_botanica.client.modeles.collection.CollectionListe;
|
985 |
jpm |
33 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
34 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
935 |
jpm |
35 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
36 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
|
|
37 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
38 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
39 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
40 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
|
|
41 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
42 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
|
|
43 |
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
|
|
|
44 |
import org.tela_botanica.client.modeles.structure.StructureConservation;
|
|
|
45 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
|
|
46 |
import org.tela_botanica.client.modeles.structure.StructureValorisation;
|
1324 |
gduche |
47 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
1818 |
mathias |
48 |
import org.tela_botanica.client.util.Analytics;
|
1428 |
cyprien |
49 |
import org.tela_botanica.client.util.Debug;
|
1562 |
jpm |
50 |
import org.tela_botanica.client.util.Log;
|
|
|
51 |
import org.tela_botanica.client.util.UtilArray;
|
936 |
jpm |
52 |
import org.tela_botanica.client.vues.ContenuVue;
|
444 |
jp_milcent |
53 |
import org.tela_botanica.client.vues.EnteteVue;
|
1613 |
aurelien |
54 |
import org.tela_botanica.client.vues.FenetreForm;
|
641 |
jp_milcent |
55 |
import org.tela_botanica.client.vues.Formulaire;
|
1210 |
cyprien |
56 |
import org.tela_botanica.client.vues.FenetreJournal;
|
1780 |
aurelien |
57 |
import org.tela_botanica.client.vues.MenuHorizontalVue;
|
332 |
gduche |
58 |
import org.tela_botanica.client.vues.PopupChargement;
|
443 |
jp_milcent |
59 |
import org.tela_botanica.client.vues.StatutVue;
|
912 |
jpm |
60 |
import org.tela_botanica.client.vues.accueil.AccueilVue;
|
1790 |
aurelien |
61 |
import org.tela_botanica.client.vues.accueil.StatistiquesVue;
|
934 |
jpm |
62 |
import org.tela_botanica.client.vues.collection.CollectionForm;
|
|
|
63 |
import org.tela_botanica.client.vues.collection.CollectionListeVue;
|
|
|
64 |
import org.tela_botanica.client.vues.collection.CollectionVue;
|
989 |
jpm |
65 |
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
|
985 |
jpm |
66 |
import org.tela_botanica.client.vues.commentaire.CommentaireVue;
|
935 |
jpm |
67 |
import org.tela_botanica.client.vues.personne.PersonneForm;
|
|
|
68 |
import org.tela_botanica.client.vues.personne.PersonneVue;
|
|
|
69 |
import org.tela_botanica.client.vues.publication.PublicationForm;
|
|
|
70 |
import org.tela_botanica.client.vues.publication.PublicationVue;
|
|
|
71 |
import org.tela_botanica.client.vues.structure.StructureForm;
|
|
|
72 |
import org.tela_botanica.client.vues.structure.StructureVue;
|
467 |
jp_milcent |
73 |
|
60 |
jpm |
74 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
75 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
1780 |
aurelien |
76 |
import com.extjs.gxt.ui.client.Style.Orientation;
|
315 |
gduche |
77 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
78 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
79 |
import com.extjs.gxt.ui.client.util.Margins;
|
1780 |
aurelien |
80 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
315 |
gduche |
81 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
|
|
82 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
83 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
84 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
85 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
86 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
1780 |
aurelien |
87 |
import com.extjs.gxt.ui.client.widget.layout.LayoutData;
|
|
|
88 |
import com.extjs.gxt.ui.client.widget.layout.RowData;
|
|
|
89 |
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
|
91 |
jpm |
90 |
import com.google.gwt.core.client.GWT;
|
1509 |
jpm |
91 |
import com.google.gwt.event.logical.shared.ValueChangeEvent;
|
|
|
92 |
import com.google.gwt.event.logical.shared.ValueChangeHandler;
|
1562 |
jpm |
93 |
import com.google.gwt.http.client.URL;
|
599 |
gduche |
94 |
import com.google.gwt.i18n.client.Dictionary;
|
1509 |
jpm |
95 |
import com.google.gwt.user.client.History;
|
60 |
jpm |
96 |
import com.google.gwt.user.client.Window;
|
|
|
97 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
98 |
|
1509 |
jpm |
99 |
public class Mediateur implements Rafraichissable, ValueChangeHandler<String> {
|
60 |
jpm |
100 |
|
358 |
jp_milcent |
101 |
private Viewport viewport;
|
119 |
jpm |
102 |
private Modele modele = null;
|
582 |
jp_milcent |
103 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
104 |
public static final ErrorMessages i18nM = getI18nMessage();
|
1637 |
aurelien |
105 |
public static final boolean DEBUG = false;
|
|
|
106 |
public static final boolean DEBUG_CHARGEMENT = false;
|
119 |
jpm |
107 |
|
1562 |
jpm |
108 |
private String requeteUrl = null;
|
|
|
109 |
|
444 |
jp_milcent |
110 |
private EnteteVue panneauNord = null;
|
|
|
111 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
112 |
private StatutVue panneauSud = null;
|
1210 |
cyprien |
113 |
private FenetreJournal fenetreJournal = null;
|
1780 |
aurelien |
114 |
private MenuHorizontalVue panneauNavigation = null;
|
60 |
jpm |
115 |
|
1468 |
jpm |
116 |
private HashMap<Object, Integer> fileDAttenteChargement = null;
|
|
|
117 |
|
358 |
jp_milcent |
118 |
private IdentificationFenetre fenetreIdentification = null;
|
1041 |
gduche |
119 |
private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
1156 |
jpm |
120 |
|
1468 |
jpm |
121 |
private Sequenceur sequenceur = null;
|
1633 |
aurelien |
122 |
private boolean premierChargement = true;
|
1468 |
jpm |
123 |
|
60 |
jpm |
124 |
public Mediateur() {
|
|
|
125 |
// Enregistrement du Médiateur dans le Registre
|
|
|
126 |
Registry.register(RegistreId.MEDIATEUR, this);
|
765 |
jpm |
127 |
|
|
|
128 |
//Initialisation du Registre
|
|
|
129 |
initialiserRegistre();
|
466 |
gduche |
130 |
|
60 |
jpm |
131 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
132 |
modele = new Modele();
|
1468 |
jpm |
133 |
|
|
|
134 |
// Séquenceur (local au médiateur)
|
|
|
135 |
sequenceur = new Sequenceur();
|
535 |
jp_milcent |
136 |
|
60 |
jpm |
137 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
138 |
viewport = new Viewport();
|
|
|
139 |
viewport.setLayout(new BorderLayout());
|
1780 |
aurelien |
140 |
|
|
|
141 |
panneauNavigation = new MenuHorizontalVue(this);
|
552 |
jp_milcent |
142 |
|
60 |
jpm |
143 |
// Création des différents panneaux
|
|
|
144 |
creerPanneauNord();
|
|
|
145 |
creerPanneauCentral();
|
358 |
jp_milcent |
146 |
creerPanneauSud();
|
1210 |
cyprien |
147 |
fenetreJournal = new FenetreJournal(this);
|
535 |
jp_milcent |
148 |
|
|
|
149 |
// Connection de l'utilisateur
|
|
|
150 |
connecterUtilisateur(null, null);
|
|
|
151 |
|
1468 |
jpm |
152 |
// Creer la table qui gère le panneau de chargement/déchargement
|
|
|
153 |
fileDAttenteChargement = new HashMap<Object, Integer>();
|
|
|
154 |
|
1509 |
jpm |
155 |
// Gestion de l'historique du navigateur
|
|
|
156 |
History.addValueChangeHandler(this);// Ajout du médiateur comme écouteur des changements de l'historique
|
|
|
157 |
if ("".equals(History.getToken())) {
|
|
|
158 |
History.newItem(MenuApplicationId.ACCUEIL);
|
|
|
159 |
} else {
|
|
|
160 |
History.fireCurrentHistoryState();
|
|
|
161 |
}
|
|
|
162 |
|
60 |
jpm |
163 |
// Retour à GWT du Viewport une fois constuit
|
|
|
164 |
RootPanel.get().add(viewport);
|
|
|
165 |
}
|
|
|
166 |
|
156 |
jp_milcent |
167 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
168 |
// GESTION de l'I18N et du REGISTRE
|
|
|
169 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
170 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
171 |
return GWT.create(Constantes.class);
|
|
|
172 |
}
|
|
|
173 |
|
582 |
jp_milcent |
174 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
175 |
return GWT.create(ErrorMessages.class);
|
|
|
176 |
}
|
|
|
177 |
|
|
|
178 |
protected void initialiserRegistre() {
|
1107 |
jpm |
179 |
APropos apropos = new APropos();
|
907 |
jpm |
180 |
|
1107 |
jpm |
181 |
Registry.register(RegistreId.APPLI_NOM, apropos.getAppliNom());
|
|
|
182 |
Registry.register(RegistreId.APPLI_CODE, apropos.getAppliCode());
|
1108 |
jpm |
183 |
Registry.register(RegistreId.APPLI_VERSION, apropos.getAppliVersionCode());
|
|
|
184 |
Registry.register(RegistreId.APPLI_VERSION_NOM, apropos.getAppliVersionNom());
|
1107 |
jpm |
185 |
|
1023 |
jpm |
186 |
Registry.register(RegistreId.APPLI_DEVELOPPEURS, apropos.getDeveloppeurs());
|
|
|
187 |
Registry.register(RegistreId.APPLI_TRADUCTEURS, apropos.getTraducteurs());
|
1417 |
jpm |
188 |
Registry.register(RegistreId.APPLI_TESTEURS, apropos.getTesteurs());
|
1023 |
jpm |
189 |
Registry.register(RegistreId.APPLI_LICENCE, apropos.getLicence());
|
1417 |
jpm |
190 |
|
907 |
jpm |
191 |
Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
|
1549 |
jpm |
192 |
Registry.register(RegistreId.SERVICES_REVISION, apropos.getRevisionGlobaleServices());
|
907 |
jpm |
193 |
Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
|
|
|
194 |
Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
|
535 |
jp_milcent |
195 |
|
|
|
196 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
197 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
766 |
jpm |
198 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur());
|
535 |
jp_milcent |
199 |
}
|
|
|
200 |
|
|
|
201 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
202 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
203 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
204 |
|
60 |
jpm |
205 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
206 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
207 |
|
|
|
208 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
209 |
regionNord.setCollapsible(true);
|
|
|
210 |
regionNord.setFloatable(true);
|
|
|
211 |
regionNord.setSplit(false);
|
|
|
212 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
213 |
|
|
|
214 |
viewport.add(panneauNord, regionNord);
|
|
|
215 |
}
|
|
|
216 |
|
|
|
217 |
private void creerPanneauCentral() {
|
1780 |
aurelien |
218 |
|
|
|
219 |
ContentPanel panneauIntermediaire = new ContentPanel();
|
|
|
220 |
panneauIntermediaire.setLayout(new RowLayout(Orientation.VERTICAL));
|
|
|
221 |
panneauIntermediaire.setHeaderVisible(false);
|
|
|
222 |
|
444 |
jp_milcent |
223 |
panneauCentre = new ContenuVue(this);
|
60 |
jpm |
224 |
|
|
|
225 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
226 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
1780 |
aurelien |
227 |
|
|
|
228 |
panneauNavigation.setHeight(28);
|
|
|
229 |
panneauNavigation.setBodyBorder(false);
|
|
|
230 |
panneauNavigation.setBorders(false);
|
|
|
231 |
|
|
|
232 |
panneauIntermediaire.add(panneauNavigation, new RowData(1, -1, new Margins(0)));
|
|
|
233 |
panneauIntermediaire.add(panneauCentre, new RowData(1, 1, new Margins(0)));
|
60 |
jpm |
234 |
|
1780 |
aurelien |
235 |
viewport.add(panneauIntermediaire, regionCentre);
|
60 |
jpm |
236 |
}
|
358 |
jp_milcent |
237 |
|
|
|
238 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
239 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
240 |
|
369 |
jp_milcent |
241 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
242 |
regionSud.setCollapsible(true);
|
|
|
243 |
regionSud.setFloatable(true);
|
|
|
244 |
regionSud.setSplit(false);
|
|
|
245 |
regionSud.setMargins(new Margins(0));
|
|
|
246 |
|
|
|
247 |
viewport.add(panneauSud, regionSud);
|
|
|
248 |
}
|
60 |
jpm |
249 |
|
369 |
jp_milcent |
250 |
public void actualiserPanneauCentral() {
|
|
|
251 |
panneauCentre.layout();
|
|
|
252 |
}
|
|
|
253 |
|
1210 |
cyprien |
254 |
public Rafraichissable obtenirFenetreJournal() {
|
|
|
255 |
return this.fenetreJournal;
|
|
|
256 |
}
|
|
|
257 |
|
|
|
258 |
public void ouvrirFenetreJournal() {
|
|
|
259 |
fenetreJournal.show();
|
|
|
260 |
}
|
|
|
261 |
|
|
|
262 |
public StatutVue obtenirPanneauSud() {
|
|
|
263 |
return this.panneauSud;
|
|
|
264 |
}
|
|
|
265 |
|
156 |
jp_milcent |
266 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
267 |
// GESTION du MENU
|
|
|
268 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
269 |
|
327 |
jp_milcent |
270 |
public void clicMenu(String codeMenuClique) {
|
1509 |
jpm |
271 |
boolean codeOk = true;
|
1210 |
cyprien |
272 |
if (codeMenuClique.equals(MenuApplicationId.ACCUEIL)) {
|
910 |
jpm |
273 |
afficherAccueil();
|
|
|
274 |
} else if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
1691 |
raphael |
275 |
selectionnerStructure(panneauCentre, null, null, false);
|
553 |
jp_milcent |
276 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
1367 |
cyprien |
277 |
selectionnerCollection(panneauCentre, null, null, null);
|
553 |
jp_milcent |
278 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
1763 |
aurelien |
279 |
selectionnerPersonne(panneauCentre, null, null);
|
327 |
jp_milcent |
280 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
1324 |
gduche |
281 |
selectionnerPublication(panneauCentre, null, null);
|
985 |
jpm |
282 |
} else if (codeMenuClique.equals(MenuApplicationId.COMMENTAIRE)) {
|
1367 |
cyprien |
283 |
selectionnerCommentaire(panneauCentre, null, null);
|
1790 |
aurelien |
284 |
} else if (codeMenuClique.equals(MenuApplicationId.STATS)) {
|
|
|
285 |
// l'affichage des statistiques ne nécessite pas de chargement
|
|
|
286 |
afficherStats();
|
379 |
jp_milcent |
287 |
} else {
|
1562 |
jpm |
288 |
Log.debug(i18nM.nonImplemente(codeMenuClique));
|
1509 |
jpm |
289 |
codeOk = false;
|
60 |
jpm |
290 |
}
|
1509 |
jpm |
291 |
|
|
|
292 |
// Le code menu est valide
|
|
|
293 |
if (codeOk == true) {
|
|
|
294 |
// Sélection du menu
|
1780 |
aurelien |
295 |
panneauNavigation.selectionMenu(codeMenuClique);
|
1509 |
jpm |
296 |
// Gestion de l'historique
|
1562 |
jpm |
297 |
if (requeteUrl == null) {
|
|
|
298 |
History.newItem(codeMenuClique);
|
|
|
299 |
} else {
|
|
|
300 |
History.newItem(codeMenuClique+"?"+requeteUrl);
|
|
|
301 |
}
|
1818 |
mathias |
302 |
// Ajout des stats Google Analytics
|
|
|
303 |
Analytics.pageVisitee(codeMenuClique);
|
1509 |
jpm |
304 |
// Rafraichissement du panneau central
|
|
|
305 |
panneauCentre.layout();
|
1780 |
aurelien |
306 |
viewport.layout();
|
1509 |
jpm |
307 |
}
|
60 |
jpm |
308 |
}
|
1324 |
gduche |
309 |
|
1468 |
jpm |
310 |
public void activerChargement(Object caller, String message) {
|
|
|
311 |
if (fileDAttenteChargement.get(caller) == null) fileDAttenteChargement.put(caller, 1);
|
|
|
312 |
else fileDAttenteChargement.put(caller, fileDAttenteChargement.get(caller)+1);
|
|
|
313 |
activerChargement(message);
|
|
|
314 |
}
|
|
|
315 |
|
|
|
316 |
private void activerChargement(String message) {
|
|
|
317 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] ActiverChargement");
|
|
|
318 |
if (DEBUG_CHARGEMENT) debugFileAttente();
|
1155 |
jpm |
319 |
afficherPopinChargement();
|
|
|
320 |
panneauCentre.disable();
|
369 |
jp_milcent |
321 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
322 |
}
|
|
|
323 |
|
1468 |
jpm |
324 |
public void desactiverChargement(Object caller) {
|
|
|
325 |
if (fileDAttenteChargement.get(caller) == null) {
|
|
|
326 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] Problème : l'objet "+caller+" essaie de désactiver le chargement alors qu'il ne l'a pas initié.");
|
|
|
327 |
}
|
|
|
328 |
else fileDAttenteChargement.put(caller, fileDAttenteChargement.get(caller)-1);
|
|
|
329 |
|
|
|
330 |
if (!chargementsEnCours()) desactiverChargement();
|
1513 |
jpm |
331 |
else if (DEBUG_CHARGEMENT) {
|
|
|
332 |
System.out.println("[CHARGEMENT] Patienter, il y a encore un chargement en cours.");
|
|
|
333 |
debugFileAttente();
|
|
|
334 |
}
|
1468 |
jpm |
335 |
}
|
|
|
336 |
|
|
|
337 |
private void desactiverChargement() {
|
|
|
338 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] Désactiver Chargement");
|
|
|
339 |
if (DEBUG_CHARGEMENT) debugFileAttente();
|
358 |
jp_milcent |
340 |
masquerPopinChargement();
|
1155 |
jpm |
341 |
panneauCentre.enable();
|
358 |
jp_milcent |
342 |
panneauSud.clear();
|
|
|
343 |
}
|
1468 |
jpm |
344 |
|
|
|
345 |
private boolean chargementsEnCours() {
|
|
|
346 |
boolean chargementEnCours = false;
|
|
|
347 |
Iterator<Object> it = fileDAttenteChargement.keySet().iterator();
|
|
|
348 |
while (it.hasNext() && !chargementEnCours) {
|
|
|
349 |
chargementEnCours = (fileDAttenteChargement.get(it.next()) > 0);
|
|
|
350 |
}
|
|
|
351 |
return chargementEnCours;
|
|
|
352 |
}
|
|
|
353 |
|
|
|
354 |
private void debugFileAttente() {
|
|
|
355 |
System.out.println("[CHARGEMENT]--< StackTrace >------------------------------------------------------");
|
|
|
356 |
if (fileDAttenteChargement.size() == 0) System.out.println("(Empty)");
|
|
|
357 |
Iterator<Object> it = fileDAttenteChargement.keySet().iterator();
|
|
|
358 |
while (it.hasNext()) {
|
|
|
359 |
Object o = it.next();
|
1513 |
jpm |
360 |
System.out.println(" ["+o+"] = "+fileDAttenteChargement.get(o));
|
1468 |
jpm |
361 |
}
|
|
|
362 |
}
|
646 |
jp_milcent |
363 |
|
156 |
jp_milcent |
364 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
365 |
// GESTION DES FENÊTRES
|
|
|
366 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
367 |
|
61 |
jpm |
368 |
public void ouvrirAide() {
|
|
|
369 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
370 |
aideFenetre.show();
|
66 |
jpm |
371 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
372 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
373 |
}
|
|
|
374 |
|
|
|
375 |
public void ouvrirParametres() {
|
1023 |
jpm |
376 |
AproposFenetre parametresFenetre = new AproposFenetre();
|
66 |
jpm |
377 |
parametresFenetre.show();
|
61 |
jpm |
378 |
}
|
|
|
379 |
|
|
|
380 |
public void ouvrirIdentification() {
|
1017 |
jpm |
381 |
fenetreIdentification = new IdentificationFenetre(this);
|
358 |
jp_milcent |
382 |
fenetreIdentification.show();
|
61 |
jpm |
383 |
}
|
|
|
384 |
|
989 |
jpm |
385 |
public void ouvrirUrlExterne(String id) {
|
61 |
jpm |
386 |
if (id.equals(ComposantId.MENU_CEL)) {
|
989 |
jpm |
387 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
|
1773 |
mathias |
388 |
} else if (id.equals(ComposantId.MENU_CONTACT)) {
|
|
|
389 |
String urlWidgetRemarques = ((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("remarques")
|
|
|
390 |
+ "?email=coel_remarques@tela-botanica.org&pageSource=" + URL.encodeQueryString(Window.Location.getHref());
|
|
|
391 |
Window.open(urlWidgetRemarques, "Remarques", "");
|
61 |
jpm |
392 |
}
|
|
|
393 |
}
|
|
|
394 |
|
898 |
gduche |
395 |
public void afficherFenetreLicence(IdentificationFenetre vue) {
|
1509 |
jpm |
396 |
new LicenceFenetre(vue);
|
898 |
gduche |
397 |
}
|
|
|
398 |
|
|
|
399 |
public void accepterLicence(Rafraichissable vue) {
|
|
|
400 |
modele.accepterLicence(vue);
|
|
|
401 |
}
|
156 |
jp_milcent |
402 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
403 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
404 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
405 |
/**
|
|
|
406 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
407 |
*/
|
156 |
jp_milcent |
408 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
409 |
String id = null;
|
|
|
410 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
411 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
412 |
id = utilisateurCourant.getId();
|
|
|
413 |
}
|
|
|
414 |
return id;
|
156 |
jp_milcent |
415 |
}
|
|
|
416 |
|
912 |
jpm |
417 |
public Utilisateur getUtilisateur() {
|
|
|
418 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
419 |
return utilisateurCourant;
|
|
|
420 |
}
|
|
|
421 |
|
65 |
jpm |
422 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
423 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
424 |
}
|
|
|
425 |
|
65 |
jpm |
426 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
427 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
428 |
}
|
65 |
jpm |
429 |
|
932 |
jpm |
430 |
public void repandreEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
431 |
// Mise à jour du registre
|
277 |
jp_milcent |
432 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
932 |
jpm |
433 |
// Propagation de l'information de mise à jour de l'utilisateur
|
|
|
434 |
repandreInfoMiseAJourUtilisateur();
|
|
|
435 |
}
|
|
|
436 |
|
|
|
437 |
public void repandreInfoMiseAJourUtilisateur() {
|
912 |
jpm |
438 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
439 |
Information info = new Information("maj_utilisateur");
|
|
|
440 |
|
|
|
441 |
// Rafraichissement de la fenêtre d'Identification
|
941 |
jpm |
442 |
if (fenetreIdentification != null && fenetreIdentification.isVisible()) {
|
912 |
jpm |
443 |
fenetreIdentification.rafraichir(info);
|
|
|
444 |
}
|
898 |
gduche |
445 |
|
912 |
jpm |
446 |
// Rafraichissement du panneau Nord
|
|
|
447 |
panneauNord.rafraichir(info);
|
1292 |
cyprien |
448 |
|
912 |
jpm |
449 |
// Rafraichissement du panneau Centre
|
|
|
450 |
if (panneauCentre != null) {
|
|
|
451 |
panneauCentre.rafraichir(info);
|
932 |
jpm |
452 |
}
|
912 |
jpm |
453 |
}
|
1292 |
cyprien |
454 |
|
912 |
jpm |
455 |
public void modifierUtilisateur() {
|
|
|
456 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
457 |
panneauNord.rafraichir(utilisateurCourant);
|
|
|
458 |
modele.modifierUtilisateur(this, utilisateurCourant);
|
61 |
jpm |
459 |
}
|
1292 |
cyprien |
460 |
|
156 |
jp_milcent |
461 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
462 |
// GESTION DES VALEURS ET LISTES
|
|
|
463 |
//+----------------------------------------------------------------------------------------------------------------+
|
1367 |
cyprien |
464 |
|
|
|
465 |
/** Cette méthode est un "wrapper" **/
|
1324 |
gduche |
466 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId, Sequenceur sequenceur) {
|
|
|
467 |
obtenirListeValeurEtRafraichir(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), sequenceur);
|
1292 |
cyprien |
468 |
}
|
1367 |
cyprien |
469 |
|
1324 |
gduche |
470 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, int listeId, Sequenceur sequenceur) {
|
1367 |
cyprien |
471 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
472 |
Integer numeroSequence = null;
|
|
|
473 |
if (sequenceur != null) {
|
|
|
474 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
475 |
vueARafraichir = sequenceur;
|
|
|
476 |
}
|
|
|
477 |
modele.obtenirListeValeurs(vueARafraichir, listeId, numeroSequence);
|
453 |
jp_milcent |
478 |
}
|
1367 |
cyprien |
479 |
|
1324 |
gduche |
480 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String nomListe, boolean pagination, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
481 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
482 |
Integer numeroSequence = null;
|
|
|
483 |
if (sequenceur != null) {
|
|
|
484 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
485 |
vueARafraichir = sequenceur;
|
|
|
486 |
}
|
|
|
487 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(nomListe), pagination, recherche, start, nbElements, numeroSequence);
|
|
|
488 |
}
|
1367 |
cyprien |
489 |
|
|
|
490 |
public void obtenirValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId, String identifiantValeur, Sequenceur sequenceur) {
|
|
|
491 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
492 |
Integer numeroSequence = null;
|
|
|
493 |
if (sequenceur != null) {
|
1367 |
cyprien |
494 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
495 |
vueARafraichir = sequenceur;
|
1324 |
gduche |
496 |
}
|
1373 |
cyprien |
497 |
modele.obtenirValeur(vueARafraichir, "identifiant", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur, numeroSequence);
|
453 |
jp_milcent |
498 |
}
|
1367 |
cyprien |
499 |
|
447 |
jp_milcent |
500 |
//+----------------------------------------------------------------------------------------------------------------+
|
910 |
jpm |
501 |
// GESTION des APPLETS de l'ACCUEIL
|
|
|
502 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
503 |
|
|
|
504 |
public void afficherAccueil() {
|
1210 |
cyprien |
505 |
if (!(panneauCentre.getContenu() instanceof AccueilVue)) {
|
910 |
jpm |
506 |
panneauCentre.removeAll();
|
|
|
507 |
panneauCentre.add(new AccueilVue(this));
|
|
|
508 |
}
|
1210 |
cyprien |
509 |
else {
|
|
|
510 |
desactiverChargement();
|
|
|
511 |
}
|
910 |
jpm |
512 |
}
|
|
|
513 |
|
|
|
514 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
515 |
// GESTION DES STRUCTURES
|
|
|
516 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
517 |
|
453 |
jp_milcent |
518 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
646 |
jp_milcent |
519 |
if (!(panneauCentre.getContenu() instanceof StructureVue)) {
|
626 |
gduche |
520 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
521 |
panneauCentre.add(new StructureVue(this));
|
626 |
gduche |
522 |
}
|
646 |
jp_milcent |
523 |
panneauCentre.getContenu().rafraichir(structuresACharger);
|
453 |
jp_milcent |
524 |
}
|
|
|
525 |
|
580 |
jp_milcent |
526 |
public void afficherFormStructure(String structureId) {
|
641 |
jp_milcent |
527 |
String mode = Formulaire.MODE_AJOUTER;
|
580 |
jp_milcent |
528 |
if (structureId != null) {
|
641 |
jp_milcent |
529 |
mode = Formulaire.MODE_MODIFIER;
|
580 |
jp_milcent |
530 |
}
|
|
|
531 |
|
1613 |
aurelien |
532 |
final FenetreForm fenetre = new FenetreForm("");
|
1324 |
gduche |
533 |
Sequenceur sequenceur = new Sequenceur();
|
1613 |
aurelien |
534 |
StructureForm structureForm = new StructureForm(this, mode, sequenceur) {
|
|
|
535 |
@Override
|
|
|
536 |
public void surFermetureFormulaire() {
|
|
|
537 |
fenetre.hide();
|
|
|
538 |
}
|
|
|
539 |
};
|
|
|
540 |
structureForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
541 |
fenetre.add(structureForm);
|
|
|
542 |
fenetre.show();
|
580 |
jp_milcent |
543 |
|
641 |
jp_milcent |
544 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
1691 |
raphael |
545 |
selectionnerStructure(structureForm, structureId, sequenceur, false);
|
1324 |
gduche |
546 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE, sequenceur);
|
580 |
jp_milcent |
547 |
}
|
|
|
548 |
|
|
|
549 |
panneauCentre.layout();
|
|
|
550 |
}
|
|
|
551 |
|
447 |
jp_milcent |
552 |
public void clicListeStructure(Structure structure) {
|
646 |
jp_milcent |
553 |
panneauCentre.getContenu().rafraichir(structure);
|
609 |
jp_milcent |
554 |
if (structure != null && structure.getPersonnel() == null) {
|
1324 |
gduche |
555 |
selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE, null);
|
1802 |
aurelien |
556 |
selectionnerCollectionAStructure(panneauCentre.getContenu(), structure.getId());
|
919 |
jpm |
557 |
}
|
447 |
jp_milcent |
558 |
}
|
|
|
559 |
|
|
|
560 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
561 |
afficherFormStructure(null);
|
447 |
jp_milcent |
562 |
}
|
|
|
563 |
|
|
|
564 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
565 |
if (structureSelection.size() == 0) {
|
1210 |
cyprien |
566 |
InfoLogger.display("Information", "Veuillez sélectionner une structure.");
|
447 |
jp_milcent |
567 |
} else if (structureSelection.size() > 1) {
|
1210 |
cyprien |
568 |
InfoLogger.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
447 |
jp_milcent |
569 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
570 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
571 |
} else {
|
1210 |
cyprien |
572 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
447 |
jp_milcent |
573 |
}
|
|
|
574 |
}
|
|
|
575 |
|
|
|
576 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
577 |
if (structureSelection.size() == 0) {
|
1210 |
cyprien |
578 |
InfoLogger.display("Information", "Veuillez sélectionner une structure.");
|
447 |
jp_milcent |
579 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
580 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
581 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
582 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
583 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
584 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
585 |
}
|
|
|
586 |
|
502 |
gduche |
587 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
588 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
589 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
590 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
591 |
|
1680 |
raphael |
592 |
if (btn.getHtml().equals(dialog.yesText)) {
|
453 |
jp_milcent |
593 |
String idStr = "" ;
|
|
|
594 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
595 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
596 |
}
|
923 |
jpm |
597 |
supprimerStructure(vue, idStr);
|
453 |
jp_milcent |
598 |
}
|
|
|
599 |
}
|
|
|
600 |
};
|
447 |
jp_milcent |
601 |
|
609 |
jp_milcent |
602 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
603 |
} else {
|
1210 |
cyprien |
604 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
447 |
jp_milcent |
605 |
}
|
|
|
606 |
}
|
1329 |
cyprien |
607 |
|
|
|
608 |
/** selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
609 |
* Action :
|
|
|
610 |
* --------
|
|
|
611 |
* - Récupère un nombre défini de structures en s'aidant du nom partiel ou complet de la structure.
|
|
|
612 |
*
|
|
|
613 |
* Description des paramètres :
|
|
|
614 |
* ----------------------------
|
|
|
615 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
616 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une structure.
|
|
|
617 |
* Si la chaîne est vide, alors toutes les structures sont recherchées.
|
|
|
618 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
619 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
620 |
* d'éléments à collecter.
|
|
|
621 |
*
|
|
|
622 |
* Préconditions :
|
|
|
623 |
* ---------------
|
|
|
624 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
625 |
* 'Rafraichissable'
|
|
|
626 |
* - 'recherche' doit être non NULL.
|
|
|
627 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
628 |
*
|
1526 |
jpm |
629 |
*/
|
1691 |
raphael |
630 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
631 |
if (Mediateur.DEBUG) {
|
|
|
632 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
633 |
}
|
1367 |
cyprien |
634 |
Integer seqId = null;
|
1526 |
jpm |
635 |
if (sequenceur != null) {
|
1367 |
cyprien |
636 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
637 |
vueARafraichir = sequenceur;
|
|
|
638 |
}
|
1691 |
raphael |
639 |
modele.selectionnerStructure(vueARafraichir, recherche, start, nbElements, seqId, searchCity);
|
1329 |
cyprien |
640 |
}
|
447 |
jp_milcent |
641 |
|
1691 |
raphael |
642 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
643 |
if (Mediateur.DEBUG) {
|
|
|
644 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
645 |
}
|
1324 |
gduche |
646 |
Integer seqId = null;
|
1526 |
jpm |
647 |
if (sequenceur != null) {
|
1324 |
gduche |
648 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
649 |
vueARafraichir = sequenceur;
|
|
|
650 |
}
|
1633 |
aurelien |
651 |
|
1763 |
aurelien |
652 |
modele.selectionnerStructure(vueARafraichir, structureId, null, 0, nbElements, seqId, searchCity);
|
447 |
jp_milcent |
653 |
}
|
|
|
654 |
|
1763 |
aurelien |
655 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, String nom, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
656 |
if (Mediateur.DEBUG) {
|
|
|
657 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
658 |
}
|
1367 |
cyprien |
659 |
Integer seqId = null;
|
1526 |
jpm |
660 |
if (sequenceur != null) {
|
1367 |
cyprien |
661 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
662 |
vueARafraichir = sequenceur;
|
|
|
663 |
}
|
1763 |
aurelien |
664 |
modele.selectionnerStructure(vueARafraichir, structureId, nom, start, nbElements, seqId, searchCity);
|
1040 |
gduche |
665 |
}
|
|
|
666 |
|
1763 |
aurelien |
667 |
public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String structureId, String nom, String formatRetour, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
668 |
if (Mediateur.DEBUG) {
|
|
|
669 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
670 |
}
|
|
|
671 |
Integer seqId = null;
|
|
|
672 |
if (sequenceur != null) {
|
|
|
673 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
674 |
vueARafraichir = sequenceur;
|
|
|
675 |
}
|
1763 |
aurelien |
676 |
modele.selectionnerStructureAvecPaginationProgressive(vueARafraichir, structureId, nom, formatRetour, start, nbElements, seqId, searchCity);
|
1526 |
jpm |
677 |
}
|
|
|
678 |
|
1802 |
aurelien |
679 |
|
|
|
680 |
private void selectionnerCollectionAStructure(Rafraichissable vueARafraichir, String structureId) {
|
|
|
681 |
if (Mediateur.DEBUG) {
|
|
|
682 |
System.out.println("MEDIATEUR - selectionner Collection à structure");
|
|
|
683 |
}
|
|
|
684 |
Integer seqId = null;
|
|
|
685 |
if (sequenceur != null) {
|
|
|
686 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
687 |
vueARafraichir = sequenceur;
|
|
|
688 |
}
|
|
|
689 |
modele.selectionnerCollectionAStructure(vueARafraichir, structureId, 0, 10, seqId);
|
|
|
690 |
}
|
|
|
691 |
|
1367 |
cyprien |
692 |
/** AJOUTER **/
|
769 |
jpm |
693 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
694 |
modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
|
447 |
jp_milcent |
695 |
}
|
|
|
696 |
|
1367 |
cyprien |
697 |
/** MODIFIER **/
|
769 |
jpm |
698 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
699 |
modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
|
447 |
jp_milcent |
700 |
}
|
453 |
jp_milcent |
701 |
|
1367 |
cyprien |
702 |
/** SUPPRIMER **/
|
453 |
jp_milcent |
703 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
769 |
jpm |
704 |
modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
|
453 |
jp_milcent |
705 |
}
|
|
|
706 |
|
447 |
jp_milcent |
707 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
708 |
// GESTION de la relation STRUCTURE A PERSONNE
|
1468 |
jpm |
709 |
|
|
|
710 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, String nom, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
711 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner StructureAPersonne");
|
|
|
712 |
Integer seqId = null;
|
|
|
713 |
if (sequenceur!=null) {
|
|
|
714 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
715 |
vueARafraichir = sequenceur;
|
|
|
716 |
}
|
|
|
717 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId, nom, start, nbElements, seqId);
|
|
|
718 |
}
|
|
|
719 |
|
1324 |
gduche |
720 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, Sequenceur sequenceur) {
|
1367 |
cyprien |
721 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner StructureAPersonne");
|
1324 |
gduche |
722 |
Integer seqId = null;
|
1367 |
cyprien |
723 |
if (sequenceur!=null) {
|
1324 |
gduche |
724 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
725 |
vueARafraichir = sequenceur;
|
|
|
726 |
}
|
|
|
727 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId, seqId);
|
447 |
jp_milcent |
728 |
}
|
|
|
729 |
|
1367 |
cyprien |
730 |
/** AJOUTER **/
|
769 |
jpm |
731 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
|
453 |
jp_milcent |
732 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
733 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
734 |
modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
453 |
jp_milcent |
735 |
}
|
|
|
736 |
}
|
|
|
737 |
}
|
|
|
738 |
|
1367 |
cyprien |
739 |
/** MODIFIER **/
|
769 |
jpm |
740 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
|
447 |
jp_milcent |
741 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
742 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
743 |
modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
|
447 |
jp_milcent |
744 |
}
|
|
|
745 |
}
|
|
|
746 |
}
|
|
|
747 |
|
1367 |
cyprien |
748 |
/** SUPPRIMER **/
|
769 |
jpm |
749 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
|
447 |
jp_milcent |
750 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
769 |
jpm |
751 |
String idStructureAPersonneSepareParVirgule = "" ;
|
923 |
jpm |
752 |
Iterator<String> it = personnelSupprime.keySet().iterator();
|
|
|
753 |
while (it.hasNext()) {
|
901 |
jpm |
754 |
idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId();
|
923 |
jpm |
755 |
idStructureAPersonneSepareParVirgule += (it.hasNext()) ? "," : "";
|
447 |
jp_milcent |
756 |
}
|
923 |
jpm |
757 |
supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
|
447 |
jp_milcent |
758 |
}
|
|
|
759 |
}
|
923 |
jpm |
760 |
|
|
|
761 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String idStructureAPersonneSeparesParVirgule) {
|
|
|
762 |
modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSeparesParVirgule);
|
|
|
763 |
}
|
|
|
764 |
|
|
|
765 |
public void supprimerStructureAPersonne(final Rafraichissable vueARafraichir, final List<Structure> structuresListe) {
|
|
|
766 |
if (structuresListe.size() != 0) {
|
|
|
767 |
String idStructureSepareParVirgule = "" ;
|
|
|
768 |
Iterator<Structure> it = structuresListe.iterator();
|
|
|
769 |
while (it.hasNext()) {
|
|
|
770 |
Structure structure = it.next();
|
|
|
771 |
idStructureSepareParVirgule += structure.getId();
|
|
|
772 |
idStructureSepareParVirgule += it.hasNext() ? "," : "";
|
|
|
773 |
}
|
|
|
774 |
supprimerStructureAPersonne(vueARafraichir, idStructureSepareParVirgule);
|
|
|
775 |
}
|
|
|
776 |
}
|
|
|
777 |
|
447 |
jp_milcent |
778 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
779 |
// GESTION des COLLECTIONS
|
|
|
780 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
781 |
|
453 |
jp_milcent |
782 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
646 |
jp_milcent |
783 |
if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
|
626 |
gduche |
784 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
785 |
panneauCentre.add(new CollectionVue(this));
|
|
|
786 |
}
|
626 |
gduche |
787 |
|
646 |
jp_milcent |
788 |
panneauCentre.getContenu().rafraichir(collectionsACharger);
|
453 |
jp_milcent |
789 |
}
|
|
|
790 |
|
641 |
jp_milcent |
791 |
public void afficherFormCollection(String collectionId) {
|
1613 |
aurelien |
792 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
793 |
CollectionForm collectionForm = new CollectionForm(this, collectionId) {
|
|
|
794 |
@Override
|
|
|
795 |
public void surFermetureFormulaire() {
|
|
|
796 |
fenetre.hide();
|
|
|
797 |
}
|
|
|
798 |
};
|
|
|
799 |
collectionForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
800 |
fenetre.add(collectionForm);
|
|
|
801 |
fenetre.show();
|
641 |
jp_milcent |
802 |
}
|
|
|
803 |
|
453 |
jp_milcent |
804 |
public void clicListeCollection(Collection collectionCliquee) {
|
646 |
jp_milcent |
805 |
panneauCentre.getContenu().rafraichir(collectionCliquee);
|
883 |
jpm |
806 |
if (collectionCliquee != null) {
|
1468 |
jpm |
807 |
selectionnerCollectionAPersonne(panneauCentre.getContenu(), collectionCliquee.getId(), null, sequenceur);
|
|
|
808 |
selectionnerCollectionAPublication(panneauCentre.getContenu(), collectionCliquee.getId(), sequenceur);
|
|
|
809 |
selectionnerCollectionACommentaire(panneauCentre.getContenu(), collectionCliquee.getId(), sequenceur);
|
883 |
jpm |
810 |
}
|
453 |
jp_milcent |
811 |
}
|
|
|
812 |
|
447 |
jp_milcent |
813 |
public void clicAjouterCollection() {
|
775 |
jpm |
814 |
afficherFormCollection(null);
|
447 |
jp_milcent |
815 |
}
|
|
|
816 |
|
|
|
817 |
public void clicModifierCollection(List<Collection> selection) {
|
641 |
jp_milcent |
818 |
if (selection.size() == 0) {
|
1210 |
cyprien |
819 |
InfoLogger.display("Information", "Veuillez sélectionner une collection.");
|
641 |
jp_milcent |
820 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
821 |
InfoLogger.display("Information", "Veuillez sélectionner une seule collection à la fois.");
|
641 |
jp_milcent |
822 |
} else if (selection.size() == 1) {
|
|
|
823 |
afficherFormCollection(selection.get(0).getId());
|
|
|
824 |
} else {
|
1210 |
cyprien |
825 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
|
641 |
jp_milcent |
826 |
}
|
447 |
jp_milcent |
827 |
}
|
|
|
828 |
|
968 |
jpm |
829 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, final List<Collection> collectionsASupprimer) {
|
|
|
830 |
if (collectionsASupprimer.size() <= 0) {
|
|
|
831 |
MessageBox.alert("Attention", "Vous devez sélectionner au moins une collection", null);
|
|
|
832 |
} else {
|
|
|
833 |
String message = "Voulez-vous vraiment supprimer ces collections ?";
|
|
|
834 |
if (collectionsASupprimer.size() == 1) {
|
|
|
835 |
message = "Voulez-vous vraiment supprimer cette collection ?";
|
|
|
836 |
}
|
|
|
837 |
|
|
|
838 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
839 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
840 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
841 |
Button btn = ce.getButtonClicked();
|
|
|
842 |
|
1680 |
raphael |
843 |
if (btn.getHtml().equals(dialog.yesText)) {
|
968 |
jpm |
844 |
supprimerCollection(panneauCentre.getContenu(), collectionsASupprimer);
|
|
|
845 |
}
|
|
|
846 |
}
|
|
|
847 |
};
|
|
|
848 |
|
|
|
849 |
MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
|
|
|
850 |
}
|
447 |
jp_milcent |
851 |
}
|
|
|
852 |
|
1367 |
cyprien |
853 |
/** Cette méthode est un "wrapper" **/
|
|
|
854 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, Sequenceur sequenceur) {
|
|
|
855 |
selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements, sequenceur);
|
453 |
jp_milcent |
856 |
}
|
|
|
857 |
|
1367 |
cyprien |
858 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
859 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Collection");
|
|
|
860 |
Integer seqId = null;
|
|
|
861 |
if (sequenceur!=null) {
|
|
|
862 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
863 |
vueARafraichir = sequenceur;
|
|
|
864 |
}
|
1763 |
aurelien |
865 |
modele.selectionnerCollection(vueARafraichir, collectionId, nom, start, nbElements, seqId);
|
1041 |
gduche |
866 |
}
|
|
|
867 |
|
1329 |
cyprien |
868 |
/****************************************************************************************************
|
|
|
869 |
/** selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
870 |
/****************************************************************************************************
|
|
|
871 |
* Action :
|
|
|
872 |
* --------
|
|
|
873 |
* - Récupère un nombre défini de collections en s'aidant du nom partiel ou complet de la collection.
|
|
|
874 |
*
|
|
|
875 |
* Description des paramètres :
|
|
|
876 |
* ----------------------------
|
|
|
877 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
878 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une collection.
|
|
|
879 |
* Si la chaîne est vide, alors toutes les collections sont recherchées.
|
|
|
880 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
881 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
882 |
* d'éléments à collecter.
|
|
|
883 |
*
|
|
|
884 |
* Préconditions :
|
|
|
885 |
* ---------------
|
|
|
886 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
887 |
* 'Rafraichissable'
|
|
|
888 |
* - 'recherche' doit être non NULL.
|
|
|
889 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
890 |
*
|
|
|
891 |
*****************************************************************************************************/
|
1367 |
cyprien |
892 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
893 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Collection");
|
|
|
894 |
Integer seqId = null;
|
|
|
895 |
if (sequenceur!=null) {
|
|
|
896 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
897 |
vueARafraichir = sequenceur;
|
|
|
898 |
}
|
|
|
899 |
modele.selectionnerCollection(vueARafraichir, recherche, start, nbElements, seqId);
|
1428 |
cyprien |
900 |
}
|
1329 |
cyprien |
901 |
|
1367 |
cyprien |
902 |
/** AJOUTER **/
|
453 |
jp_milcent |
903 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
968 |
jpm |
904 |
modele.ajouterCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
905 |
}
|
|
|
906 |
|
1367 |
cyprien |
907 |
/** MODIFIER **/
|
453 |
jp_milcent |
908 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
872 |
jpm |
909 |
modele.modifierCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
910 |
}
|
|
|
911 |
|
1367 |
cyprien |
912 |
/** SUPPRIMER **/
|
968 |
jpm |
913 |
public void supprimerCollection(Rafraichissable vueARafraichir, List<Collection> collectionsListe) {
|
|
|
914 |
if (collectionsListe != null && collectionsListe.size() > 0) {
|
|
|
915 |
String idCollectionSeparesParVirgule = "" ;
|
|
|
916 |
Iterator<Collection> it = collectionsListe.iterator();
|
|
|
917 |
while (it.hasNext()) {
|
|
|
918 |
idCollectionSeparesParVirgule += it.next().getId();
|
|
|
919 |
if (it.hasNext()) {
|
|
|
920 |
idCollectionSeparesParVirgule += ",";
|
|
|
921 |
}
|
|
|
922 |
}
|
|
|
923 |
modele.supprimerCollection(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
924 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
925 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
926 |
//modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
927 |
}
|
|
|
928 |
|
453 |
jp_milcent |
929 |
}
|
|
|
930 |
|
447 |
jp_milcent |
931 |
//+----------------------------------------------------------------------------------------------------------------+
|
875 |
jpm |
932 |
// GESTION de la relation COLLECTION A PERSONNE
|
|
|
933 |
|
1468 |
jpm |
934 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
935 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPersonne");
|
|
|
936 |
Integer seqId = null;
|
|
|
937 |
if (sequenceur!=null) {
|
|
|
938 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
939 |
vueARafraichir = sequenceur;
|
|
|
940 |
}
|
|
|
941 |
modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId, recherche, start, nbElements, seqId);
|
|
|
942 |
}
|
|
|
943 |
|
1367 |
cyprien |
944 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, Sequenceur sequenceur) {
|
|
|
945 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPersonne");
|
|
|
946 |
Integer seqId = null;
|
|
|
947 |
if (sequenceur!=null) {
|
|
|
948 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
949 |
vueARafraichir = sequenceur;
|
|
|
950 |
}
|
|
|
951 |
modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId, seqId);
|
875 |
jpm |
952 |
}
|
|
|
953 |
|
1367 |
cyprien |
954 |
/** AJOUTER **/
|
875 |
jpm |
955 |
public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonneListe personnesAjoutees) {
|
|
|
956 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
957 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
958 |
modele.ajouterCollectionAPersonne(vueARafraichir, collectionId, (CollectionAPersonne) personnesAjoutees.get(it.next()));
|
|
|
959 |
}
|
|
|
960 |
}
|
|
|
961 |
}
|
|
|
962 |
|
1367 |
cyprien |
963 |
/** MODIFIER **/
|
875 |
jpm |
964 |
public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesModifiees) {
|
|
|
965 |
if (personnesModifiees != null && personnesModifiees.size() > 0) {
|
|
|
966 |
for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
967 |
modele.modifierCollectionAPersonne(vueARafraichir, (CollectionAPersonne) personnesModifiees.get(it.next()));
|
|
|
968 |
}
|
|
|
969 |
}
|
|
|
970 |
}
|
|
|
971 |
|
1367 |
cyprien |
972 |
/** SUPPRIMER **/
|
875 |
jpm |
973 |
public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesSupprimees) {
|
|
|
974 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
975 |
String idCollectionAPersonneSeparesParVirgule = "" ;
|
|
|
976 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
977 |
idCollectionAPersonneSeparesParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
978 |
if (it.hasNext()) {
|
|
|
979 |
idCollectionAPersonneSeparesParVirgule += ",";
|
|
|
980 |
}
|
875 |
jpm |
981 |
}
|
|
|
982 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionAPersonneSeparesParVirgule);
|
|
|
983 |
}
|
|
|
984 |
}
|
|
|
985 |
|
|
|
986 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
987 |
// GESTION de la relation COLLECTION A PUBLICATION
|
|
|
988 |
|
1513 |
jpm |
989 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
990 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPublication");
|
|
|
991 |
Integer seqId = null;
|
|
|
992 |
if (sequenceur!=null) {
|
|
|
993 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
994 |
vueARafraichir = sequenceur;
|
|
|
995 |
}
|
|
|
996 |
modele.selectionnerCollectionAPublication(vueARafraichir, collectionId, recherche, start, nbElements, seqId);
|
|
|
997 |
}
|
|
|
998 |
|
1367 |
cyprien |
999 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, Sequenceur sequenceur) {
|
|
|
1000 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPublication");
|
|
|
1001 |
Integer seqId = null;
|
|
|
1002 |
if (sequenceur!=null) {
|
|
|
1003 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1004 |
vueARafraichir = sequenceur;
|
|
|
1005 |
}
|
|
|
1006 |
modele.selectionnerCollectionAPublication(vueARafraichir, collectionId, seqId);
|
883 |
jpm |
1007 |
}
|
|
|
1008 |
|
|
|
1009 |
public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublicationListe publicationsAjoutees) {
|
|
|
1010 |
if (publicationsAjoutees != null && publicationsAjoutees.size() > 0) {
|
|
|
1011 |
for (Iterator<String> it = publicationsAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
1012 |
modele.ajouterCollectionAPublication(vueARafraichir, collectionId, (CollectionAPublication) publicationsAjoutees.get(it.next()));
|
|
|
1013 |
}
|
|
|
1014 |
}
|
|
|
1015 |
}
|
|
|
1016 |
|
|
|
1017 |
public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsModifiees) {
|
|
|
1018 |
if (publicationsModifiees != null && publicationsModifiees.size() > 0) {
|
|
|
1019 |
for (Iterator<String> it = publicationsModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1020 |
modele.modifierCollectionAPublication(vueARafraichir, (CollectionAPublication) publicationsModifiees.get(it.next()));
|
|
|
1021 |
}
|
|
|
1022 |
}
|
|
|
1023 |
}
|
|
|
1024 |
|
907 |
jpm |
1025 |
public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsSupprimees) {
|
883 |
jpm |
1026 |
if (publicationsSupprimees != null && publicationsSupprimees.size() > 0) {
|
|
|
1027 |
String idCollectionAPublicationSeparesParVirgule = "" ;
|
|
|
1028 |
for (Iterator<String> it = publicationsSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
1029 |
idCollectionAPublicationSeparesParVirgule += publicationsSupprimees.get(it.next()).getId();
|
|
|
1030 |
if (it.hasNext()) {
|
|
|
1031 |
idCollectionAPublicationSeparesParVirgule += ",";
|
|
|
1032 |
}
|
883 |
jpm |
1033 |
}
|
|
|
1034 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionAPublicationSeparesParVirgule);
|
|
|
1035 |
}
|
|
|
1036 |
}
|
941 |
jpm |
1037 |
|
875 |
jpm |
1038 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1039 |
// GESTION de la relation COLLECTION A COMMENTAIRE
|
|
|
1040 |
|
1367 |
cyprien |
1041 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, Sequenceur sequenceur) {
|
|
|
1042 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionACommentaire");
|
|
|
1043 |
Integer seqId = null;
|
|
|
1044 |
if (sequenceur!=null) {
|
|
|
1045 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1046 |
vueARafraichir = sequenceur;
|
|
|
1047 |
}
|
|
|
1048 |
modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId, seqId);
|
989 |
jpm |
1049 |
}
|
|
|
1050 |
|
1513 |
jpm |
1051 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1052 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionACommentaire");
|
|
|
1053 |
Integer seqId = null;
|
|
|
1054 |
if (sequenceur != null) {
|
|
|
1055 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1056 |
vueARafraichir = sequenceur;
|
|
|
1057 |
}
|
|
|
1058 |
modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId, recherche, pageCourante, nbElements, seqId);
|
|
|
1059 |
}
|
|
|
1060 |
|
1367 |
cyprien |
1061 |
/** AJOUTER **/
|
997 |
jpm |
1062 |
public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaireListe commentairesAjoutees) {
|
989 |
jpm |
1063 |
if (commentairesAjoutees != null && commentairesAjoutees.size() > 0) {
|
|
|
1064 |
for (Iterator<String> it = commentairesAjoutees.keySet().iterator(); it.hasNext();) {
|
997 |
jpm |
1065 |
modele.ajouterCollectionACommentaire(vueARafraichir, collectionId, (CollectionACommentaire) commentairesAjoutees.get(it.next()));
|
989 |
jpm |
1066 |
}
|
|
|
1067 |
}
|
|
|
1068 |
}
|
|
|
1069 |
|
1367 |
cyprien |
1070 |
/** MODIFIER **/
|
989 |
jpm |
1071 |
public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesModifiees) {
|
|
|
1072 |
if (commentairesModifiees != null && commentairesModifiees.size() > 0) {
|
|
|
1073 |
for (Iterator<String> it = commentairesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1074 |
modele.modifierCollectionACommentaire(vueARafraichir, (CollectionACommentaire) commentairesModifiees.get(it.next()));
|
|
|
1075 |
}
|
|
|
1076 |
}
|
|
|
1077 |
}
|
|
|
1078 |
|
1367 |
cyprien |
1079 |
/** SUPPRIMER **/
|
989 |
jpm |
1080 |
public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesSupprimees) {
|
|
|
1081 |
if (commentairesSupprimees != null && commentairesSupprimees.size() > 0) {
|
|
|
1082 |
String idCollectionACommentaireSeparesParVirgule = "" ;
|
|
|
1083 |
for (Iterator<String> it = commentairesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
1084 |
idCollectionACommentaireSeparesParVirgule += commentairesSupprimees.get(it.next()).getId();
|
|
|
1085 |
if (it.hasNext()) {
|
|
|
1086 |
idCollectionACommentaireSeparesParVirgule += ",";
|
|
|
1087 |
}
|
|
|
1088 |
}
|
|
|
1089 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionACommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COLLECTION);
|
|
|
1090 |
}
|
|
|
1091 |
}
|
875 |
jpm |
1092 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
1093 |
// GESTION DES PERSONNES
|
|
|
1094 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1095 |
|
278 |
jp_milcent |
1096 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
646 |
jp_milcent |
1097 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
1098 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
1099 |
panneauCentre.add(new PersonneVue(this));
|
673 |
aurelien |
1100 |
panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
|
626 |
gduche |
1101 |
}
|
599 |
gduche |
1102 |
|
646 |
jp_milcent |
1103 |
panneauCentre.getContenu().rafraichir(personnesACharger);
|
156 |
jp_milcent |
1104 |
}
|
918 |
jpm |
1105 |
|
1613 |
aurelien |
1106 |
public void afficherFormPersonne(String personneId) {
|
|
|
1107 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1108 |
PersonneForm personneForm = new PersonneForm(this, personneId) {
|
|
|
1109 |
@Override
|
|
|
1110 |
public void surFermetureFormulaire() {
|
|
|
1111 |
fenetre.hide();
|
|
|
1112 |
}
|
|
|
1113 |
};
|
|
|
1114 |
personneForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1115 |
fenetre.add(personneForm);
|
|
|
1116 |
fenetre.show();
|
918 |
jpm |
1117 |
}
|
156 |
jp_milcent |
1118 |
|
918 |
jpm |
1119 |
public void clicListePersonne(Personne personne) {
|
|
|
1120 |
panneauCentre.getContenu().rafraichir(personne);
|
|
|
1121 |
}
|
|
|
1122 |
|
128 |
gduche |
1123 |
public void clicAjouterPersonne() {
|
918 |
jpm |
1124 |
afficherFormPersonne(null);
|
128 |
gduche |
1125 |
}
|
|
|
1126 |
|
918 |
jpm |
1127 |
public void clicModifierPersonne(List<Personne> selection) {
|
|
|
1128 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1129 |
InfoLogger.display("Information", "Veuillez sélectionner une personne.");
|
918 |
jpm |
1130 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1131 |
InfoLogger.display("Information", "Veuillez sélectionner une seule personne à la fois.");
|
918 |
jpm |
1132 |
} else if (selection.size() == 1) {
|
|
|
1133 |
afficherFormPersonne(selection.get(0).getId());
|
|
|
1134 |
} else {
|
1210 |
cyprien |
1135 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPersonne() du Médiateur.");
|
918 |
jpm |
1136 |
}
|
841 |
gduche |
1137 |
}
|
|
|
1138 |
|
285 |
gduche |
1139 |
|
919 |
jpm |
1140 |
public void clicSupprimerPersonne(final Rafraichissable vue, final List<Personne> personneSelection) {
|
663 |
gduche |
1141 |
//Empecher suppression utilisateur
|
|
|
1142 |
for (int i=0; i < personneSelection.size(); i++) {
|
|
|
1143 |
Personne courante = personneSelection.get(i);
|
|
|
1144 |
if (courante.getId().equals(getUtilisateurId())) {
|
1210 |
cyprien |
1145 |
InfoLogger.display("Information", "Vous ne pouvez pas supprimer votre compte");
|
663 |
gduche |
1146 |
personneSelection.remove(courante);
|
|
|
1147 |
}
|
|
|
1148 |
}
|
|
|
1149 |
|
245 |
jp_milcent |
1150 |
if (personneSelection.size() == 0) {
|
1210 |
cyprien |
1151 |
InfoLogger.display("Information", "Veuillez sélectionner une personne.");
|
245 |
jp_milcent |
1152 |
} else if(personneSelection.size() > 0) {
|
|
|
1153 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
1154 |
if (personneSelection.size() == 1) {
|
|
|
1155 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
1156 |
}
|
315 |
gduche |
1157 |
|
502 |
gduche |
1158 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1159 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1160 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1161 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
1162 |
|
1680 |
raphael |
1163 |
if (btn.getHtml().equals(dialog.yesText)) {
|
772 |
jpm |
1164 |
String idPersonneSepareParVirgule = "" ;
|
347 |
gduche |
1165 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
1166 |
while (itPersonne.hasNext()) {
|
|
|
1167 |
Personne personneCourante = itPersonne.next();
|
772 |
jpm |
1168 |
idPersonneSepareParVirgule += personneCourante.getId();
|
|
|
1169 |
idPersonneSepareParVirgule +=",";
|
327 |
jp_milcent |
1170 |
}
|
772 |
jpm |
1171 |
modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
|
327 |
jp_milcent |
1172 |
}
|
|
|
1173 |
}
|
|
|
1174 |
};
|
453 |
jp_milcent |
1175 |
|
315 |
gduche |
1176 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
1177 |
} else {
|
1210 |
cyprien |
1178 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
245 |
jp_milcent |
1179 |
}
|
|
|
1180 |
}
|
277 |
jp_milcent |
1181 |
|
1329 |
cyprien |
1182 |
/****************************************************************************************************
|
|
|
1183 |
/** selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
1184 |
/****************************************************************************************************
|
|
|
1185 |
* Action :
|
|
|
1186 |
* --------
|
|
|
1187 |
* - Récupère un nombre défini de personnes en s'aidant du nom partiel ou complet de la personne.
|
|
|
1188 |
*
|
|
|
1189 |
* Description des paramètres :
|
|
|
1190 |
* ----------------------------
|
|
|
1191 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
1192 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une personne.
|
|
|
1193 |
* Si la chaîne est vide, alors toutes les personnes sont recherchées.
|
|
|
1194 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
1195 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
1196 |
* d'éléments à collecter.
|
|
|
1197 |
*
|
|
|
1198 |
* Préconditions :
|
|
|
1199 |
* ---------------
|
|
|
1200 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
1201 |
* 'Rafraichissable'
|
|
|
1202 |
* - 'recherche' doit être non NULL.
|
|
|
1203 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
1204 |
*
|
|
|
1205 |
*****************************************************************************************************/
|
1367 |
cyprien |
1206 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
1207 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1208 |
Integer seqId = null;
|
|
|
1209 |
if (sequenceur!=null) {
|
|
|
1210 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1211 |
vueARafraichir = sequenceur;
|
|
|
1212 |
}
|
|
|
1213 |
modele.selectionnerPersonne(vueARafraichir, recherche, start, nbElements, seqId);
|
1329 |
cyprien |
1214 |
}
|
775 |
jpm |
1215 |
|
1763 |
aurelien |
1216 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, int start, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
1217 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
1324 |
gduche |
1218 |
Integer seqId = null;
|
|
|
1219 |
if (sequenceur!=null) {
|
|
|
1220 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1221 |
vueARafraichir = sequenceur;
|
|
|
1222 |
}
|
|
|
1223 |
String personneId = null;
|
|
|
1224 |
String personneNom = null;
|
|
|
1225 |
if (personne != null) {
|
|
|
1226 |
personneId = personne.getId();
|
|
|
1227 |
personneNom = personne.getNom();
|
|
|
1228 |
}
|
1763 |
aurelien |
1229 |
modele.selectionnerPersonne(vueARafraichir, personneId, personneNom, start, nbElements, seqId);
|
1324 |
gduche |
1230 |
}
|
|
|
1231 |
|
1428 |
cyprien |
1232 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String idPersonne, Sequenceur sequenceur) {
|
|
|
1233 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1234 |
Integer seqId = null;
|
|
|
1235 |
if (sequenceur!=null) {
|
|
|
1236 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1237 |
vueARafraichir = sequenceur;
|
|
|
1238 |
}
|
1763 |
aurelien |
1239 |
modele.selectionnerPersonne(vueARafraichir, idPersonne, null, 0, nbElements, seqId);
|
1428 |
cyprien |
1240 |
}
|
|
|
1241 |
|
1763 |
aurelien |
1242 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String nomComplet, Sequenceur sequenceur) {
|
1367 |
cyprien |
1243 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1244 |
Integer seqId = null;
|
|
|
1245 |
if (sequenceur!=null) {
|
|
|
1246 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1247 |
vueARafraichir = sequenceur;
|
775 |
jpm |
1248 |
}
|
1763 |
aurelien |
1249 |
modele.selectionnerPersonne(vueARafraichir, null, nomComplet, 0, -1, seqId);
|
775 |
jpm |
1250 |
}
|
|
|
1251 |
|
1367 |
cyprien |
1252 |
/** ENREGISTRER **/
|
389 |
gduche |
1253 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
774 |
jpm |
1254 |
if (personne.getId() != null && !personne.getId().trim().equals("")) {
|
429 |
gduche |
1255 |
modele.modifierPersonne(vue, personne);
|
|
|
1256 |
} else {
|
1324 |
gduche |
1257 |
modele.ajouterPersonne(vue, personne);
|
429 |
gduche |
1258 |
}
|
389 |
gduche |
1259 |
}
|
|
|
1260 |
|
156 |
jp_milcent |
1261 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1262 |
// GESTION DES PUBLICATIONS
|
|
|
1263 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1264 |
|
107 |
aurelien |
1265 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
673 |
aurelien |
1266 |
if (!(panneauCentre.getContenu() instanceof PublicationVue)) {
|
626 |
gduche |
1267 |
panneauCentre.removeAll();
|
918 |
jpm |
1268 |
panneauCentre.add(new PublicationVue(this));
|
626 |
gduche |
1269 |
}
|
|
|
1270 |
|
646 |
jp_milcent |
1271 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
107 |
aurelien |
1272 |
}
|
715 |
aurelien |
1273 |
|
775 |
jpm |
1274 |
public void afficherFormPublication(String publicationId) {
|
1613 |
aurelien |
1275 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1276 |
PublicationForm publicationForm = new PublicationForm(this, publicationId) {
|
|
|
1277 |
@Override
|
|
|
1278 |
public void surFermetureFormulaire() {
|
|
|
1279 |
fenetre.hide();
|
|
|
1280 |
}
|
|
|
1281 |
};
|
|
|
1282 |
publicationForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1283 |
fenetre.add(publicationForm);
|
|
|
1284 |
fenetre.show();
|
715 |
aurelien |
1285 |
}
|
775 |
jpm |
1286 |
|
107 |
aurelien |
1287 |
public void clicListePublication(Publication publication) {
|
775 |
jpm |
1288 |
if (publication != null) {
|
675 |
aurelien |
1289 |
panneauCentre.getContenu().rafraichir(publication);
|
|
|
1290 |
}
|
107 |
aurelien |
1291 |
}
|
|
|
1292 |
|
|
|
1293 |
public void clicAjouterPublication() {
|
775 |
jpm |
1294 |
afficherFormPublication(null);
|
107 |
aurelien |
1295 |
}
|
156 |
jp_milcent |
1296 |
|
775 |
jpm |
1297 |
public void clicModifierPublication(List<Publication> selection) {
|
|
|
1298 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1299 |
InfoLogger.display("Information", "Veuillez sélectionner une publication.");
|
775 |
jpm |
1300 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1301 |
InfoLogger.display("Information", "Veuillez sélectionner une seule publication à la fois.");
|
775 |
jpm |
1302 |
} else if (selection.size() == 1) {
|
|
|
1303 |
afficherFormPublication(selection.get(0).getId());
|
379 |
jp_milcent |
1304 |
} else {
|
1210 |
cyprien |
1305 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPublication() du Médiateur.");
|
245 |
jp_milcent |
1306 |
}
|
|
|
1307 |
}
|
|
|
1308 |
|
315 |
gduche |
1309 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
1310 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
1311 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
1312 |
} else {
|
1607 |
aurelien |
1313 |
String messageComplement = "(ceci supprimera également les liens avec leurs auteurs et leurs collections)";
|
1606 |
aurelien |
1314 |
String message = "Voulez-vous vraiment supprimer ces publications "+messageComplement+" ?";
|
775 |
jpm |
1315 |
if (publicationListe.size() == 1) {
|
1606 |
aurelien |
1316 |
message = "Voulez-vous vraiment supprimer cette publication "+messageComplement+" ?";
|
245 |
jp_milcent |
1317 |
}
|
315 |
gduche |
1318 |
|
502 |
gduche |
1319 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1320 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1321 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1322 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
1323 |
|
1680 |
raphael |
1324 |
if (btn.getHtml().equals(dialog.yesText)) {
|
919 |
jpm |
1325 |
supprimerPublication(panneauCentre.getContenu(), publicationListe);
|
315 |
gduche |
1326 |
}
|
|
|
1327 |
}
|
|
|
1328 |
};
|
|
|
1329 |
|
|
|
1330 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
1331 |
}
|
|
|
1332 |
}
|
709 |
jp_milcent |
1333 |
|
1367 |
cyprien |
1334 |
/** Cette méthode est un "wrapper" */
|
1324 |
gduche |
1335 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, Sequenceur sequenceur) {
|
1763 |
aurelien |
1336 |
selectionnerPublication(vueARafraichir, publicationId, null, 0, nbElements, sequenceur);
|
709 |
jp_milcent |
1337 |
}
|
|
|
1338 |
|
1367 |
cyprien |
1339 |
/** Cette méthode est un "wrapper" */
|
1763 |
aurelien |
1340 |
public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String nomComplet) {
|
|
|
1341 |
selectionnerPublication(vueARafraichir, null, nomComplet, 0, nbElements, null);
|
709 |
jp_milcent |
1342 |
}
|
|
|
1343 |
|
1763 |
aurelien |
1344 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String nomComplet, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
1345 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Publication");
|
|
|
1346 |
Integer seqId = null;
|
|
|
1347 |
if (sequenceur!=null) {
|
|
|
1348 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1349 |
vueARafraichir = sequenceur;
|
|
|
1350 |
}
|
1763 |
aurelien |
1351 |
modele.selectionnerPublication(vueARafraichir, publicationId, nomComplet, pageCourante, nbElements, seqId);
|
1046 |
gduche |
1352 |
}
|
1367 |
cyprien |
1353 |
|
1513 |
jpm |
1354 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
1355 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Publication");
|
|
|
1356 |
Integer seqId = null;
|
|
|
1357 |
if (sequenceur!=null) {
|
|
|
1358 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1359 |
vueARafraichir = sequenceur;
|
|
|
1360 |
}
|
|
|
1361 |
modele.selectionnerPublication(vueARafraichir, recherche, start, nbElements, seqId);
|
|
|
1362 |
}
|
|
|
1363 |
|
1367 |
cyprien |
1364 |
/** AJOUTER **/
|
1324 |
gduche |
1365 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
|
|
1366 |
modele.ajouterPublication(vueARafraichir, publication, seqId);
|
245 |
jp_milcent |
1367 |
}
|
|
|
1368 |
|
1367 |
cyprien |
1369 |
/** MODIFIER **/
|
1324 |
gduche |
1370 |
public void modifierPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
|
|
1371 |
modele.modifierPublication(vueARafraichir, publication, seqId);
|
245 |
jp_milcent |
1372 |
}
|
919 |
jpm |
1373 |
|
1367 |
cyprien |
1374 |
/** SUPPRIMER **/
|
1324 |
gduche |
1375 |
public void supprimerPublication(Rafraichissable vueARafraichir, List<Publication> publicationsListe) {
|
919 |
jpm |
1376 |
if (publicationsListe != null && publicationsListe.size() > 0) {
|
|
|
1377 |
String idPublicationSeparesParVirgule = "" ;
|
|
|
1378 |
Iterator<Publication> it = publicationsListe.iterator();
|
|
|
1379 |
while (it.hasNext()) {
|
|
|
1380 |
idPublicationSeparesParVirgule += it.next().getId();
|
|
|
1381 |
if (it.hasNext()) {
|
|
|
1382 |
idPublicationSeparesParVirgule += ",";
|
|
|
1383 |
}
|
|
|
1384 |
}
|
|
|
1385 |
modele.supprimerPublication(vueARafraichir, idPublicationSeparesParVirgule);
|
|
|
1386 |
}
|
|
|
1387 |
}
|
245 |
jp_milcent |
1388 |
|
156 |
jp_milcent |
1389 |
//+----------------------------------------------------------------------------------------------------------------+
|
822 |
jpm |
1390 |
// GESTION de la relation PUBLICATION A PERSONNE
|
|
|
1391 |
|
1324 |
gduche |
1392 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId, Sequenceur sequenceur) {
|
1367 |
cyprien |
1393 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
1324 |
gduche |
1394 |
Integer seqId = null;
|
|
|
1395 |
if (sequenceur != null) {
|
|
|
1396 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1397 |
vueARafraichir = sequenceur;
|
|
|
1398 |
}
|
|
|
1399 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleId, seqId);
|
822 |
jpm |
1400 |
}
|
|
|
1401 |
|
1367 |
cyprien |
1402 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, List<Valeur> roleId, Sequenceur sequenceur) {
|
|
|
1403 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1404 |
Integer seqId = null;
|
|
|
1405 |
if (sequenceur != null) {
|
|
|
1406 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1407 |
vueARafraichir = sequenceur;
|
|
|
1408 |
}
|
|
|
1409 |
|
1014 |
gduche |
1410 |
String roleIds = "";
|
|
|
1411 |
Iterator<Valeur> itRole = roleId.iterator();
|
|
|
1412 |
while (itRole.hasNext()) {
|
|
|
1413 |
roleIds+= itRole.next().getId();
|
|
|
1414 |
if (itRole.hasNext()) {
|
|
|
1415 |
roleIds+=",";
|
|
|
1416 |
}
|
|
|
1417 |
}
|
1367 |
cyprien |
1418 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleIds, seqId);
|
1014 |
gduche |
1419 |
}
|
1513 |
jpm |
1420 |
|
|
|
1421 |
public void selectionnerPublicationsAPersonne(Rafraichissable vueARafraichir, String personneId, List<Valeur> roleId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1422 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1423 |
Integer seqId = null;
|
|
|
1424 |
if (sequenceur != null) {
|
|
|
1425 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1426 |
vueARafraichir = sequenceur;
|
|
|
1427 |
}
|
|
|
1428 |
|
|
|
1429 |
String roleIds = "";
|
|
|
1430 |
Iterator<Valeur> itRole = roleId.iterator();
|
|
|
1431 |
while (itRole.hasNext()) {
|
|
|
1432 |
roleIds+= itRole.next().getId();
|
|
|
1433 |
if (itRole.hasNext()) {
|
|
|
1434 |
roleIds+=",";
|
|
|
1435 |
}
|
|
|
1436 |
}
|
|
|
1437 |
modele.selectionPublicationsAPersonne(vueARafraichir, personneId, roleIds, recherche, pageCourante, nbElements, seqId);
|
|
|
1438 |
}
|
|
|
1439 |
|
|
|
1440 |
public void selectionnerPersonnesAPublication(Rafraichissable vueARafraichir, String publicationId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1441 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1442 |
Integer seqId = null;
|
|
|
1443 |
if (sequenceur != null) {
|
|
|
1444 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1445 |
vueARafraichir = sequenceur;
|
|
|
1446 |
}
|
|
|
1447 |
modele.selectionPersonnesAPublication(vueARafraichir, publicationId, recherche, pageCourante, nbElements, seqId);
|
|
|
1448 |
}
|
1428 |
cyprien |
1449 |
|
1367 |
cyprien |
1450 |
/** AJOUTER **/
|
1428 |
cyprien |
1451 |
// Lier une publication à plusieurs personnes
|
1324 |
gduche |
1452 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesAjoutees, String roleId, Integer seqId) {
|
901 |
jpm |
1453 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
1454 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
1428 |
cyprien |
1455 |
String ordreAuteursSepareParVirgule = "";
|
901 |
jpm |
1456 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
1428 |
cyprien |
1457 |
PublicationAPersonne publi = personnesAjoutees.get(it.next());
|
|
|
1458 |
idPublicationAPersonneSepareParVirgule += publi.getIdPersonne();
|
|
|
1459 |
ordreAuteursSepareParVirgule += publi.getOrdreAuteurs();
|
901 |
jpm |
1460 |
if (it.hasNext()) {
|
|
|
1461 |
idPublicationAPersonneSepareParVirgule += ",";
|
1428 |
cyprien |
1462 |
ordreAuteursSepareParVirgule += ",";
|
901 |
jpm |
1463 |
}
|
|
|
1464 |
}
|
1428 |
cyprien |
1465 |
modele.ajouterPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, ordreAuteursSepareParVirgule, roleId, seqId);
|
1324 |
gduche |
1466 |
}
|
822 |
jpm |
1467 |
}
|
901 |
jpm |
1468 |
|
1428 |
cyprien |
1469 |
// Lier plusieurs publication à une personne
|
|
|
1470 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe listePublications, String personneId, String roleId, Integer seqId) {
|
1468 |
jpm |
1471 |
if (listePublications != null && listePublications.size() > 0) {
|
1428 |
cyprien |
1472 |
String idsPubli = "";
|
|
|
1473 |
String rolesIds = "";
|
|
|
1474 |
String ordreAuteurs = "";
|
|
|
1475 |
for (Iterator<String> it = listePublications.keySet().iterator(); it.hasNext();) {
|
|
|
1476 |
PublicationAPersonne publiAPersonne = listePublications.get(it.next());
|
1468 |
jpm |
1477 |
idsPubli += publiAPersonne.getIdPublication();
|
1428 |
cyprien |
1478 |
rolesIds += publiAPersonne.getRole();
|
|
|
1479 |
ordreAuteurs += publiAPersonne.getOrdreAuteurs();
|
|
|
1480 |
if (it.hasNext()) {
|
|
|
1481 |
idsPubli += ",";
|
|
|
1482 |
rolesIds += ",";
|
|
|
1483 |
ordreAuteurs += ",";
|
|
|
1484 |
}
|
|
|
1485 |
}
|
|
|
1486 |
modele.ajouterPublicationAPersonne(vueARafraichir, idsPubli, personneId, ordreAuteurs, rolesIds, seqId);
|
|
|
1487 |
}
|
|
|
1488 |
}
|
|
|
1489 |
|
|
|
1490 |
/** MODIFIER **/
|
|
|
1491 |
public void modifierPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesModifiees, String roleId, Integer seqId) {
|
|
|
1492 |
if (personnesModifiees != null && personnesModifiees.size() > 0) {
|
|
|
1493 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1494 |
String ordreAuteursSepareParVirgule = "";
|
|
|
1495 |
for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1496 |
PublicationAPersonne publi = personnesModifiees.get(it.next());
|
|
|
1497 |
idPublicationAPersonneSepareParVirgule += publi.getIdPersonne();
|
|
|
1498 |
ordreAuteursSepareParVirgule += publi.getOrdreAuteurs();
|
|
|
1499 |
if (it.hasNext()) {
|
|
|
1500 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1501 |
ordreAuteursSepareParVirgule += ",";
|
|
|
1502 |
}
|
|
|
1503 |
}
|
|
|
1504 |
modele.modifierPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, ordreAuteursSepareParVirgule, roleId, seqId);
|
|
|
1505 |
}
|
|
|
1506 |
}
|
1367 |
cyprien |
1507 |
|
|
|
1508 |
/** SUPPRIMER **/
|
1324 |
gduche |
1509 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe personnesSupprimees) {
|
901 |
jpm |
1510 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
1511 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1512 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
1513 |
idPublicationAPersonneSepareParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
1514 |
if (it.hasNext()) {
|
|
|
1515 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1516 |
}
|
|
|
1517 |
}
|
1428 |
cyprien |
1518 |
|
968 |
jpm |
1519 |
modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationAPersonneSepareParVirgule);
|
1324 |
gduche |
1520 |
}
|
822 |
jpm |
1521 |
}
|
|
|
1522 |
|
|
|
1523 |
//+----------------------------------------------------------------------------------------------------------------+
|
985 |
jpm |
1524 |
// GESTION DES COMMENTAIRES
|
|
|
1525 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1526 |
|
|
|
1527 |
public void afficherListeCommentaire(CommentaireListe nouvelleDonnees) {
|
|
|
1528 |
if (!(panneauCentre.getContenu() instanceof CommentaireVue)) {
|
|
|
1529 |
panneauCentre.removeAll();
|
|
|
1530 |
panneauCentre.add(new CommentaireVue(this));
|
|
|
1531 |
}
|
|
|
1532 |
|
|
|
1533 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
|
|
1534 |
}
|
|
|
1535 |
|
|
|
1536 |
public void afficherFormCommentaire(String commentaireId) {
|
1613 |
aurelien |
1537 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1538 |
CommentaireForm commentaireForm = new CommentaireForm(this, commentaireId) {
|
|
|
1539 |
@Override
|
|
|
1540 |
public void surFermetureFormulaire() {
|
|
|
1541 |
fenetre.hide();
|
|
|
1542 |
}
|
|
|
1543 |
};
|
|
|
1544 |
commentaireForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1545 |
fenetre.add(commentaireForm);
|
|
|
1546 |
fenetre.show();
|
985 |
jpm |
1547 |
}
|
|
|
1548 |
|
|
|
1549 |
public void clicListeCommentaire(Commentaire commentaire) {
|
|
|
1550 |
if (commentaire != null) {
|
|
|
1551 |
panneauCentre.getContenu().rafraichir(commentaire);
|
|
|
1552 |
}
|
|
|
1553 |
}
|
|
|
1554 |
|
|
|
1555 |
public void clicAjouterCommentaire() {
|
|
|
1556 |
afficherFormCommentaire(null);
|
|
|
1557 |
}
|
|
|
1558 |
|
|
|
1559 |
public void clicModifierCommentaire(List<Commentaire> selection) {
|
|
|
1560 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1561 |
InfoLogger.display("Information", "Veuillez sélectionner un commentaire.");
|
985 |
jpm |
1562 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1563 |
InfoLogger.display("Information", "Veuillez sélectionner un seul commentaire à la fois.");
|
985 |
jpm |
1564 |
} else if (selection.size() == 1) {
|
|
|
1565 |
afficherFormCommentaire(selection.get(0).getId());
|
|
|
1566 |
} else {
|
1210 |
cyprien |
1567 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCommentaire() du Médiateur.");
|
985 |
jpm |
1568 |
}
|
|
|
1569 |
}
|
|
|
1570 |
|
|
|
1571 |
public void clicSupprimerCommentaire(final List<Commentaire> commentaireListe) {
|
|
|
1572 |
if (commentaireListe.size() <= 0) {
|
|
|
1573 |
MessageBox.alert("Attention", "Vous devez sélectionner un commentaire", null);
|
|
|
1574 |
} else {
|
|
|
1575 |
String message = "Voulez-vous vraiment supprimer ces commentaires ?";
|
|
|
1576 |
if (commentaireListe.size() == 1) {
|
|
|
1577 |
message = "Voulez-vous vraiment supprimer ce commentaire ?";
|
|
|
1578 |
}
|
|
|
1579 |
|
|
|
1580 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1581 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1582 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1583 |
Button btn = ce.getButtonClicked();
|
|
|
1584 |
|
1680 |
raphael |
1585 |
if (btn.getHtml().equals(dialog.yesText)) {
|
985 |
jpm |
1586 |
supprimerCommentaire(panneauCentre.getContenu(), commentaireListe);
|
|
|
1587 |
}
|
|
|
1588 |
}
|
|
|
1589 |
};
|
|
|
1590 |
|
|
|
1591 |
MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
|
|
|
1592 |
}
|
|
|
1593 |
}
|
|
|
1594 |
|
1367 |
cyprien |
1595 |
/** Cette méthode est un wrapper **/
|
|
|
1596 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, Sequenceur sequenceur) {
|
|
|
1597 |
selectionnerCommentaire(vueARafraichir, commentaireId, null, 0, nbElements, sequenceur);
|
985 |
jpm |
1598 |
}
|
1367 |
cyprien |
1599 |
|
|
|
1600 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String titre, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1601 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Commentaire");
|
|
|
1602 |
Integer seqId = null;
|
|
|
1603 |
if (sequenceur != null) {
|
|
|
1604 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1605 |
vueARafraichir = sequenceur;
|
|
|
1606 |
}
|
1763 |
aurelien |
1607 |
modele.selectionnerCommentaire(vueARafraichir, commentaireId, titre, pageCourante, nbElements, seqId);
|
1048 |
gduche |
1608 |
}
|
985 |
jpm |
1609 |
|
1513 |
jpm |
1610 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1611 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Commentaire");
|
|
|
1612 |
Integer seqId = null;
|
|
|
1613 |
if (sequenceur != null) {
|
|
|
1614 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1615 |
vueARafraichir = sequenceur;
|
|
|
1616 |
}
|
|
|
1617 |
modele.selectionnerCommentaire(vueARafraichir, recherche, pageCourante, nbElements, seqId);
|
|
|
1618 |
}
|
|
|
1619 |
|
1367 |
cyprien |
1620 |
/** Cette méthode est un wrapper **/
|
|
|
1621 |
public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre, Sequenceur sequenceur) {
|
|
|
1622 |
selectionnerCommentaire(vueARafraichir, null, titre, 0, nbElements, sequenceur);
|
997 |
jpm |
1623 |
}
|
|
|
1624 |
|
1367 |
cyprien |
1625 |
/** AJOUTER **/
|
985 |
jpm |
1626 |
public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1627 |
modele.ajouterCommentaire(vueARafraichir, commentaire);
|
|
|
1628 |
}
|
|
|
1629 |
|
1367 |
cyprien |
1630 |
/** MODIFIER **/
|
985 |
jpm |
1631 |
public void modifierCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1632 |
modele.modifierCommentaire(vueARafraichir, commentaire);
|
|
|
1633 |
}
|
|
|
1634 |
|
1367 |
cyprien |
1635 |
/** SUPPRIMER **/
|
985 |
jpm |
1636 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, List<Commentaire> commentairesListe) {
|
|
|
1637 |
if (commentairesListe != null && commentairesListe.size() > 0) {
|
|
|
1638 |
String idCommentaireSeparesParVirgule = "" ;
|
|
|
1639 |
Iterator<Commentaire> it = commentairesListe.iterator();
|
|
|
1640 |
while (it.hasNext()) {
|
|
|
1641 |
idCommentaireSeparesParVirgule += it.next().getId();
|
|
|
1642 |
if (it.hasNext()) {
|
|
|
1643 |
idCommentaireSeparesParVirgule += ",";
|
|
|
1644 |
}
|
|
|
1645 |
}
|
|
|
1646 |
modele.supprimerCommentaire(vueARafraichir, idCommentaireSeparesParVirgule);
|
989 |
jpm |
1647 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COMMENTAIRE);
|
985 |
jpm |
1648 |
}
|
|
|
1649 |
}
|
|
|
1650 |
|
|
|
1651 |
//+----------------------------------------------------------------------------------------------------------------+
|
1790 |
aurelien |
1652 |
// GESTION DES STATS
|
|
|
1653 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1654 |
public void afficherStats() {
|
|
|
1655 |
if (!(panneauCentre.getContenu() instanceof StatistiquesVue)) {
|
|
|
1656 |
panneauCentre.removeAll();
|
|
|
1657 |
panneauCentre.add(new StatistiquesVue(this));
|
|
|
1658 |
}
|
|
|
1659 |
}
|
|
|
1660 |
|
|
|
1661 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
1662 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
1663 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1664 |
|
898 |
gduche |
1665 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
1666 |
if (nouvellesDonnees instanceof Utilisateur) {
|
932 |
jpm |
1667 |
repandreEtatIdentification((Utilisateur) nouvellesDonnees);
|
|
|
1668 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
1669 |
Information info = (Information) nouvellesDonnees;
|
|
|
1670 |
if (info.getType().equals("modification_personne")) {
|
|
|
1671 |
repandreInfoMiseAJourUtilisateur();
|
|
|
1672 |
}
|
|
|
1673 |
} else {
|
898 |
gduche |
1674 |
GWT.log(i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
277 |
jp_milcent |
1675 |
}
|
|
|
1676 |
}
|
281 |
gduche |
1677 |
|
453 |
jp_milcent |
1678 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1679 |
// GESTION du STATUT
|
|
|
1680 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
1681 |
|
332 |
gduche |
1682 |
public void afficherPopinChargement() {
|
|
|
1683 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
1684 |
}
|
453 |
jp_milcent |
1685 |
|
332 |
gduche |
1686 |
public void masquerPopinChargement() {
|
|
|
1687 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
1688 |
}
|
1063 |
gduche |
1689 |
|
|
|
1690 |
public String obtenirClasseContenu() {
|
|
|
1691 |
String classeContenu = null;
|
|
|
1692 |
if (panneauCentre.getContenu() != null) {
|
|
|
1693 |
classeContenu = panneauCentre.getContenu().getClass().toString();
|
|
|
1694 |
}
|
|
|
1695 |
return classeContenu;
|
1509 |
jpm |
1696 |
}
|
|
|
1697 |
|
|
|
1698 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1699 |
// GESTION de l'HISTORIQUE du navigateur
|
|
|
1700 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1701 |
@Override
|
|
|
1702 |
public void onValueChange(ValueChangeEvent<String> event) {
|
|
|
1703 |
String token = event.getValue();
|
1633 |
aurelien |
1704 |
if(premierChargement) {
|
|
|
1705 |
if (token != null) {
|
|
|
1706 |
if (token.lastIndexOf("?") == -1) {
|
|
|
1707 |
this.requeteUrl = null;
|
|
|
1708 |
this.clicMenu(token);
|
|
|
1709 |
} else {
|
|
|
1710 |
int indexDebutRequete = (token.lastIndexOf("?") + 1);
|
|
|
1711 |
int indexFinPlace = token.lastIndexOf("?");
|
|
|
1712 |
String place = token.substring(0, indexFinPlace);
|
|
|
1713 |
requeteUrl = token.substring(indexDebutRequete);
|
|
|
1714 |
Log.trace("URL Place : "+place);
|
|
|
1715 |
Log.trace("URL Requete : "+requeteUrl);
|
|
|
1716 |
analyseRequeteURL();
|
|
|
1717 |
this.clicMenu(place);
|
|
|
1718 |
}
|
|
|
1719 |
}
|
|
|
1720 |
}
|
|
|
1721 |
premierChargement = false;
|
1562 |
jpm |
1722 |
}
|
|
|
1723 |
|
|
|
1724 |
private void analyseRequeteURL() {
|
|
|
1725 |
String[] params = requeteUrl.split("&");
|
|
|
1726 |
for (int i = 0; i < params.length; i++) {
|
|
|
1727 |
if (params[i].startsWith("logLevel=")) {
|
|
|
1728 |
String logLevel = params[i].replaceFirst("^logLevel=", "");
|
|
|
1729 |
Log.setNiveau(logLevel);
|
|
|
1730 |
}
|
|
|
1731 |
}
|
|
|
1732 |
}
|
447 |
jp_milcent |
1733 |
|
1654 |
raphael |
1734 |
}
|