Subversion Repositories eFlore/Applications.coel

Rev

Rev 1048 | Rev 1079 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
60 jpm 1
package org.tela_botanica.client;
2
 
231 jp_milcent 3
import java.util.Iterator;
134 jpm 4
import java.util.List;
5
 
61 jpm 6
import org.tela_botanica.client.composants.AideFenetre;
60 jpm 7
import org.tela_botanica.client.composants.IdentificationFenetre;
898 gduche 8
import org.tela_botanica.client.composants.LicenceFenetre;
1023 jpm 9
import org.tela_botanica.client.composants.AproposFenetre;
907 jpm 10
import org.tela_botanica.client.configuration.APropos;
11
import org.tela_botanica.client.configuration.Configuration;
358 jp_milcent 12
import org.tela_botanica.client.i18n.Constantes;
466 gduche 13
import org.tela_botanica.client.i18n.ErrorMessages;
119 jpm 14
import org.tela_botanica.client.interfaces.Rafraichissable;
156 jp_milcent 15
import org.tela_botanica.client.modeles.Information;
327 jp_milcent 16
import org.tela_botanica.client.modeles.MenuApplicationId;
61 jpm 17
import org.tela_botanica.client.modeles.Utilisateur;
1014 gduche 18
import org.tela_botanica.client.modeles.Valeur;
91 jpm 19
import org.tela_botanica.client.modeles.ValeurListe;
935 jpm 20
import org.tela_botanica.client.modeles.collection.Collection;
989 jpm 21
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
22
import org.tela_botanica.client.modeles.collection.CollectionACommentaireAsyncDao;
23
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
935 jpm 24
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
25
import org.tela_botanica.client.modeles.collection.CollectionAPersonneListe;
26
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
27
import org.tela_botanica.client.modeles.collection.CollectionAPublicationListe;
28
import org.tela_botanica.client.modeles.collection.CollectionListe;
985 jpm 29
import org.tela_botanica.client.modeles.commentaire.Commentaire;
30
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
935 jpm 31
import org.tela_botanica.client.modeles.personne.Personne;
32
import org.tela_botanica.client.modeles.personne.PersonneListe;
33
import org.tela_botanica.client.modeles.projet.Projet;
34
import org.tela_botanica.client.modeles.projet.ProjetListe;
35
import org.tela_botanica.client.modeles.publication.Publication;
36
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
37
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
38
import org.tela_botanica.client.modeles.publication.PublicationListe;
39
import org.tela_botanica.client.modeles.structure.Structure;
40
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
41
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
42
import org.tela_botanica.client.modeles.structure.StructureConservation;
43
import org.tela_botanica.client.modeles.structure.StructureListe;
44
import org.tela_botanica.client.modeles.structure.StructureValorisation;
918 jpm 45
import org.tela_botanica.client.util.Debug;
936 jpm 46
import org.tela_botanica.client.vues.ContenuVue;
444 jp_milcent 47
import org.tela_botanica.client.vues.EnteteVue;
641 jp_milcent 48
import org.tela_botanica.client.vues.Formulaire;
982 jpm 49
import org.tela_botanica.client.vues.NavigationVue;
332 gduche 50
import org.tela_botanica.client.vues.PopupChargement;
443 jp_milcent 51
import org.tela_botanica.client.vues.StatutVue;
444 jp_milcent 52
import org.tela_botanica.client.vues.MenuVue;
912 jpm 53
import org.tela_botanica.client.vues.accueil.AccueilVue;
934 jpm 54
import org.tela_botanica.client.vues.collection.CollectionForm;
55
import org.tela_botanica.client.vues.collection.CollectionListeVue;
56
import org.tela_botanica.client.vues.collection.CollectionVue;
989 jpm 57
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
985 jpm 58
import org.tela_botanica.client.vues.commentaire.CommentaireVue;
935 jpm 59
import org.tela_botanica.client.vues.personne.PersonneForm;
60
import org.tela_botanica.client.vues.personne.PersonneVue;
61
import org.tela_botanica.client.vues.projet.ProjetForm;
62
import org.tela_botanica.client.vues.projet.ProjetVue;
63
import org.tela_botanica.client.vues.publication.PublicationForm;
64
import org.tela_botanica.client.vues.publication.PublicationVue;
65
import org.tela_botanica.client.vues.structure.StructureForm;
66
import org.tela_botanica.client.vues.structure.StructureVue;
467 jp_milcent 67
 
60 jpm 68
import com.extjs.gxt.ui.client.Registry;
69
import com.extjs.gxt.ui.client.Style.LayoutRegion;
315 gduche 70
import com.extjs.gxt.ui.client.event.Listener;
502 gduche 71
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
60 jpm 72
import com.extjs.gxt.ui.client.util.Margins;
646 jp_milcent 73
import com.extjs.gxt.ui.client.widget.Component;
315 gduche 74
import com.extjs.gxt.ui.client.widget.Dialog;
156 jp_milcent 75
import com.extjs.gxt.ui.client.widget.Info;
315 gduche 76
import com.extjs.gxt.ui.client.widget.MessageBox;
60 jpm 77
import com.extjs.gxt.ui.client.widget.Viewport;
315 gduche 78
import com.extjs.gxt.ui.client.widget.button.Button;
60 jpm 79
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
80
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
91 jpm 81
import com.google.gwt.core.client.GWT;
599 gduche 82
import com.google.gwt.i18n.client.Dictionary;
60 jpm 83
import com.google.gwt.user.client.Window;
84
import com.google.gwt.user.client.ui.RootPanel;
85
 
277 jp_milcent 86
public class Mediateur implements Rafraichissable {
60 jpm 87
 
358 jp_milcent 88
	private Viewport viewport;
119 jpm 89
	private Modele modele = null;
582 jp_milcent 90
	public static final Constantes i18nC = getI18nConstante();
91
	public static final ErrorMessages i18nM = getI18nMessage();
119 jpm 92
 
444 jp_milcent 93
	private EnteteVue panneauNord = null;
982 jpm 94
	private NavigationVue panneauOuest = null;
444 jp_milcent 95
	private ContenuVue panneauCentre = null;
443 jp_milcent 96
	private StatutVue panneauSud = null;
60 jpm 97
 
358 jp_milcent 98
	private IdentificationFenetre fenetreIdentification = null;
1041 gduche 99
	private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
60 jpm 100
	public Mediateur() {
101
		// Enregistrement du Médiateur dans le Registre
102
		Registry.register(RegistreId.MEDIATEUR, this);
765 jpm 103
 
104
		//Initialisation du Registre
105
		initialiserRegistre();
466 gduche 106
 
60 jpm 107
		// Création du Modèle qui s'enregistre lui même dans le Registre
119 jpm 108
		modele = new Modele();
535 jp_milcent 109
 
60 jpm 110
		// Création du Viewport qui contient la disposition globale de l'application
111
		viewport = new Viewport();
112
		viewport.setLayout(new BorderLayout());
552 jp_milcent 113
 
60 jpm 114
		// Création des différents panneaux
115
	    creerPanneauNord();
116
	    creerPanneauOuest();
117
	    creerPanneauCentral();
358 jp_milcent 118
	    creerPanneauSud();
535 jp_milcent 119
 
120
		// Connection de l'utilisateur
121
		connecterUtilisateur(null, null);
122
 
60 jpm 123
		// Retour à GWT du Viewport une fois constuit
124
		RootPanel.get().add(viewport);
125
	}
126
 
156 jp_milcent 127
	//+----------------------------------------------------------------------------------------------------------------+
535 jp_milcent 128
	//												GESTION de l'I18N et du REGISTRE
129
	//+----------------------------------------------------------------------------------------------------------------+
582 jp_milcent 130
	protected static Constantes getI18nConstante() {
535 jp_milcent 131
		return GWT.create(Constantes.class);
132
	}
133
 
582 jp_milcent 134
	protected static ErrorMessages getI18nMessage() {
535 jp_milcent 135
		return GWT.create(ErrorMessages.class);
136
	}
137
 
138
	protected void initialiserRegistre() {
139
		Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
140
		Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
141
		Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
907 jpm 142
 
143
		APropos apropos = new APropos();
1023 jpm 144
		Registry.register(RegistreId.APPLI_DEVELOPPEURS, apropos.getDeveloppeurs());
145
		Registry.register(RegistreId.APPLI_TRADUCTEURS, apropos.getTraducteurs());
146
		Registry.register(RegistreId.APPLI_LICENCE, apropos.getLicence());
907 jpm 147
		Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
148
		Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
149
		Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
535 jp_milcent 150
 
151
		Registry.register(RegistreId.CONFIG, new Configuration());
537 jp_milcent 152
		Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
766 jpm 153
		Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur());
535 jp_milcent 154
		Registry.register(RegistreId.PROJET_COURANT, new Projet());
155
	}
