Subversion Repositories eFlore/Applications.coel

Rev

Rev 1040 | Rev 1045 | 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)) {
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)	{
1041 gduche 479
			selectionnerCollection(panneauCentre.getContenu(), null, null);
928 jpm 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
		modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, null, 0, nbElements);
447 jp_milcent 577
	}
578
 
1040 gduche 579
	public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, String projetId, String nom, int start, int nbElements)	{
580
		modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, nom, start, nbElements);
581
	}
582
 
775 jpm 583
	public void selectionnerStructureParProjet(Rafraichissable vueARafraichir, String projetId) {
1040 gduche 584
		modele.selectionnerStructure(vueARafraichir, projetId, null, null, 0, -1);
775 jpm 585
	}
586
 
769 jpm 587
	public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
588
		modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
447 jp_milcent 589
	}
590
 
769 jpm 591
	public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
592
		modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
447 jp_milcent 593
	}
453 jp_milcent 594
 
595
	public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
769 jpm 596
		modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
453 jp_milcent 597
	}
598
 
447 jp_milcent 599
	//+----------------------------------------------------------------------------------------------------------------+
600
	// GESTION de la relation STRUCTURE A PERSONNE
769 jpm 601
	public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId) {
602
		modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId);
447 jp_milcent 603
	}
604
 
769 jpm 605
	public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
453 jp_milcent 606
		if (personnelAjoute != null && personnelAjoute.size() > 0) {
607
			for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
769 jpm 608
				modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
453 jp_milcent 609
			}
610
		}
611
	}
612
 
769 jpm 613
	public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
447 jp_milcent 614
		if (personnelModifie != null && personnelModifie.size() > 0) {
615
			for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
769 jpm 616
				modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
447 jp_milcent 617
			}
618
		}
619
	}
620
 
769 jpm 621
	public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
447 jp_milcent 622
		if (personnelSupprime != null && personnelSupprime.size() > 0) {
769 jpm 623
			String idStructureAPersonneSepareParVirgule = "" ;
923 jpm 624
			Iterator<String> it = personnelSupprime.keySet().iterator();
625
			while (it.hasNext()) {
901 jpm 626
				idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId();
923 jpm 627
				idStructureAPersonneSepareParVirgule += (it.hasNext()) ? "," : "";
447 jp_milcent 628
			}
923 jpm 629
			supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
447 jp_milcent 630
		}
631
	}
923 jpm 632
 
633
	public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String idStructureAPersonneSeparesParVirgule) {
634
		modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSeparesParVirgule);
635
	}
636
 
637
	public void supprimerStructureAPersonne(final Rafraichissable vueARafraichir, final List<Structure> structuresListe) {
638
		if (structuresListe.size() != 0) {
639
			String idStructureSepareParVirgule = "" ;
640
			Iterator<Structure> it = structuresListe.iterator();
641
			while (it.hasNext()) {
642
				Structure structure = it.next();
643
				idStructureSepareParVirgule += structure.getId();
644
				idStructureSepareParVirgule += it.hasNext() ? "," : "";
645
			}
646
			supprimerStructureAPersonne(vueARafraichir, idStructureSepareParVirgule);
647
		}
648
	}
649
 
447 jp_milcent 650
	//+----------------------------------------------------------------------------------------------------------------+
651
	//												GESTION des COLLECTIONS
652
	//+----------------------------------------------------------------------------------------------------------------+
653
 
453 jp_milcent 654
	public void afficherListeCollections(CollectionListe collectionsACharger) {
646 jp_milcent 655
		if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
626 gduche 656
			panneauCentre.removeAll();
646 jp_milcent 657
			panneauCentre.add(new CollectionVue(this));
658
		}
626 gduche 659
 
646 jp_milcent 660
		panneauCentre.getContenu().rafraichir(collectionsACharger);
453 jp_milcent 661
	}
662
 
