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