156
 
157
	//+----------------------------------------------------------------------------------------------------------------+
156 jp_milcent 158
	//												GESTION des PANNEAUX PRINCIPAUX
159
	//+----------------------------------------------------------------------------------------------------------------+
119 jpm 160
 
60 jpm 161
	private void creerPanneauNord() {
444 jp_milcent 162
		panneauNord = new EnteteVue(this);
60 jpm 163
 
164
		BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
165
		regionNord.setCollapsible(true);
166
		regionNord.setFloatable(true);
167
		regionNord.setSplit(false);
168
		regionNord.setMargins(new Margins(5, 5, 0, 5));
169
 
170
		viewport.add(panneauNord, regionNord);
171
	}
172
 
173
	private void creerPanneauOuest() {
982 jpm 174
		panneauOuest = new NavigationVue(this);
60 jpm 175
 
176
		BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
177
		regionOuest.setSplit(true);
178
		regionOuest.setCollapsible(true);
179
		regionOuest.setMargins(new Margins(5));
180
 
181
		viewport.add(panneauOuest, regionOuest);
182
	}
183
 
184
	private void creerPanneauCentral() {
444 jp_milcent 185
		panneauCentre = new ContenuVue(this);
60 jpm 186
 
187
		BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
188
		regionCentre.setMargins(new Margins(5, 5, 5, 0));
189
 
190
		viewport.add(panneauCentre, regionCentre);
191
	}
358 jp_milcent 192
 
193
	private void creerPanneauSud() {
443 jp_milcent 194
		panneauSud = new StatutVue();
358 jp_milcent 195
 
369 jp_milcent 196
		BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
358 jp_milcent 197
		regionSud.setCollapsible(true);
198
		regionSud.setFloatable(true);
199
		regionSud.setSplit(false);
200
		regionSud.setMargins(new Margins(0));
201
 
202
		viewport.add(panneauSud, regionSud);
203
	}
60 jpm 204
 
369 jp_milcent 205
	public void actualiserPanneauCentral() {
206
		panneauCentre.layout();
207
	}
208
 
156 jp_milcent 209
	//+----------------------------------------------------------------------------------------------------------------+
210
	//												GESTION du MENU
211
	//+----------------------------------------------------------------------------------------------------------------+
212
 
327 jp_milcent 213
	public void clicMenu(String codeMenuClique) {
358 jp_milcent 214
		activerChargement(codeMenuClique);
982 jpm 215
		panneauOuest.getMenu().selectionMenu(codeMenuClique);
910 jpm 216
		if (codeMenuClique.equals(MenuApplicationId.ACCUEIL)) {
217
			afficherAccueil();
218
		} else if (codeMenuClique.equals(MenuApplicationId.PROJET)) {
928 jpm 219
			selectionnerProjet(panneauCentre, null);
910 jpm 220
		} else if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
646 jp_milcent 221
			selectionnerStructure(panneauCentre, null);
553 jp_milcent 222
		} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
1041 gduche 223
			selectionnerCollection(panneauCentre, null, null);
553 jp_milcent 224
		} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
1063 gduche 225
			selectionnerPersonne(panneauCentre, null, getProjetId());
327 jp_milcent 226
		} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
918 jpm 227
			selectionnerPublication(panneauCentre, null);
985 jpm 228
		} else if (codeMenuClique.equals(MenuApplicationId.COMMENTAIRE)) {
229
			selectionnerCommentaire(panneauCentre, null);
379 jp_milcent 230
		} else {
841 gduche 231
			GWT.log(i18nM.nonImplemente(codeMenuClique), null);
60 jpm 232
		}
233
		panneauCentre.layout();
234
	}
836 aurelien 235
 
358 jp_milcent 236
	public void activerChargement(String message) {
1063 gduche 237
 
918 jpm 238
		Debug.log(message);
358 jp_milcent 239
		afficherPopinChargement();
369 jp_milcent 240
		panneauSud.showBusy(i18nC.chargement()+" "+message);
358 jp_milcent 241
	}
242
 
243
	public void desactiverChargement() {
244
		masquerPopinChargement();
245
		panneauSud.clear();
246
	}
646 jp_milcent 247
 
156 jp_milcent 248
	//+----------------------------------------------------------------------------------------------------------------+
249
	//												GESTION DES FENÊTRES
250
	//+----------------------------------------------------------------------------------------------------------------+
60 jpm 251
 
61 jpm 252
	public void ouvrirAide() {
253
		AideFenetre aideFenetre = new AideFenetre();
254
		aideFenetre.show();
66 jpm 255
		// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
256
		//aideFenetre.el().fadeIn(FxConfig.NONE);
61 jpm 257
	}
258
 
259
	public void ouvrirParametres() {
1023 jpm 260
		AproposFenetre parametresFenetre = new AproposFenetre();
66 jpm 261
		parametresFenetre.show();
61 jpm 262
	}
263
 
264
	public void ouvrirIdentification() {
1017 jpm 265
		fenetreIdentification = new IdentificationFenetre(this);
358 jp_milcent 266
		fenetreIdentification.show();
61 jpm 267
	}
268
 
989 jpm 269
	public void ouvrirUrlExterne(String id) {
61 jpm 270
		if (id.equals(ComposantId.MENU_CEL)) {
989 jpm 271
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
61 jpm 272
		} else if (id.equals(ComposantId.MENU_BEL)) {
989 jpm 273
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Biblio en ligne", "");
274
		} else if (id.equals(ComposantId.MENU_BOGUE)) {
275
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("bogue"), "Bogue", "");
276
		} else if (id.equals(ComposantId.MENU_COMMENTAIRE)) {
277
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("commentaire"), "Commentaire", "");
61 jpm 278
		}
279
	}
280
 
898 gduche 281
	public void afficherFenetreLicence(IdentificationFenetre vue)	{
282
		LicenceFenetre lf = new LicenceFenetre(vue);
283
	}
284
 
285
	public void accepterLicence(Rafraichissable vue)	{
286
		modele.accepterLicence(vue);
287
	}
156 jp_milcent 288
	//+----------------------------------------------------------------------------------------------------------------+
289
	//												GESTION de l'UTILISATEUR et de l'IDENTIFICATION
290
	//+----------------------------------------------------------------------------------------------------------------+