641 jp_milcent 663
	public void afficherFormCollection(String collectionId) {
664
		panneauCentre.removeAll();
883 jpm 665
		CollectionForm collectionForm = new CollectionForm(this, collectionId);
641 jp_milcent 666
		panneauCentre.add(collectionForm);
667
 
668
		panneauCentre.layout();
669
	}
670
 
453 jp_milcent 671
	public void clicListeCollection(Collection collectionCliquee) {
646 jp_milcent 672
		panneauCentre.getContenu().rafraichir(collectionCliquee);
883 jpm 673
		if (collectionCliquee != null) {
674
			selectionnerCollectionAPersonne(panneauCentre.getContenu(), collectionCliquee.getId(), null);
675
			selectionnerCollectionAPublication(panneauCentre.getContenu(), collectionCliquee.getId());
997 jpm 676
			selectionnerCollectionACommentaire(panneauCentre.getContenu(), collectionCliquee.getId());
883 jpm 677
		}
453 jp_milcent 678
	}
679
 
447 jp_milcent 680
	public void clicAjouterCollection() {
775 jpm 681
		afficherFormCollection(null);
447 jp_milcent 682
	}
683
 
684
	public void clicModifierCollection(List<Collection> selection) {
641 jp_milcent 685
		if (selection.size() == 0) {
686
			Info.display("Information", "Veuillez sélectionner une collection.");
687
		} else if (selection.size() > 1) {
688
			Info.display("Information", "Veuillez sélectionner une seule collection à la fois.");
689
		} else if (selection.size() == 1) {
690
			afficherFormCollection(selection.get(0).getId());
691
		} else {
692
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
693
		}
447 jp_milcent 694
	}
695
 
968 jpm 696
	public void clicSupprimerCollection(CollectionListeVue collectionListeVue, final List<Collection> collectionsASupprimer) {
697
		if (collectionsASupprimer.size() <= 0) {
698
			MessageBox.alert("Attention", "Vous devez sélectionner au moins une collection", null);
699
		} else {
700
			String message = "Voulez-vous vraiment supprimer ces collections ?";
701
			if (collectionsASupprimer.size() == 1) {
702
				message = "Voulez-vous vraiment supprimer cette collection ?";
703
			}
704
 
705
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
706
				public void handleEvent(MessageBoxEvent ce) {
707
					Dialog dialog = (Dialog) ce.getComponent();
708
				    Button btn = ce.getButtonClicked();
709
 
710
				    if (btn.getText().equals(dialog.yesText)) {
711
				    	supprimerCollection(panneauCentre.getContenu(), collectionsASupprimer);
712
				    }
713
				}
714
			};
715
 
716
			MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
717
		}
447 jp_milcent 718
	}
719
 
1041 gduche 720
	public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom) {
721
 
722
		System.out.println(nbElements);
723
		selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements);
453 jp_milcent 724
	}
725
 
1041 gduche 726
	public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements)	{
727
		modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId, nom, start, this.nbElements);
728
	}
729
 
775 jpm 730
	public void selectionnerCollectionParProjet(Rafraichissable vueARafraichir, String projetId) {
1041 gduche 731
		modele.selectionnerCollection(vueARafraichir, projetId, null, null, 0, nbElements);
775 jpm 732
	}
733
 
453 jp_milcent 734
	public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
968 jpm 735
		modele.ajouterCollection(vueARafraichir, collection);
453 jp_milcent 736
	}
737
 
738
	public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
872 jpm 739
		modele.modifierCollection(vueARafraichir, collection);
453 jp_milcent 740
	}
741
 
968 jpm 742
	public void supprimerCollection(Rafraichissable vueARafraichir, List<Collection> collectionsListe) {
743
		if (collectionsListe != null && collectionsListe.size() > 0) {
744
			String idCollectionSeparesParVirgule = "" ;
745
			Iterator<Collection> it = collectionsListe.iterator();
746
			while (it.hasNext()) {
747
				idCollectionSeparesParVirgule += it.next().getId();
748
				if (it.hasNext()) {
749
					idCollectionSeparesParVirgule += ",";
750
				}
751
			}
752
			modele.supprimerCollection(vueARafraichir, idCollectionSeparesParVirgule);
753
			modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionSeparesParVirgule);
754
			modele.supprimerCollectionAPublication(vueARafraichir, idCollectionSeparesParVirgule);
755
			//modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionSeparesParVirgule);
756
		}
