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