245 jp_milcent 291
	/**
292
	 * Retourne l'identifiant de l'utilisateur courrant de l'application.
293
	 */
156 jp_milcent 294
	public String getUtilisateurId() {
277 jp_milcent 295
		String id = null;
296
		Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
297
		if (!utilisateurCourant.getId().equals("")) {
298
			id = utilisateurCourant.getId();
299
		}
300
		return id;
156 jp_milcent 301
	}
302
 
912 jpm 303
	public Utilisateur getUtilisateur() {
304
		Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
305
		return utilisateurCourant;
306
	}
307
 
65 jpm 308
	public void connecterUtilisateur(String login, String mdp) {
277 jp_milcent 309
		modele.connecterUtilisateur(this, login, mdp);
64 jpm 310
	}
311
 
65 jpm 312
	public void deconnecterUtilisateur() {
277 jp_milcent 313
		modele.deconnecterUtilisateur(this);
64 jpm 314
	}
65 jpm 315
 
932 jpm 316
	public void repandreEtatIdentification(Utilisateur utilisateur) {
156 jp_milcent 317
		// Mise à jour du registre
277 jp_milcent 318
		Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
932 jpm 319
		// Propagation de l'information de mise à jour de l'utilisateur
320
		repandreInfoMiseAJourUtilisateur();
321
	}
322
 
323
	public void repandreInfoMiseAJourUtilisateur() {
912 jpm 324
		// Création de l'information de mise à jour de l'utilisateur
325
		Information info = new Information("maj_utilisateur");
326
 
327
		// Rafraichissement de la fenêtre d'Identification
941 jpm 328
		if (fenetreIdentification != null && fenetreIdentification.isVisible()) {
912 jpm 329
			fenetreIdentification.rafraichir(info);
330
		}
898 gduche 331
 
912 jpm 332
		// Rafraichissement du panneau Nord
333
		panneauNord.rafraichir(info);
334
 
335
		// Rafraichissement du panneau Centre
336
		if (panneauCentre != null) {
337
			panneauCentre.rafraichir(info);
932 jpm 338
		}
912 jpm 339
	}
898 gduche 340
 
912 jpm 341
	public void modifierUtilisateur()	{
342
		Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
343
		panneauNord.rafraichir(utilisateurCourant);
344
		modele.modifierUtilisateur(this, utilisateurCourant);
61 jpm 345
	}
898 gduche 346
 
347
	public void mettreAJourPersonneAnnuaire(Utilisateur utilisateur)	{
348
		panneauNord.rafraichir(utilisateur);
349
		modele.mettreAJourPersonneAnnuaire(this, utilisateur);
350
	}
66 jpm 351
 
156 jp_milcent 352
	//+----------------------------------------------------------------------------------------------------------------+
447 jp_milcent 353
	//												GESTION DES VALEURS ET LISTES
354
	//+----------------------------------------------------------------------------------------------------------------+
355
 
568 jp_milcent 356
	public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId)	{
357
		modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
453 jp_milcent 358
	}
447 jp_milcent 359
 
453 jp_milcent 360
	public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur)	{
361
		modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
362
	}
363
 
364
	public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays)	{
365
		modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
366
	}
367
 
447 jp_milcent 368
	//+----------------------------------------------------------------------------------------------------------------+
910 jpm 369
	//												GESTION des APPLETS de l'ACCUEIL
370
	//+----------------------------------------------------------------------------------------------------------------+
371
 
372
	public void afficherAccueil() {
373
		if (!(panneauCentre.getContenu() instanceof AccueilVue)) {
374
			panneauCentre.removeAll();
375
			panneauCentre.add(new AccueilVue(this));
376
		}
377
	}
378
 
379
	//+----------------------------------------------------------------------------------------------------------------+
447 jp_milcent 380
	//												GESTION des PROJETS
381
	//+----------------------------------------------------------------------------------------------------------------+
382
 
928 jpm 383
	public void afficherFormProjet(String projetId) {
384
		panneauCentre.removeAll();
385
		ProjetForm projetForm = new ProjetForm(this, projetId);
386
		panneauCentre.add(projetForm);
387
 
388
		panneauCentre.layout();
389
	}
390
 
391
	public void afficherListeProjets(ProjetListe projetsACharger)	{
392
		if (!(panneauCentre.getContenu() instanceof ProjetVue))	{
393
			panneauCentre.removeAll();
394
			panneauCentre.add(new ProjetVue(this));
395
			panneauCentre.setId(ComposantId.PANNEAU_PROJET_LISTE);
396
			panneauCentre.layout();
397
		}
398
 
399
		panneauCentre.getContenu().rafraichir(projetsACharger);
400
	}
401
 
402
	public void clicListeProjet(Projet projet) {
403
		panneauCentre.getContenu().rafraichir(projet);
404
	}
405
 
406
	public void clicSupprimerProjet(final List<Projet> projetListe) {
407
		if (projetListe.size() <= 0) {
408
			MessageBox.alert("Attention", "Vous devez sélectionner un projet", null);
409
		} else {
410
			String message = "Voulez-vous vraiment supprimer ces projets ?";
411
			if (projetListe.size() == 1) {
412
				message = "Voulez-vous vraiment supprimer ce projet ?";
413
			}
414
 
415
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
416
				public void handleEvent(MessageBoxEvent ce) {
417
					Dialog dialog = (Dialog) ce.getComponent();
418
				    Button btn = ce.getButtonClicked();
419
 
420
				    if (btn.getText().equals(dialog.yesText)) {
421
				    	modele.supprimerProjet(panneauCentre.getContenu(), projetListe);
422
				    }
423
				}
424
			};
425
 
426
			MessageBox.confirm("Supprimer un projet", message, listenerSuppression);
427
		}
428
 
429
	}
430
 
431
	public void clicModifierProjet(List<Projet> projetsSelectionnes) {
432
		if (projetsSelectionnes.size() == 0) {
433
			Info.display("Information", "Veuillez sélectionner un projet.");
434
		} else if (projetsSelectionnes.size() > 1) {
435
			Info.display("Information", "Veuillez sélectionner un seul projet à la fois.");
436
		} else if (projetsSelectionnes.size() == 1) {
437
			afficherFormProjet(projetsSelectionnes.get(0).getId());
438
		} else {
439
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierProjet() du Médiateur.");
440
		}
441
	}
442
 
443
	public void clicAjouterProjet() {
444
		afficherFormProjet(null);
445
	}
446
 
447
	public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId) {
1045 gduche 448
		selectionnerProjet(vueARafraichir, projetId, null, 0, nbElements);
928 jpm 449
	}
1045 gduche 450
 
451
	public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId, String nom, int start, int nbElements) {
452
		modele.selectionnerProjet(vueARafraichir, projetId, nom, start, this.nbElements);
453
	}
928 jpm 454
 
455
	public void ajouterProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
456
		modele.ajouterProjet(vueARafraichir, projetCollecte);
457
	}
458
 
459
	public void modifierProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
460
		modele.modifierProjet(vueARafraichir, projetCollecte);
461
	}
462
 
463
	//+----------------------------------------------------------------------------------------------------------------+
464
	// SELECTION : projet
447 jp_milcent 465
	/**
466
	 * Retourne l'identifiant du projet courrant de l'application.
467
	 */
468
	public String getProjetId() {
469
		String id = null;
470
		Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
471
		if (projetCourant != null && !projetCourant.getId().equals("")) {
472
			id = projetCourant.getId();
473
		}
474
		return id;
475
	}
928 jpm 476
 