757
 
453 jp_milcent 758
	}
759
 
447 jp_milcent 760
	//+----------------------------------------------------------------------------------------------------------------+
875 jpm 761
	// GESTION de la relation COLLECTION A PERSONNE
762
 
763
	public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId) {
764
		modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId);
765
	}
766
 
767
	public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonneListe personnesAjoutees) {
768
		if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
769
			for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
770
				modele.ajouterCollectionAPersonne(vueARafraichir, collectionId, (CollectionAPersonne) personnesAjoutees.get(it.next()));
771
			}
772
		}
773
	}
774
 
775
	public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesModifiees) {
776
		if (personnesModifiees != null && personnesModifiees.size() > 0) {
777
			for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
778
				modele.modifierCollectionAPersonne(vueARafraichir, (CollectionAPersonne) personnesModifiees.get(it.next()));
779
			}
780
		}
781
	}
782
 
783
	public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesSupprimees) {
784
		if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
785
			String idCollectionAPersonneSeparesParVirgule = "" ;
786
			for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
901 jpm 787
				idCollectionAPersonneSeparesParVirgule += personnesSupprimees.get(it.next()).getId();
788
				if (it.hasNext()) {
789
					idCollectionAPersonneSeparesParVirgule += ",";
790
				}
875 jpm 791
			}
792
			modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionAPersonneSeparesParVirgule);
793
		}
794
	}
795
 
796
	//+----------------------------------------------------------------------------------------------------------------+
797
	// GESTION de la relation COLLECTION A PUBLICATION
798
 
883 jpm 799
	public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId) {
800
		modele.selectionnerCollectionAPublication(vueARafraichir, collectionId);
801
	}
802
 
803
	public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublicationListe publicationsAjoutees) {
804
		if (publicationsAjoutees != null && publicationsAjoutees.size() > 0) {
805
			for (Iterator<String> it = publicationsAjoutees.keySet().iterator(); it.hasNext();) {
806
				modele.ajouterCollectionAPublication(vueARafraichir, collectionId, (CollectionAPublication) publicationsAjoutees.get(it.next()));
807
			}
808
		}
809
	}
810
 
811
	public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsModifiees) {
812
		if (publicationsModifiees != null && publicationsModifiees.size() > 0) {
813
			for (Iterator<String> it = publicationsModifiees.keySet().iterator(); it.hasNext();) {
814
				modele.modifierCollectionAPublication(vueARafraichir, (CollectionAPublication) publicationsModifiees.get(it.next()));
815
			}
816
		}
817
	}
818
 
907 jpm 819
	public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsSupprimees) {
883 jpm 820
		if (publicationsSupprimees != null && publicationsSupprimees.size() > 0) {
821
			String idCollectionAPublicationSeparesParVirgule = "" ;
822
			for (Iterator<String> it = publicationsSupprimees.keySet().iterator(); it.hasNext();) {
901 jpm 823
				idCollectionAPublicationSeparesParVirgule += publicationsSupprimees.get(it.next()).getId();
824
				if (it.hasNext()) {
825
					idCollectionAPublicationSeparesParVirgule += ",";
826
				}
883 jpm 827
			}
828
			modele.supprimerCollectionAPublication(vueARafraichir, idCollectionAPublicationSeparesParVirgule);
829
		}
830
	}
941 jpm 831
 
875 jpm 832
	//+----------------------------------------------------------------------------------------------------------------+
833
	// GESTION de la relation COLLECTION A COMMENTAIRE
834
 
997 jpm 835
	public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId) {
836
		modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId);
989 jpm 837
	}
838
 
