Subversion Repositories eFlore/Applications.coel

Rev

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