447 jp_milcent 477
	public void selectionnerProjetCourant(Projet projetSelectionne) {
478
		Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
928 jpm 479
		if (panneauCentre.getContenu() instanceof ProjetVue)	{
480
			selectionnerProjet(panneauCentre.getContenu(), null);
646 jp_milcent 481
		} else if (panneauCentre.getContenu() instanceof StructureVue)	{
928 jpm 482
			selectionnerStructure(panneauCentre.getContenu(), null);
646 jp_milcent 483
		} else if (panneauCentre.getContenu() instanceof CollectionVue)	{
1041 gduche 484
			selectionnerCollection(panneauCentre.getContenu(), null, null);
928 jpm 485
		} else if (panneauCentre.getContenu() instanceof PersonneVue) {
486
			selectionnerPersonne(panneauCentre.getContenu(), null, getProjetId());
487
		} else if (panneauCentre.getContenu() instanceof PublicationVue) {
488
			selectionnerPublication(panneauCentre.getContenu(), null);
987 jpm 489
		} else if (panneauCentre.getContenu() instanceof CommentaireVue) {
490
			selectionnerCommentaire(panneauCentre.getContenu(), null);
447 jp_milcent 491
		}
492
	}
493
 
928 jpm 494
 
447 jp_milcent 495
	//+----------------------------------------------------------------------------------------------------------------+
496
	//												GESTION DES STRUCTURES
497
	//+----------------------------------------------------------------------------------------------------------------+
498
 
453 jp_milcent 499
	public void afficherListeStructures(StructureListe structuresACharger) {
646 jp_milcent 500
		if (!(panneauCentre.getContenu() instanceof StructureVue))	{
626 gduche 501
			panneauCentre.removeAll();
646 jp_milcent 502
			panneauCentre.add(new StructureVue(this));
626 gduche 503
		}
646 jp_milcent 504
		panneauCentre.getContenu().rafraichir(structuresACharger);
453 jp_milcent 505
	}
506
 
580 jp_milcent 507
	public void afficherFormStructure(String structureId) {
641 jp_milcent 508
		String mode = Formulaire.MODE_AJOUTER;
580 jp_milcent 509
		if (structureId != null) {
641 jp_milcent 510
			mode = Formulaire.MODE_MODIFIER;
580 jp_milcent 511
		}
512
 
513
		panneauCentre.removeAll();
514
		StructureForm structureForm = new StructureForm(this, mode);
515
		panneauCentre.add(structureForm);
516
 
641 jp_milcent 517
		if (mode.equals(Formulaire.MODE_MODIFIER)) {
580 jp_milcent 518
			selectionnerStructure(structureForm, structureId);
519
			selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE);
520
		}
521
 
522
		panneauCentre.layout();
523
	}
524
 
447 jp_milcent 525
	public void clicListeStructure(Structure structure) {
646 jp_milcent 526
		panneauCentre.getContenu().rafraichir(structure);
609 jp_milcent 527
		if (structure != null && structure.getPersonnel() == null) {
646 jp_milcent 528
			selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE);
919 jpm 529
		}
447 jp_milcent 530
	}
531
 
532
	public void clicAjouterStructure() {
580 jp_milcent 533
		afficherFormStructure(null);
447 jp_milcent 534
	}
535
 
536
	public void clicModifierStructure(List<Structure> structureSelection) {
537
		if (structureSelection.size() == 0) {
538
			Info.display("Information", "Veuillez sélectionner une structure.");
539
		} else if (structureSelection.size() > 1) {
540
			Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
541
		} else if (structureSelection.size() == 1) {
609 jp_milcent 542
			afficherFormStructure(structureSelection.get(0).getId());
447 jp_milcent 543
		} else {
544
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
545
		}
546
	}
547
 
548
	public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
549
		if (structureSelection.size() == 0) {
550
			Info.display("Information", "Veuillez sélectionner une structure.");
551
		} else if(structureSelection.size() > 0) {
609 jp_milcent 552
			String titre = "Supprimer des structures";
447 jp_milcent 553
			String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
554
			if (structureSelection.size() == 1) {
609 jp_milcent 555
				titre = "Supprimer une structure";
447 jp_milcent 556
				message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
557
			}
558
 
502 gduche 559
			final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
560
				public void handleEvent(MessageBoxEvent ce) {
561
					Dialog dialog = (Dialog) ce.getComponent();
562
					Button btn = ce.getButtonClicked();
453 jp_milcent 563
 
564
					if (btn.getText().equals(dialog.yesText))	{
565
						String idStr = "" ;
566
						for(int i = 0 ; i < structureSelection.size() ; i++) {
609 jp_milcent 567
							idStr += structureSelection.get(i).getId()+",";
453 jp_milcent 568
						}
923 jpm 569
						supprimerStructure(vue, idStr);
453 jp_milcent 570
					}
571
				}
572
			};
447 jp_milcent 573
 
609 jp_milcent 574
			MessageBox.confirm(titre, message, suppressionEcouteur);
447 jp_milcent 575
		} else {
576
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
577
		}
578
	}
579
 
769 jpm 580
	public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId) {
1040 gduche 581
		modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, null, 0, nbElements);
447 jp_milcent 582
	}
583
 
1040 gduche 584
	public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, String projetId, String nom, int start, int nbElements)	{
585
		modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, nom, start, nbElements);
586
	}
587
 
775 jpm 588
	public void selectionnerStructureParProjet(Rafraichissable vueARafraichir, String projetId) {
1040 gduche 589
		modele.selectionnerStructure(vueARafraichir, projetId, null, null, 0, -1);
775 jpm 590
	}
591
 
769 jpm 592
	public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
593
		modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
447 jp_milcent 594
	}
595
 
769 jpm 596
	public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
597
		modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
447 jp_milcent 598
	}
453 jp_milcent 599
 
600
	public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
769 jpm 601
		modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
453 jp_milcent 602
	}
603
 
447 jp_milcent 604
	//+----------------------------------------------------------------------------------------------------------------+
605
	// GESTION de la relation STRUCTURE A PERSONNE
769 jpm 606
	public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId) {
607
		modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId);
447 jp_milcent 608
	}
609
 
769 jpm 610
	public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
453 jp_milcent 611
		if (personnelAjoute != null && personnelAjoute.size() > 0) {
612
			for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
769 jpm 613
				modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
453 jp_milcent 614
			}
615
		}
616
	}
617
 
769 jpm 618
	public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
447 jp_milcent 619
		if (personnelModifie != null && personnelModifie.size() > 0) {
620
			for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
769 jpm 621
				modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
447 jp_milcent 622
			}
623
		}
624
	}
625
 
769 jpm 626
	public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
447 jp_milcent 627
		if (personnelSupprime != null && personnelSupprime.size() > 0) {
769 jpm 628
			String idStructureAPersonneSepareParVirgule = "" ;
923 jpm 629
			Iterator<String> it = personnelSupprime.keySet().iterator();
630
			while (it.hasNext()) {
901 jpm 631
				idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId();
923 jpm 632
				idStructureAPersonneSepareParVirgule += (it.hasNext()) ? "," : "";
447 jp_milcent 633
			}
923 jpm 634
			supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
447 jp_milcent 635
		}
636
	}
923 jpm 637
 
638
	public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String idStructureAPersonneSeparesParVirgule) {
639
		modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSeparesParVirgule);
640
	}
641
 