997 jpm 839
	public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaireListe commentairesAjoutees) {
989 jpm 840
		if (commentairesAjoutees != null && commentairesAjoutees.size() > 0) {
841
			for (Iterator<String> it = commentairesAjoutees.keySet().iterator(); it.hasNext();) {
997 jpm 842
				modele.ajouterCollectionACommentaire(vueARafraichir, collectionId, (CollectionACommentaire) commentairesAjoutees.get(it.next()));
989 jpm 843
			}
844
		}
845
	}
846
 
847
	public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesModifiees) {
848
		if (commentairesModifiees != null && commentairesModifiees.size() > 0) {
849
			for (Iterator<String> it = commentairesModifiees.keySet().iterator(); it.hasNext();) {
850
				modele.modifierCollectionACommentaire(vueARafraichir, (CollectionACommentaire) commentairesModifiees.get(it.next()));
851
			}
852
		}
853
	}
854
 
855
	public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesSupprimees) {
856
		if (commentairesSupprimees != null && commentairesSupprimees.size() > 0) {
857
			String idCollectionACommentaireSeparesParVirgule = "" ;
858
			for (Iterator<String> it = commentairesSupprimees.keySet().iterator(); it.hasNext();) {
859
				idCollectionACommentaireSeparesParVirgule += commentairesSupprimees.get(it.next()).getId();
860
				if (it.hasNext()) {
861
					idCollectionACommentaireSeparesParVirgule += ",";
862
				}
863
			}
864
			modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionACommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COLLECTION);
865
		}
866
	}
875 jpm 867
	//+----------------------------------------------------------------------------------------------------------------+
156 jp_milcent 868
	//												GESTION DES PERSONNES
869
	//+----------------------------------------------------------------------------------------------------------------+
870
 
278 jp_milcent 871
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
646 jp_milcent 872
		if (!(panneauCentre.getContenu() instanceof PersonneVue))	{
626 gduche 873
			panneauCentre.removeAll();
646 jp_milcent 874
			panneauCentre.add(new PersonneVue(this));
673 aurelien 875
			panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
626 gduche 876
		}
599 gduche 877
 
646 jp_milcent 878
		panneauCentre.getContenu().rafraichir(personnesACharger);
156 jp_milcent 879
	}
918 jpm 880
 
881
	public void afficherFormPersonne(String personneId)	{
882
		panneauCentre.removeAll();
883
		PersonneForm personneForm = new PersonneForm(this, personneId);
884
		panneauCentre.add(personneForm);
885
 
886
		panneauCentre.layout();
887
	}
156 jp_milcent 888
 
918 jpm 889
	public void clicListePersonne(Personne personne)	{
890
		panneauCentre.getContenu().rafraichir(personne);
891
	}
892
 
128 gduche 893
	public void clicAjouterPersonne()	{
918 jpm 894
		afficherFormPersonne(null);
128 gduche 895
	}
896
 
918 jpm 897
	public void clicModifierPersonne(List<Personne> selection)	{
898
		if (selection.size() == 0) {
899
			Info.display("Information", "Veuillez sélectionner une personne.");
900
		} else if (selection.size() > 1) {
901
			Info.display("Information", "Veuillez sélectionner une seule personne à la fois.");
902
		} else if (selection.size() == 1) {
903
			afficherFormPersonne(selection.get(0).getId());
904
		} else {
905
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPersonne() du Médiateur.");
906
		}
841 gduche 907
	}
908
 
285 gduche 909
 
919 jpm 910
	public void clicSupprimerPersonne(final Rafraichissable vue, final List<Personne> personneSelection) {
663 gduche 911
		//Empecher suppression utilisateur
912
		for (int i=0; i < personneSelection.size(); i++)	{
913
			Personne courante = personneSelection.get(i);
914
			if (courante.getId().equals(getUtilisateurId()))	{
772 jpm 915
				Info.display("Information", "Vous ne pouvez pas supprimer votre compte");
663 gduche 916
				personneSelection.remove(courante);
917
			}
918
		}
919
 
245 jp_milcent 920
		if (personneSelection.size() == 0) {
921
			Info.display("Information", "Veuillez sélectionner une personne.");
922
		} else if(personneSelection.size() > 0) {
923
			String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
924
			if (personneSelection.size() == 1) {
925
				message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
926
			}
315 gduche 927
 
502 gduche 928
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
929
				public void handleEvent(MessageBoxEvent ce) {
930
					Dialog dialog = (Dialog) ce.getComponent();
931
					Button btn = ce.getButtonClicked();
327 jp_milcent 932
 
933
					if (btn.getText().equals(dialog.yesText)) {
772 jpm 934
						String idPersonneSepareParVirgule = "" ;
347 gduche 935
						Iterator<Personne> itPersonne = personneSelection.iterator();
936
						while (itPersonne.hasNext()) {
937
							Personne personneCourante = itPersonne.next();
772 jpm 938
							idPersonneSepareParVirgule += personneCourante.getId();
939
							idPersonneSepareParVirgule +=",";
327 jp_milcent 940
						}
772 jpm 941
						modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
327 jp_milcent 942
					}
943
				}
944
			};
453 jp_milcent 945
 
315 gduche 946
			MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
245 jp_milcent 947
		} else {
948
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
949
		}
950
	}
277 jp_milcent 951
 
918 jpm 952
	public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId)	{
953
		selectionnerPersonne(vueARafraichir, personne, projetId, 0, nbElements);
775 jpm 954
	}
955
 
918 jpm 956
	public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId, int start, int nbElements)	{
775 jpm 957
		String personneId = null;
1040 gduche 958
		String personneNom = null;
775 jpm 959
		if (personne != null)	{
960
			personneId = personne.getId();
1040 gduche 961
			personneNom = personne.getNom();
775 jpm 962
		}
1040 gduche 963
		modele.selectionnerPersonne(vueARafraichir, personneId, projetId, personneNom, start, nbElements);
775 jpm 964
	}
965
 
599 gduche 966
	public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
967
		modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
277 jp_milcent 968
	}
245 jp_milcent 969
 
775 jpm 970
	public void selectionnerPersonneParProjet(Rafraichissable vueARafraichir, String projetId) {
971
		modele.selectionnerPersonne(vueARafraichir, null, projetId, null, 0, -1);
972
	}
973
 
389 gduche 974
	public void enregistrerPersonne(Rafraichissable vue, Personne personne){
774 jpm 975
		if (personne.getId() != null && !personne.getId().trim().equals("")) {
429 gduche 976
			modele.modifierPersonne(vue, personne);
977
		}	else {
978
			modele.ajouterPersonne(vue, personne);
979
		}
389 gduche 980
	}
981
 
156 jp_milcent 982
	//+----------------------------------------------------------------------------------------------------------------+
983
	//												GESTION DES PUBLICATIONS
984
	//+----------------------------------------------------------------------------------------------------------------+
985
 
107 aurelien 986
	public void afficherListePublication(PublicationListe nouvelleDonnees) {
673 aurelien 987
		if (!(panneauCentre.getContenu() instanceof PublicationVue))	{
626 gduche 988
			panneauCentre.removeAll();
918 jpm 989
			panneauCentre.add(new PublicationVue(this));
626 gduche 990
		}
991
 
646 jp_milcent 992
		panneauCentre.getContenu().rafraichir(nouvelleDonnees);
107 aurelien 993
	}
715 aurelien 994
 
775 jpm 995
	public void afficherFormPublication(String publicationId) {
996
		panneauCentre.removeAll();
781 jpm 997
		PublicationForm publicationForm = new PublicationForm(this, publicationId);
775 jpm 998
		panneauCentre.add(publicationForm);
999
 
1000
		panneauCentre.layout();
715 aurelien 1001
	}
775 jpm 1002
 
107 aurelien 1003
	public void clicListePublication(Publication publication) {
775 jpm 1004
		if (publication != null) {
675 aurelien 1005
			panneauCentre.getContenu().rafraichir(publication);
1006
		}
107 aurelien 1007
	}
1008
 
1009
	public void clicAjouterPublication() {
775 jpm 1010
		afficherFormPublication(null);
107 aurelien 1011
	}
156 jp_milcent 1012
 