642
	public void supprimerStructureAPersonne(final Rafraichissable vueARafraichir, final List<Structure> structuresListe) {
643
		if (structuresListe.size() != 0) {
644
			String idStructureSepareParVirgule = "" ;
645
			Iterator<Structure> it = structuresListe.iterator();
646
			while (it.hasNext()) {
647
				Structure structure = it.next();
648
				idStructureSepareParVirgule += structure.getId();
649
				idStructureSepareParVirgule += it.hasNext() ? "," : "";
650
			}
651
			supprimerStructureAPersonne(vueARafraichir, idStructureSepareParVirgule);
652
		}
653
	}
654
 
447 jp_milcent 655
	//+----------------------------------------------------------------------------------------------------------------+
656
	//												GESTION des COLLECTIONS
657
	//+----------------------------------------------------------------------------------------------------------------+
658
 
453 jp_milcent 659
	public void afficherListeCollections(CollectionListe collectionsACharger) {
646 jp_milcent 660
		if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
626 gduche 661
			panneauCentre.removeAll();
646 jp_milcent 662
			panneauCentre.add(new CollectionVue(this));
663
		}
626 gduche 664
 
646 jp_milcent 665
		panneauCentre.getContenu().rafraichir(collectionsACharger);
453 jp_milcent 666
	}
667
 
641 jp_milcent 668
	public void afficherFormCollection(String collectionId) {
669
		panneauCentre.removeAll();
883 jpm 670
		CollectionForm collectionForm = new CollectionForm(this, collectionId);
641 jp_milcent 671
		panneauCentre.add(collectionForm);
672
 
673
		panneauCentre.layout();
674
	}
675
 
453 jp_milcent 676
	public void clicListeCollection(Collection collectionCliquee) {
646 jp_milcent 677
		panneauCentre.getContenu().rafraichir(collectionCliquee);
883 jpm 678
		if (collectionCliquee != null) {
679
			selectionnerCollectionAPersonne(panneauCentre.getContenu(), collectionCliquee.getId(), null);
680
			selectionnerCollectionAPublication(panneauCentre.getContenu(), collectionCliquee.getId());
997 jpm 681
			selectionnerCollectionACommentaire(panneauCentre.getContenu(), collectionCliquee.getId());
883 jpm 682
		}
453 jp_milcent 683
	}
684
 
447 jp_milcent 685
	public void clicAjouterCollection() {
775 jpm 686
		afficherFormCollection(null);
447 jp_milcent 687
	}
688
 
689
	public void clicModifierCollection(List<Collection> selection) {
641 jp_milcent 690
		if (selection.size() == 0) {
691
			Info.display("Information", "Veuillez sélectionner une collection.");
692
		} else if (selection.size() > 1) {
693
			Info.display("Information", "Veuillez sélectionner une seule collection à la fois.");
694
		} else if (selection.size() == 1) {
695
			afficherFormCollection(selection.get(0).getId());
696
		} else {
697
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
698
		}
447 jp_milcent 699
	}
700
 
968 jpm 701
	public void clicSupprimerCollection(CollectionListeVue collectionListeVue, final List<Collection> collectionsASupprimer) {
702
		if (collectionsASupprimer.size() <= 0) {
703
			MessageBox.alert("Attention", "Vous devez sélectionner au moins une collection", null);
704
		} else {
705
			String message = "Voulez-vous vraiment supprimer ces collections ?";
706
			if (collectionsASupprimer.size() == 1) {
707
				message = "Voulez-vous vraiment supprimer cette collection ?";
708
			}
709
 
710
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
711
				public void handleEvent(MessageBoxEvent ce) {
712
					Dialog dialog = (Dialog) ce.getComponent();
713
				    Button btn = ce.getButtonClicked();
714
 
715
				    if (btn.getText().equals(dialog.yesText)) {
716
				    	supprimerCollection(panneauCentre.getContenu(), collectionsASupprimer);
717
				    }
718
				}
719
			};
720
 
721
			MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
722
		}
447 jp_milcent 723
	}
724
 
1041 gduche 725
	public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom) {
726
 
727
		System.out.println(nbElements);
728
		selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements);
453 jp_milcent 729
	}
730
 
1041 gduche 731
	public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements)	{
732
		modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId, nom, start, this.nbElements);
733
	}
734
 
775 jpm 735
	public void selectionnerCollectionParProjet(Rafraichissable vueARafraichir, String projetId) {
1041 gduche 736
		modele.selectionnerCollection(vueARafraichir, projetId, null, null, 0, nbElements);
775 jpm 737
	}
738
 
453 jp_milcent 739
	public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
968 jpm 740
		modele.ajouterCollection(vueARafraichir, collection);
453 jp_milcent 741
	}
742
 
743
	public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
872 jpm 744
		modele.modifierCollection(vueARafraichir, collection);
453 jp_milcent 745
	}
746
 
968 jpm 747
	public void supprimerCollection(Rafraichissable vueARafraichir, List<Collection> collectionsListe) {
748
		if (collectionsListe != null && collectionsListe.size() > 0) {
749
			String idCollectionSeparesParVirgule = "" ;
750
			Iterator<Collection> it = collectionsListe.iterator();
751
			while (it.hasNext()) {
752
				idCollectionSeparesParVirgule += it.next().getId();
753
				if (it.hasNext()) {
754
					idCollectionSeparesParVirgule += ",";
755
				}
756
			}
757
			modele.supprimerCollection(vueARafraichir, idCollectionSeparesParVirgule);
758
			modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionSeparesParVirgule);
759
			modele.supprimerCollectionAPublication(vueARafraichir, idCollectionSeparesParVirgule);
760
			//modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionSeparesParVirgule);
761
		}
762
 
453 jp_milcent 763
	}
764
 
447 jp_milcent 765
	//+----------------------------------------------------------------------------------------------------------------+
875 jpm 766
	// GESTION de la relation COLLECTION A PERSONNE
767
 
768
	public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId) {
769
		modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId);
770
	}
771
 
772
	public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonneListe personnesAjoutees) {
773
		if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
774
			for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
775
				modele.ajouterCollectionAPersonne(vueARafraichir, collectionId, (CollectionAPersonne) personnesAjoutees.get(it.next()));
776
			}
777
		}
778
	}
779
 
780
	public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesModifiees) {
781
		if (personnesModifiees != null && personnesModifiees.size() > 0) {
782
			for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
783
				modele.modifierCollectionAPersonne(vueARafraichir, (CollectionAPersonne) personnesModifiees.get(it.next()));
784
			}
785
		}
786
	}
787
 
788
	public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesSupprimees) {
789
		if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
790
			String idCollectionAPersonneSeparesParVirgule = "" ;
791
			for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
901 jpm 792
				idCollectionAPersonneSeparesParVirgule += personnesSupprimees.get(it.next()).getId();
793
				if (it.hasNext()) {
794
					idCollectionAPersonneSeparesParVirgule += ",";
795
				}
875 jpm 796
			}
797
			modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionAPersonneSeparesParVirgule);
798
		}
799
	}
800
 
801
	//+----------------------------------------------------------------------------------------------------------------+
802
	// GESTION de la relation COLLECTION A PUBLICATION
803
 
883 jpm 804
	public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId) {
805
		modele.selectionnerCollectionAPublication(vueARafraichir, collectionId);
806
	}
807
 
808
	public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublicationListe publicationsAjoutees) {
809
		if (publicationsAjoutees != null && publicationsAjoutees.size() > 0) {
810
			for (Iterator<String> it = publicationsAjoutees.keySet().iterator(); it.hasNext();) {
811
				modele.ajouterCollectionAPublication(vueARafraichir, collectionId, (CollectionAPublication) publicationsAjoutees.get(it.next()));
812
			}
813
		}
814
	}