775 jpm 1013
	public void clicModifierPublication(List<Publication> selection) {
1014
		if (selection.size() == 0) {
1015
			Info.display("Information", "Veuillez sélectionner une publication.");
1016
		} else if (selection.size() > 1) {
1017
			Info.display("Information", "Veuillez sélectionner une seule publication à la fois.");
1018
		} else if (selection.size() == 1) {
1019
			afficherFormPublication(selection.get(0).getId());
379 jp_milcent 1020
		} else {
775 jpm 1021
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPublication() du Médiateur.");
245 jp_milcent 1022
		}
1023
	}
1024
 
315 gduche 1025
	public void clicSupprimerPublication(final List<Publication> publicationListe) {
453 jp_milcent 1026
		if (publicationListe.size() <= 0) {
315 gduche 1027
			MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
379 jp_milcent 1028
		} else {
673 aurelien 1029
			String message = "Voulez-vous vraiment supprimer ces publications ?";
775 jpm 1030
			if (publicationListe.size() == 1) {
245 jp_milcent 1031
				message = "Voulez-vous vraiment supprimer cette publication ?";
1032
			}
315 gduche 1033
 
502 gduche 1034
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
1035
				public void handleEvent(MessageBoxEvent ce) {
1036
					Dialog dialog = (Dialog) ce.getComponent();
1037
				    Button btn = ce.getButtonClicked();
315 gduche 1038
 
379 jp_milcent 1039
				    if (btn.getText().equals(dialog.yesText)) {
919 jpm 1040
				    	supprimerPublication(panneauCentre.getContenu(), publicationListe);
315 gduche 1041
				    }
1042
				}
1043
			};
1044
 
1045
			MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
245 jp_milcent 1046
		}
1047
	}
709 jp_milcent 1048
 
1049
	public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId) {
1050
		modele.selectionnerPublication(vueARafraichir, publicationId, getProjetId(), null);
1051
	}
1052
 
1053
	public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
1054
		modele.selectionnerPublication(vueARafraichir, null, projetId, nomComplet);
1055
	}
1056
 
786 jpm 1057
	public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication) {
1058
		modele.ajouterPublication(vueARafraichir, publication);
245 jp_milcent 1059
	}
1060
 
786 jpm 1061
	public void modifierPublication(Rafraichissable vueARafraichir, Publication publication) {
1062
		modele.modifierPublication(vueARafraichir, publication);
245 jp_milcent 1063
	}
919 jpm 1064
 
1065
	public void supprimerPublication(Rafraichissable vueARafraichir, List<Publication> publicationsListe) {
1066
		if (publicationsListe != null && publicationsListe.size() > 0) {
1067
			String idPublicationSeparesParVirgule = "" ;
1068
			Iterator<Publication> it = publicationsListe.iterator();
1069
			while (it.hasNext()) {
1070
				idPublicationSeparesParVirgule += it.next().getId();
1071
				if (it.hasNext()) {
1072
					idPublicationSeparesParVirgule += ",";
1073
				}
1074
			}
1075
			modele.supprimerPublication(vueARafraichir, idPublicationSeparesParVirgule);
1076
			modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationSeparesParVirgule);
1077
		}
1078
	}
245 jp_milcent 1079
 
453 jp_milcent 1080
	public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
775 jpm 1081
		selectionnerStructureParProjet(vueARafraichir, null);
245 jp_milcent 1082
	}
1083
 
453 jp_milcent 1084
	public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
775 jpm 1085
		selectionnerPersonneParProjet(vueARafraichir, null);
245 jp_milcent 1086
	}
1087
 
156 jp_milcent 1088
	//+----------------------------------------------------------------------------------------------------------------+
822 jpm 1089
	// GESTION de la relation PUBLICATION A PERSONNE
1090
 
1091
	public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
1092
		modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleId);
1093
	}
1094
 
1014 gduche 1095
	public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, List roleId) {
1096
		String roleIds = "";
1097
		Iterator<Valeur> itRole = roleId.iterator();
1098
		while (itRole.hasNext())	{
1099
			roleIds+= itRole.next().getId();
1100
			if (itRole.hasNext())	{
1101
				roleIds+=",";
1102
			}
1103
		}
1104
		modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleIds);