815
 
816
	public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsModifiees) {
817
		if (publicationsModifiees != null && publicationsModifiees.size() > 0) {
818
			for (Iterator<String> it = publicationsModifiees.keySet().iterator(); it.hasNext();) {
819
				modele.modifierCollectionAPublication(vueARafraichir, (CollectionAPublication) publicationsModifiees.get(it.next()));
820
			}
821
		}
822
	}
823
 
907 jpm 824
	public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsSupprimees) {
883 jpm 825
		if (publicationsSupprimees != null && publicationsSupprimees.size() > 0) {
826
			String idCollectionAPublicationSeparesParVirgule = "" ;
827
			for (Iterator<String> it = publicationsSupprimees.keySet().iterator(); it.hasNext();) {
901 jpm 828
				idCollectionAPublicationSeparesParVirgule += publicationsSupprimees.get(it.next()).getId();
829
				if (it.hasNext()) {
830
					idCollectionAPublicationSeparesParVirgule += ",";
831
				}
883 jpm 832
			}
833
			modele.supprimerCollectionAPublication(vueARafraichir, idCollectionAPublicationSeparesParVirgule);
834
		}
835
	}
941 jpm 836
 
875 jpm 837
	//+----------------------------------------------------------------------------------------------------------------+
838
	// GESTION de la relation COLLECTION A COMMENTAIRE
839
 
997 jpm 840
	public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId) {
841
		modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId);
989 jpm 842
	}
843
 
997 jpm 844
	public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaireListe commentairesAjoutees) {
989 jpm 845
		if (commentairesAjoutees != null && commentairesAjoutees.size() > 0) {
846
			for (Iterator<String> it = commentairesAjoutees.keySet().iterator(); it.hasNext();) {
997 jpm 847
				modele.ajouterCollectionACommentaire(vueARafraichir, collectionId, (CollectionACommentaire) commentairesAjoutees.get(it.next()));
989 jpm 848
			}
849
		}
850
	}
851
 
852
	public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesModifiees) {
853
		if (commentairesModifiees != null && commentairesModifiees.size() > 0) {
854
			for (Iterator<String> it = commentairesModifiees.keySet().iterator(); it.hasNext();) {
855
				modele.modifierCollectionACommentaire(vueARafraichir, (CollectionACommentaire) commentairesModifiees.get(it.next()));
856
			}
857
		}
858
	}
859
 
860
	public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesSupprimees) {
861
		if (commentairesSupprimees != null && commentairesSupprimees.size() > 0) {
862
			String idCollectionACommentaireSeparesParVirgule = "" ;
863
			for (Iterator<String> it = commentairesSupprimees.keySet().iterator(); it.hasNext();) {
864
				idCollectionACommentaireSeparesParVirgule += commentairesSupprimees.get(it.next()).getId();
865
				if (it.hasNext()) {
866
					idCollectionACommentaireSeparesParVirgule += ",";
867
				}
868
			}
869
			modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionACommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COLLECTION);
870
		}
871
	}
875 jpm 872
	//+----------------------------------------------------------------------------------------------------------------+
156 jp_milcent 873
	//												GESTION DES PERSONNES
874
	//+----------------------------------------------------------------------------------------------------------------+
875
 
278 jp_milcent 876
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
646 jp_milcent 877
		if (!(panneauCentre.getContenu() instanceof PersonneVue))	{
626 gduche 878
			panneauCentre.removeAll();
646 jp_milcent 879
			panneauCentre.add(new PersonneVue(this));
673 aurelien 880
			panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
626 gduche 881
		}
599 gduche 882
 
646 jp_milcent 883
		panneauCentre.getContenu().rafraichir(personnesACharger);
156 jp_milcent 884
	}
918 jpm 885
 
886
	public void afficherFormPersonne(String personneId)	{
887
		panneauCentre.removeAll();
888
		PersonneForm personneForm = new PersonneForm(this, personneId);
889
		panneauCentre.add(personneForm);
890
 
891
		panneauCentre.layout();
892
	}
156 jp_milcent 893
 
918 jpm 894
	public void clicListePersonne(Personne personne)	{
895
		panneauCentre.getContenu().rafraichir(personne);
896
	}
897
 
128 gduche 898
	public void clicAjouterPersonne()	{
918 jpm 899
		afficherFormPersonne(null);
128 gduche 900
	}
901
 
918 jpm 902
	public void clicModifierPersonne(List<Personne> selection)	{
903
		if (selection.size() == 0) {
904
			Info.display("Information", "Veuillez sélectionner une personne.");
905
		} else if (selection.size() > 1) {
906
			Info.display("Information", "Veuillez sélectionner une seule personne à la fois.");
907
		} else if (selection.size() == 1) {
908
			afficherFormPersonne(selection.get(0).getId());
909
		} else {
910
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPersonne() du Médiateur.");
911
		}
841 gduche 912
	}
913
 
285 gduche 914
 
919 jpm 915
	public void clicSupprimerPersonne(final Rafraichissable vue, final List<Personne> personneSelection) {
663 gduche 916
		//Empecher suppression utilisateur
917
		for (int i=0; i < personneSelection.size(); i++)	{
918
			Personne courante = personneSelection.get(i);
919
			if (courante.getId().equals(getUtilisateurId()))	{
772 jpm 920
				Info.display("Information", "Vous ne pouvez pas supprimer votre compte");
663 gduche 921
				personneSelection.remove(courante);
922
			}
923
		}
924
 
245 jp_milcent 925
		if (personneSelection.size() == 0) {
926
			Info.display("Information", "Veuillez sélectionner une personne.");
927
		} else if(personneSelection.size() > 0) {
928
			String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
929
			if (personneSelection.size() == 1) {
930
				message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
931
			}
315 gduche 932
 
502 gduche 933
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
934
				public void handleEvent(MessageBoxEvent ce) {
935
					Dialog dialog = (Dialog) ce.getComponent();
936
					Button btn = ce.getButtonClicked();
327 jp_milcent 937
 
938
					if (btn.getText().equals(dialog.yesText)) {
772 jpm 939
						String idPersonneSepareParVirgule = "" ;
347 gduche 940
						Iterator<Personne> itPersonne = personneSelection.iterator();
941
						while (itPersonne.hasNext()) {
942
							Personne personneCourante = itPersonne.next();
772 jpm 943
							idPersonneSepareParVirgule += personneCourante.getId();
944
							idPersonneSepareParVirgule +=",";
327 jp_milcent 945
						}
772 jpm 946
						modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
327 jp_milcent 947
					}
948
				}
949
			};
453 jp_milcent 950
 
315 gduche 951
			MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
245 jp_milcent 952
		} else {
953
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
954
		}
955
	}
277 jp_milcent 956
 
918 jpm 957
	public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId)	{
958
		selectionnerPersonne(vueARafraichir, personne, projetId, 0, nbElements);
775 jpm 959
	}
960
 
918 jpm 961
	public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId, int start, int nbElements)	{
775 jpm 962
		String personneId = null;
1040 gduche 963
		String personneNom = null;
775 jpm 964
		if (personne != null)	{
965
			personneId = personne.getId();
1040 gduche 966
			personneNom = personne.getNom();
775 jpm 967
		}
1040 gduche 968
		modele.selectionnerPersonne(vueARafraichir, personneId, projetId, personneNom, start, nbElements);
775 jpm 969
	}
970
 
599 gduche 971
	public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
972
		modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
277 jp_milcent 973
	}
245 jp_milcent 974
 
775 jpm 975
	public void selectionnerPersonneParProjet(Rafraichissable vueARafraichir, String projetId) {
976
		modele.selectionnerPersonne(vueARafraichir, null, projetId, null, 0, -1);
977
	}
978
 
389 gduche 979
	public void enregistrerPersonne(Rafraichissable vue, Personne personne){
774 jpm 980
		if (personne.getId() != null && !personne.getId().trim().equals("")) {
429 gduche 981
			modele.modifierPersonne(vue, personne);
982
		}	else {
983
			modele.ajouterPersonne(vue, personne);
984
		}
389 gduche 985
	}
986
 
156 jp_milcent 987
	//+----------------------------------------------------------------------------------------------------------------+
988
	//												GESTION DES PUBLICATIONS
989
	//+----------------------------------------------------------------------------------------------------------------+
990
 
107 aurelien 991
	public void afficherListePublication(PublicationListe nouvelleDonnees) {
673 aurelien 992
		if (!(panneauCentre.getContenu() instanceof PublicationVue))	{
626 gduche 993
			panneauCentre.removeAll();
918 jpm 994
			panneauCentre.add(new PublicationVue(this));
626 gduche 995
		}
996
 
646 jp_milcent 997
		panneauCentre.getContenu().rafraichir(nouvelleDonnees);
107 aurelien 998
	}
715 aurelien 999
 
775 jpm 1000
	public void afficherFormPublication(String publicationId) {
1001
		panneauCentre.removeAll();
781 jpm 1002
		PublicationForm publicationForm = new PublicationForm(this, publicationId);
775 jpm 1003
		panneauCentre.add(publicationForm);
1004
 
1005
		panneauCentre.layout();
715 aurelien 1006
	}
775 jpm 1007
 
107 aurelien 1008
	public void clicListePublication(Publication publication) {
775 jpm 1009
		if (publication != null) {
675 aurelien 1010
			panneauCentre.getContenu().rafraichir(publication);
1011
		}
107 aurelien 1012
	}
1013
 
1014
	public void clicAjouterPublication() {
775 jpm 1015
		afficherFormPublication(null);
107 aurelien 1016
	}
156 jp_milcent 1017
 
775 jpm 1018
	public void clicModifierPublication(List<Publication> selection) {
1019
		if (selection.size() == 0) {
1020
			Info.display("Information", "Veuillez sélectionner une publication.");
1021
		} else if (selection.size() > 1) {
1022
			Info.display("Information", "Veuillez sélectionner une seule publication à la fois.");
1023
		} else if (selection.size() == 1) {
1024
			afficherFormPublication(selection.get(0).getId());
379 jp_milcent 1025
		} else {
775 jpm 1026
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPublication() du Médiateur.");
245 jp_milcent 1027
		}
1028
	}
1029
 
315 gduche 1030
	public void clicSupprimerPublication(final List<Publication> publicationListe) {
453 jp_milcent 1031
		if (publicationListe.size() <= 0) {
315 gduche 1032
			MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
379 jp_milcent 1033
		} else {
673 aurelien 1034
			String message = "Voulez-vous vraiment supprimer ces publications ?";
775 jpm 1035
			if (publicationListe.size() == 1) {
245 jp_milcent 1036
				message = "Voulez-vous vraiment supprimer cette publication ?";
1037
			}
315 gduche 1038
 
502 gduche 1039
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
1040
				public void handleEvent(MessageBoxEvent ce) {
1041
					Dialog dialog = (Dialog) ce.getComponent();
1042
				    Button btn = ce.getButtonClicked();
315 gduche 1043
 
379 jp_milcent 1044
				    if (btn.getText().equals(dialog.yesText)) {
919 jpm 1045
				    	supprimerPublication(panneauCentre.getContenu(), publicationListe);
315 gduche 1046
				    }
1047
				}
1048
			};
1049
 
1050
			MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
245 jp_milcent 1051
		}
1052
	}
709 jp_milcent 1053
 
1054
	public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId) {
1046 gduche 1055
		selectionnerPublication(vueARafraichir, getProjetId(), publicationId, null, 0, nbElements);
709 jp_milcent 1056
	}
1057
 
1058
	public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
1046 gduche 1059
		selectionnerPublication(vueARafraichir, projetId, null, nomComplet, 0, nbElements);
709 jp_milcent 1060
	}
1061
 
1046 gduche 1062
	public void selectionnerPublication(Rafraichissable vueARafraichir, String projetId, String publicationId, String nomComplet, int pageCourante, int nbElements) {
1063
		modele.selectionnerPublication(vueARafraichir, publicationId, projetId, nomComplet, nbElements, pageCourante);
1064
	}
1065
 
786 jpm 1066
	public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication) {
1067
		modele.ajouterPublication(vueARafraichir, publication);
245 jp_milcent 1068
	}
1069
 
786 jpm 1070
	public void modifierPublication(Rafraichissable vueARafraichir, Publication publication) {
1071
		modele.modifierPublication(vueARafraichir, publication);
245 jp_milcent 1072
	}
919 jpm 1073
 
1074
	public void supprimerPublication(Rafraichissable vueARafraichir, List<Publication> publicationsListe) {
1075
		if (publicationsListe != null && publicationsListe.size() > 0) {
1076
			String idPublicationSeparesParVirgule = "" ;
1077
			Iterator<Publication> it = publicationsListe.iterator();
1078
			while (it.hasNext()) {
1079
				idPublicationSeparesParVirgule += it.next().getId();
1080
				if (it.hasNext()) {
1081
					idPublicationSeparesParVirgule += ",";
1082
				}
1083
			}
1084
			modele.supprimerPublication(vueARafraichir, idPublicationSeparesParVirgule);
1085
			modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationSeparesParVirgule);
1086
		}
1087
	}
245 jp_milcent 1088
 
453 jp_milcent 1089
	public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
775 jpm 1090
		selectionnerStructureParProjet(vueARafraichir, null);
245 jp_milcent 1091
	}
1092
 
453 jp_milcent 1093
	public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
775 jpm 1094
		selectionnerPersonneParProjet(vueARafraichir, null);
245 jp_milcent 1095
	}
1096
 
156 jp_milcent 1097
	//+----------------------------------------------------------------------------------------------------------------+
822 jpm 1098
	// GESTION de la relation PUBLICATION A PERSONNE
1099
 
1100
	public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
1101
		modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleId);
1102
	}
1103
 
1014 gduche 1104
	public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, List roleId) {
1105
		String roleIds = "";
1106
		Iterator<Valeur> itRole = roleId.iterator();
1107
		while (itRole.hasNext())	{
1108
			roleIds+= itRole.next().getId();
1109
			if (itRole.hasNext())	{
1110
				roleIds+=",";
1111
			}
1112
		}
1113
		modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleIds);
1114
	}
1115
 
901 jpm 1116
	public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesAjoutees, String roleId) {
1117
		if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
1118
			String idPublicationAPersonneSepareParVirgule = "" ;
1119
			for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
1120
				idPublicationAPersonneSepareParVirgule += personnesAjoutees.get(it.next()).getIdPersonne();
1121
				if (it.hasNext()) {
1122
					idPublicationAPersonneSepareParVirgule += ",";
1123
				}
1124
			}
1125
			modele.ajouterPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, roleId);
1126
		}
822 jpm 1127
	}
901 jpm 1128
 
1129
	public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe personnesSupprimees) {
1130
		if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
1131
			String idPublicationAPersonneSepareParVirgule = "" ;
1132
			for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
1133
				idPublicationAPersonneSepareParVirgule += personnesSupprimees.get(it.next()).getId();
1134
				if (it.hasNext()) {
1135
					idPublicationAPersonneSepareParVirgule += ",";
1136
				}
1137
			}