1105
	}
1106
 
901 jpm 1107
	public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesAjoutees, String roleId) {
1108
		if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
1109
			String idPublicationAPersonneSepareParVirgule = "" ;
1110
			for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
1111
				idPublicationAPersonneSepareParVirgule += personnesAjoutees.get(it.next()).getIdPersonne();
1112
				if (it.hasNext()) {
1113
					idPublicationAPersonneSepareParVirgule += ",";
1114
				}
1115
			}
1116
			modele.ajouterPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, roleId);
1117
		}
822 jpm 1118
	}
901 jpm 1119
 
1120
	public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe personnesSupprimees) {
1121
		if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
1122
			String idPublicationAPersonneSepareParVirgule = "" ;
1123
			for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
1124
				idPublicationAPersonneSepareParVirgule += personnesSupprimees.get(it.next()).getId();
1125
				if (it.hasNext()) {
1126
					idPublicationAPersonneSepareParVirgule += ",";
1127
				}
1128
			}
968 jpm 1129
			modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationAPersonneSepareParVirgule);
901 jpm 1130
		}
822 jpm 1131
	}
1132
 
996 gduche 1133
	//Lier plusieurs publication à une personne
1134
	public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe listePublications, String personneId, String roleId) {
1135
		if (listePublications!=null && listePublications.size()>0)	{
1136
			String idsPubli = "";
1014 gduche 1137
			String rolesIds = "";
996 gduche 1138
			for (Iterator<String> it = listePublications.keySet().iterator(); it.hasNext();) {
1014 gduche 1139
				PublicationAPersonne publi = listePublications.get(it.next());
1140
				idsPubli += publi.getId();
1141
				rolesIds += publi.getRole();
996 gduche 1142
				if (it.hasNext()) {
1143
					idsPubli += ",";
1014 gduche 1144
					rolesIds += ",";
996 gduche 1145
				}
1146
			}
1014 gduche 1147
			modele.ajouterPublicationAPersonne(vueARafraichir, idsPubli, personneId, rolesIds);
996 gduche 1148
		}
1149
	}
1150
 
822 jpm 1151
	//+----------------------------------------------------------------------------------------------------------------+
985 jpm 1152
	//												GESTION DES COMMENTAIRES
1153
	//+----------------------------------------------------------------------------------------------------------------+
1154
 
1155
	public void afficherListeCommentaire(CommentaireListe nouvelleDonnees) {
1156
		if (!(panneauCentre.getContenu() instanceof CommentaireVue)) {
1157
			panneauCentre.removeAll();
1158
			panneauCentre.add(new CommentaireVue(this));
1159
		}
1160
 
1161
		panneauCentre.getContenu().rafraichir(nouvelleDonnees);
1162
	}
1163
 
1164
	public void afficherFormCommentaire(String commentaireId) {
1165
		panneauCentre.removeAll();
989 jpm 1166
		CommentaireForm commentaireForm = new CommentaireForm(this, commentaireId);
985 jpm 1167
		panneauCentre.add(commentaireForm);
1168
 
1169
		panneauCentre.layout();
1170
	}
1171
 
1172
	public void clicListeCommentaire(Commentaire commentaire) {
1173
		if (commentaire != null) {
1174
			panneauCentre.getContenu().rafraichir(commentaire);
1175
		}
1176
	}
1177
 
1178
	public void clicAjouterCommentaire() {
1179
		afficherFormCommentaire(null);
1180
	}
1181
 
1182
	public void clicModifierCommentaire(List<Commentaire> selection) {
1183
		if (selection.size() == 0) {
1184
			Info.display("Information", "Veuillez sélectionner un commentaire.");
1185
		} else if (selection.size() > 1) {
1186
			Info.display("Information", "Veuillez sélectionner un seul commentaire à la fois.");
1187
		} else if (selection.size() == 1) {
1188
			afficherFormCommentaire(selection.get(0).getId());
1189
		} else {
1190
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCommentaire() du Médiateur.");
1191
		}
1192
	}