968 jpm 1138
			modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationAPersonneSepareParVirgule);
901 jpm 1139
		}
822 jpm 1140
	}
1141
 
996 gduche 1142
	//Lier plusieurs publication à une personne
1143
	public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe listePublications, String personneId, String roleId) {
1144
		if (listePublications!=null && listePublications.size()>0)	{
1145
			String idsPubli = "";
1014 gduche 1146
			String rolesIds = "";
996 gduche 1147
			for (Iterator<String> it = listePublications.keySet().iterator(); it.hasNext();) {
1014 gduche 1148
				PublicationAPersonne publi = listePublications.get(it.next());
1149
				idsPubli += publi.getId();
1150
				rolesIds += publi.getRole();
996 gduche 1151
				if (it.hasNext()) {
1152
					idsPubli += ",";
1014 gduche 1153
					rolesIds += ",";
996 gduche 1154
				}
1155
			}
1014 gduche 1156
			modele.ajouterPublicationAPersonne(vueARafraichir, idsPubli, personneId, rolesIds);
996 gduche 1157
		}
1158
	}
1159
 
822 jpm 1160
	//+----------------------------------------------------------------------------------------------------------------+
985 jpm 1161
	//												GESTION DES COMMENTAIRES
1162
	//+----------------------------------------------------------------------------------------------------------------+
1163
 
1164
	public void afficherListeCommentaire(CommentaireListe nouvelleDonnees) {
1165
		if (!(panneauCentre.getContenu() instanceof CommentaireVue)) {
1166
			panneauCentre.removeAll();
1167
			panneauCentre.add(new CommentaireVue(this));
1168
		}
1169
 
1170
		panneauCentre.getContenu().rafraichir(nouvelleDonnees);
1171
	}
1172
 
1173
	public void afficherFormCommentaire(String commentaireId) {
1174
		panneauCentre.removeAll();
989 jpm 1175
		CommentaireForm commentaireForm = new CommentaireForm(this, commentaireId);
985 jpm 1176
		panneauCentre.add(commentaireForm);
1177
 
1178
		panneauCentre.layout();
1179
	}
1180
 
1181
	public void clicListeCommentaire(Commentaire commentaire) {
1182
		if (commentaire != null) {
1183
			panneauCentre.getContenu().rafraichir(commentaire);
1184
		}
1185
	}
1186
 
1187
	public void clicAjouterCommentaire() {
1188
		afficherFormCommentaire(null);
1189
	}
1190
 
1191
	public void clicModifierCommentaire(List<Commentaire> selection) {
1192
		if (selection.size() == 0) {
1193
			Info.display("Information", "Veuillez sélectionner un commentaire.");
1194
		} else if (selection.size() > 1) {
1195
			Info.display("Information", "Veuillez sélectionner un seul commentaire à la fois.");
1196
		} else if (selection.size() == 1) {
1197
			afficherFormCommentaire(selection.get(0).getId());
1198
		} else {
1199
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCommentaire() du Médiateur.");
1200
		}
1201
	}
1202
 
1203
	public void clicSupprimerCommentaire(final List<Commentaire> commentaireListe) {
1204
		if (commentaireListe.size() <= 0) {
1205
			MessageBox.alert("Attention", "Vous devez sélectionner un commentaire", null);
1206
		} else {
1207
			String message = "Voulez-vous vraiment supprimer ces commentaires ?";
1208
			if (commentaireListe.size() == 1) {
1209
				message = "Voulez-vous vraiment supprimer ce commentaire ?";
1210
			}
1211
 
1212
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
1213
				public void handleEvent(MessageBoxEvent ce) {
1214
					Dialog dialog = (Dialog) ce.getComponent();
1215
				    Button btn = ce.getButtonClicked();
1216
 
1217
				    if (btn.getText().equals(dialog.yesText)) {
1218
				    	supprimerCommentaire(panneauCentre.getContenu(), commentaireListe);
1219
				    }
1220
				}
1221
			};
1222
 
1223
			MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
1224
		}
1225
	}
1226
 
1227
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId) {
1048 gduche 1228
		selectionnerCommentaire(vueARafraichir, commentaireId, null, 0, nbElements);
985 jpm 1229
	}
1048 gduche 1230
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String titre, int pageCourante, int nbElements) {
1231
		modele.selectionnerCommentaire(vueARafraichir, commentaireId, getProjetId(), titre, pageCourante, nbElements);
1232
	}
985 jpm 1233
 
997 jpm 1234
	public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre) {
1048 gduche 1235
		selectionnerCommentaire(vueARafraichir, null, titre, 0, nbElements);
997 jpm 1236
	}
1237
 
985 jpm 1238
	public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
1239
		modele.ajouterCommentaire(vueARafraichir, commentaire);
1240
	}
1241
 
1242
	public void modifierCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
1243
		modele.modifierCommentaire(vueARafraichir, commentaire);
1244
	}
1245
 
1246
	public void supprimerCommentaire(Rafraichissable vueARafraichir, List<Commentaire> commentairesListe) {
1247
		if (commentairesListe != null && commentairesListe.size() > 0) {
1248
			String idCommentaireSeparesParVirgule = "" ;
1249
			Iterator<Commentaire> it = commentairesListe.iterator();
1250
			while (it.hasNext()) {
1251
				idCommentaireSeparesParVirgule += it.next().getId();
1252
				if (it.hasNext()) {
1253
					idCommentaireSeparesParVirgule += ",";
1254
				}
1255
			}
1256
			modele.supprimerCommentaire(vueARafraichir, idCommentaireSeparesParVirgule);
989 jpm 1257
			modele.supprimerCollectionACommentaire(vueARafraichir, idCommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COMMENTAIRE);
985 jpm 1258
		}
1259
	}
1260
 
1261
	//+----------------------------------------------------------------------------------------------------------------+
447 jp_milcent 1262
	//												RAFRAICHISSEMENT
156 jp_milcent 1263
	//+----------------------------------------------------------------------------------------------------------------+
1264
 
898 gduche 1265
	public void rafraichir(Object nouvellesDonnees) {
1266
		if (nouvellesDonnees instanceof Utilisateur) {
932 jpm 1267
			repandreEtatIdentification((Utilisateur) nouvellesDonnees);
1268
		} else if (nouvellesDonnees instanceof Information) {
1269
			Information info = (Information) nouvellesDonnees;
1270
			if (info.getType().equals("modification_personne")) {
1271
				repandreInfoMiseAJourUtilisateur();
1272
			}
1273
		} else {
898 gduche 1274
			GWT.log(i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
277 jp_milcent 1275
		}
1276
	}
281 gduche 1277
 
453 jp_milcent 1278
	//+----------------------------------------------------------------------------------------------------------------+
1279
	//												GESTION du STATUT
1280
	//+----------------------------------------------------------------------------------------------------------------+
288 gduche 1281
 
332 gduche 1282
	public void afficherPopinChargement()	{
1283
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
1284
	}
453 jp_milcent 1285
 
332 gduche 1286
	public void masquerPopinChargement()	{
1287
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
1288
	}
1063 gduche 1289
 
1290
	public String obtenirClasseContenu()	{
1291
		String classeContenu = null;
1292
		if (panneauCentre.getContenu() != null)	{
1293
			classeContenu = panneauCentre.getContenu().getClass().toString();
1294
		}
1295
		return classeContenu;
1296
	}
447 jp_milcent 1297
 
277 jp_milcent 1298
}