1193
 
1194
	public void clicSupprimerCommentaire(final List<Commentaire> commentaireListe) {
1195
		if (commentaireListe.size() <= 0) {
1196
			MessageBox.alert("Attention", "Vous devez sélectionner un commentaire", null);
1197
		} else {
1198
			String message = "Voulez-vous vraiment supprimer ces commentaires ?";
1199
			if (commentaireListe.size() == 1) {
1200
				message = "Voulez-vous vraiment supprimer ce commentaire ?";
1201
			}
1202
 
1203
			final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
1204
				public void handleEvent(MessageBoxEvent ce) {
1205
					Dialog dialog = (Dialog) ce.getComponent();
1206
				    Button btn = ce.getButtonClicked();
1207
 
1208
				    if (btn.getText().equals(dialog.yesText)) {
1209
				    	supprimerCommentaire(panneauCentre.getContenu(), commentaireListe);
1210
				    }
1211
				}
1212
			};
1213
 
1214
			MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
1215
		}
1216
	}
1217
 
1218
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId) {
997 jpm 1219
		modele.selectionnerCommentaire(vueARafraichir, commentaireId, getProjetId(), null);
985 jpm 1220
	}
1221
 
997 jpm 1222
	public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre) {
1223
		modele.selectionnerCommentaire(vueARafraichir, null, getProjetId(), titre);
1224
	}
1225
 
985 jpm 1226
	public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
1227
		modele.ajouterCommentaire(vueARafraichir, commentaire);
1228
	}
1229
 
1230
	public void modifierCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
1231
		modele.modifierCommentaire(vueARafraichir, commentaire);
1232
	}
1233
 
1234
	public void supprimerCommentaire(Rafraichissable vueARafraichir, List<Commentaire> commentairesListe) {
1235
		if (commentairesListe != null && commentairesListe.size() > 0) {
1236
			String idCommentaireSeparesParVirgule = "" ;
1237
			Iterator<Commentaire> it = commentairesListe.iterator();
1238
			while (it.hasNext()) {
1239
				idCommentaireSeparesParVirgule += it.next().getId();
1240
				if (it.hasNext()) {
1241
					idCommentaireSeparesParVirgule += ",";
1242
				}
1243
			}
1244
			modele.supprimerCommentaire(vueARafraichir, idCommentaireSeparesParVirgule);
989 jpm 1245
			modele.supprimerCollectionACommentaire(vueARafraichir, idCommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COMMENTAIRE);
985 jpm 1246
		}
1247
	}
1248
 
1249
	//+----------------------------------------------------------------------------------------------------------------+
447 jp_milcent 1250
	//												RAFRAICHISSEMENT
156 jp_milcent 1251
	//+----------------------------------------------------------------------------------------------------------------+
1252
 
898 gduche 1253
	public void rafraichir(Object nouvellesDonnees) {
1254
		if (nouvellesDonnees instanceof Utilisateur) {
932 jpm 1255
			repandreEtatIdentification((Utilisateur) nouvellesDonnees);
1256
		} else if (nouvellesDonnees instanceof Information) {
1257
			Information info = (Information) nouvellesDonnees;
1258
			if (info.getType().equals("modification_personne")) {
1259
				repandreInfoMiseAJourUtilisateur();
1260
			}
1261
		} else {
898 gduche 1262
			GWT.log(i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
277 jp_milcent 1263
		}
1264
	}
281 gduche 1265
 
453 jp_milcent 1266
	//+----------------------------------------------------------------------------------------------------------------+
1267
	//												GESTION du STATUT
1268
	//+----------------------------------------------------------------------------------------------------------------+
288 gduche 1269
 
332 gduche 1270
	public void afficherPopinChargement()	{
1271
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
1272
	}
453 jp_milcent 1273
 
332 gduche 1274
	public void masquerPopinChargement()	{
1275
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
1276
	}
447 jp_milcent 1277
 
277 jp_milcent 1278
}