summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
blob: 2781372e3da2bf7a19549807eb1e5f13f21c4c3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
package org.openslx.dozmod.gui.window;

import java.awt.Color;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Comparator;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import javax.swing.DefaultComboBoxModel;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JRadioButton;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

import org.apache.log4j.Logger;
import org.apache.thrift.TException;
import org.openslx.bwlp.thrift.iface.ImageDetailsRead;
import org.openslx.bwlp.thrift.iface.ImageSummaryRead;
import org.openslx.bwlp.thrift.iface.ImageVersionDetails;
import org.openslx.bwlp.thrift.iface.LecturePermissions;
import org.openslx.bwlp.thrift.iface.LectureRead;
import org.openslx.bwlp.thrift.iface.LectureWrite;
import org.openslx.bwlp.thrift.iface.UserInfo;
import org.openslx.dozmod.gui.Gui;
import org.openslx.dozmod.gui.MainWindow;
import org.openslx.dozmod.gui.control.AdvancedConfigurator.AdvancedConfiguration;
import org.openslx.dozmod.gui.control.AdvancedConfigurator.AdvancedConfigurationChangeEvent;
import org.openslx.dozmod.gui.control.AdvancedConfigurator.AdvancedConfigurationChangeEventListener;
import org.openslx.dozmod.gui.control.JCheckBoxTree.CheckChangeEvent;
import org.openslx.dozmod.gui.control.JCheckBoxTree.CheckChangeEventListener;
import org.openslx.dozmod.gui.control.LectureCustomPermissionManager.UserChangeEvent;
import org.openslx.dozmod.gui.control.LectureCustomPermissionManager.UserChangeEventListener;
import org.openslx.dozmod.gui.helper.DateTimeHelper;
import org.openslx.dozmod.gui.helper.MessageType;
import org.openslx.dozmod.gui.helper.TextChangeListener;
import org.openslx.dozmod.gui.helper.UiFeedback;
import org.openslx.dozmod.gui.window.UserListWindow.UserAddedCallback;
import org.openslx.dozmod.gui.window.layout.LectureDetailsWindowLayout;
import org.openslx.dozmod.permissions.ImagePerms;
import org.openslx.dozmod.permissions.LecturePerms;
import org.openslx.dozmod.thrift.Session;
import org.openslx.dozmod.thrift.ThriftActions;
import org.openslx.dozmod.thrift.ThriftActions.DownloadCallback;
import org.openslx.dozmod.thrift.ThriftActions.LectureMetaCallback;
import org.openslx.dozmod.thrift.ThriftError;
import org.openslx.dozmod.thrift.cache.UserCache;
import org.openslx.dozmod.util.FormatHelper;
import org.openslx.dozmod.util.MapHelper;
import org.openslx.thrifthelper.ThriftManager;

/**
 * Window to display and edit the details of a lecture
 */
@SuppressWarnings("serial")
public class LectureDetailsWindow extends LectureDetailsWindowLayout implements UiFeedback {

	private static final Logger LOGGER = Logger.getLogger(LectureDetailsWindow.class);

	/**
	 * Self-reference
	 */
	private final LectureDetailsWindow me = this;

	/**
	 * Callback interface to refresh lecture list after changing lecture details
	 */
	public interface LectureUpdatedCallback {
		public void updated(boolean success);
	}

	/**
	 * Callback to be called when changing lecture details on the server
	 */
	private LectureUpdatedCallback callback = null;

	/**
	 * Lecture that this window shows the details of
	 */
	private LectureRead lecture = null;

	/**
	 * The custom permissions of the lecture
	 */
	private Map<String, LecturePermissions> customPermissions;

	/**
	 * The original custom permissions as fetched from the server
	 */
	private Map<String, LecturePermissions> originalCustomPermissions;

	/**
	 * The original default permissions as fetched from the server
	 */
	private LecturePermissions originalDefaultPermissions;
	/**
	 * Image, that the lecture is linked to.
	 */
	private ImageDetailsRead image = null;

	/**
	 * Flag indicating a change in this lecture's linked image
	 */
	private boolean imageLinkChanged = false;

	/**
	 * Flag indicating a change in this lecture's metadata
	 */
	private boolean metadataChanged = false;

	/**
	 * Flag indicating a change in this lecture's permissions
	 */
	private boolean permissionsChanged = false;

	/**
	 * Holder of the location information of this lecture
	 */
	private LocationInfo locationInfo = null;

	/**
	 * Holder of the netrules/runscript of this lecture
	 */
	private AdvancedConfiguration currentAdvConf = null;

 	/**
	 * Constructor
	 * 
	 * @param modalParent parent of this popup window
	 * @param callback function to be called when a lecture update occured
	 */
	public LectureDetailsWindow(Frame modalParent, LectureUpdatedCallback callback) {
		super(modalParent);

		// save callback
		this.callback = callback;

		setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);

		addWindowListener(new WindowAdapter() {
			@Override
			public void windowClosing(WindowEvent e) {
				safeClose();
			}
		});

		btnLinkImage.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				ImageSummaryRead newImage = LectureChangeImage.open(me);
				if (newImage != null) {
					try {
						image = ThriftManager.getSatClient().getImageDetails(Session.getSatelliteToken(),
								newImage.imageBaseId);
					} catch (TException e1) {
						LOGGER.error("Failed to retrieve details of new image: ", e1);
						return;
					}
					lecture.imageBaseId = newImage.imageBaseId;
					lecture.imageVersionId = newImage.latestVersionId;
					fillVersionsCombo();
					cboVersions.setEnabled(false);
					chkAutoUpdate.setSelected(true);
					imageLinkChanged = true;
					txtImageName.setText(newImage.getImageName());
					reactToChange();
				}
			}
		});

		btnClose.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				safeClose();
			}
		});
		btnDownloadImage.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				performImageDownload();
			}
		});
		chkAutoUpdate.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				cboVersions.setEnabled(!chkAutoUpdate.isSelected());
			}
		});
		btnChangeOwner.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				UserListWindow.open(me, new UserAddedCallback() {
					@Override
					public void userAdded(UserInfo user, UserListWindow window) {
						window.dispose();
						if (Gui.showMessageBox(me, "Sind Sie sicher, dass sie die Besitzerrechte an "
								+ "einen anderen Account übertragen wollen?", MessageType.QUESTION_YESNO,
								LOGGER, null))
							setLectureOwner(user);
					}
				}, "Besitzer festlegen", lecture.ownerId);
			}
		});

		final ActionListener changeReacter = new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				reactToChange();
			}
		};
		
		ctlLocationSelector.getTree().addCheckChangeEventListener(new CheckChangeEventListener() {
			@Override
			public void checkStateChanged(CheckChangeEvent event) {
				reactToChange();
			}
		});
		for (JRadioButton btn : ctlLocationSelector.getButtons()) {
			btn.addActionListener(changeReacter);
		}
		final ActionListener updateDefaultPermissionListener = new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				ctlPermissionManager.updateDefaultPermissions(chkCustomPermAdmin.isSelected(),
						chkCustomPermEdit.isSelected());
				reactToChange();
			}
		};
		chkCustomPermAdmin.addActionListener(updateDefaultPermissionListener);
		chkCustomPermEdit.addActionListener(updateDefaultPermissionListener);
		ctlPermissionManager.getTable().addMouseListener(new MouseAdapter() {
			@Override
			public void mouseClicked(MouseEvent e) {
				reactToChange();
			}
		});
		ctlPermissionManager.addUserChangeEventListener(new UserChangeEventListener() {			
			@Override
			public void stateChanged(UserChangeEvent event) {
				reactToChange();
			}
		});
		chkCustomPermAdmin.addActionListener(changeReacter);
		chkCustomPermEdit.addActionListener(changeReacter);

		ctlAdvancedConfigurator.addAdvancedConfigurationChangeEventListener(new AdvancedConfigurationChangeEventListener() {
			@Override
			public void stateChanged(AdvancedConfigurationChangeEvent event) {
				btnSaveChanges.setEnabled(ctlAdvancedConfigurator.hasChanged());
			}
		});
		final TextChangeListener docListener = new TextChangeListener() {
			@Override
			public void changed() {
				reactToChange();
			}
		};

		txtTitle.getDocument().addDocumentListener(docListener);
		txtDescription.getDocument().addDocumentListener(docListener);

		// Comboboxes
		final ItemListener comboItemListener = new ItemListener() {
			@Override
			public void itemStateChanged(ItemEvent e) {
				if (e.getStateChange() == ItemEvent.SELECTED) {
					reactToChange();
				}
			}
		};
		cboVersions.addItemListener(comboItemListener);

		// Listener to detect changes in checkboxes
		final ActionListener actionListener = new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				reactToChange();
			}
		};
		ChangeListener changeListener = new ChangeListener() {
			@Override
			public void stateChanged(ChangeEvent e) {
				reactToChange();
			}
		};
		chkAutoUpdate.addActionListener(actionListener);
		chkIsExam.addActionListener(actionListener);
		chkHasInternetAccess.addActionListener(actionListener);
		chkHasUsbAccess.addActionListener(actionListener);
		chkIsActive.addActionListener(actionListener);
		dtpStartDate.addActionListener(actionListener);
		dtpEndDate.addActionListener(actionListener);
		spnStartTime.addChangeListener(changeListener);
		spnEndTime.addChangeListener(changeListener);

		// save default color of date/time stuff to reset the background later
		dateTimeTextColor = dtpStartDate.getForeground();
		// last step, the save button
		btnSaveChanges.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				saveChanges();
			}
		});
		// disable save button
		btnSaveChanges.setEnabled(false);
		// wait for the image to be loaded before (potentially) enabling fields
		toggleEditable(false);
	}

	/**
	 * Sets the lecture to show the details of by setting the 'lecture' and
	 * 'image'
	 * members to its metadata. This method will fetch the information from the
	 * sat
	 * 
	 * @param lectureId the id of the lecture to be displayed
	 */
	public void setLecture(final String lectureId) {
		ThriftActions.getLectureAndImageDetails(JOptionPane.getFrameForComponent(me), lectureId,
				new LectureMetaCallback() {
					@Override
					public void fetchedLectureAndImageDetails(LectureRead lectureDetails,
							ImageDetailsRead imageDetails) {
						synchronized (me) {
							lecture = lectureDetails;
							image = imageDetails;
							if (lecture != null) {
								customPermissions = ThriftActions.getLecturePermissions(
										JOptionPane.getFrameForComponent(me), lecture.lectureId);
							}
							fillDetails();
						}
					}
				});
	}

	/**
	 * Internal callback function when we received the lecture's details from the server
	 */
	private void fillDetails() {
		if (lecture == null) {
			txtTitle.setText("-");
			lblTitleInfo.setText("-");
			toggleEditable(false);
			return;
		}

		if (image == null) {
			txtImageName.setText("-");
			lblImageNameInfo.setText("-");
		} else {
			txtImageName.setText(image.getImageName());
			lblImageNameInfo.setText(image.getImageName());
		}
		// remember original advanced config
		currentAdvConf = new AdvancedConfiguration(lecture.networkExceptions, lecture.runscript);

		// remember default permissions
		if (lecture.defaultPermissions != null) {
			originalDefaultPermissions = new LecturePermissions(lecture.defaultPermissions);
		}
		// remember custom permissions
		if (customPermissions != null) {
			// need a deep copy of the permission map to be able to check for changes after ImageCustomPermissionWindow
			if (originalCustomPermissions == null)
				originalCustomPermissions = new HashMap<String, LecturePermissions>();
			else
				originalCustomPermissions.clear();
			// fill it
			for (Entry<String, LecturePermissions> entry : customPermissions.entrySet()) {
				originalCustomPermissions.put(entry.getKey(), new LecturePermissions(entry.getValue()));
			}
		}
		// init permission info
		ctlPermissionManager.initPanel(customPermissions, lecture.defaultPermissions, lecture.ownerId);
		chkCustomPermAdmin.setSelected(lecture.defaultPermissions.admin);
		chkCustomPermEdit.setSelected(lecture.defaultPermissions.edit);
		// init location info
		locationInfo = new LocationInfo(lecture.locationIds, lecture.limitToLocations);
		ctlLocationSelector.setOnlyInSelection(locationInfo.limitToLocations);
		ctlLocationSelector.setSelectedLocationsAsIds(locationInfo.locationList);
		// advanced config stuff, save current information
		currentAdvConf = new AdvancedConfiguration(lecture.networkExceptions, lecture.runscript);
		// init advanced info
		ctlAdvancedConfigurator.setState(new AdvancedConfiguration(lecture.networkExceptions, lecture.runscript));
		
		txtTitle.setText(lecture.getLectureName());
		lblTitleInfo.setText(lecture.getLectureName());
		txtDescription.setText(lecture.getDescription());
		lblOwner.setUser(UserCache.find(lecture.getOwnerId()));
		lblOwnerInfo.setUser(UserCache.find(lecture.getOwnerId()));
		lblUpdater.setUser(UserCache.find(lecture.getUpdaterId()));
		lblCreateTime.setText(FormatHelper.longDate(lecture.getCreateTime()));
		lblUpdateTime.setText(FormatHelper.longDate(lecture.getUpdateTime()));
		lblStartTime.setText(FormatHelper.longDate(lecture.getStartTime()));
		lblEndTime.setText(FormatHelper.longDate(lecture.getEndTime()));
		txtId.setText(lecture.getLectureId());

		chkIsActive.setSelected(lecture.isEnabled);
		chkHasInternetAccess.setSelected(lecture.hasInternetAccess);
		chkHasUsbAccess.setSelected(lecture.hasUsbAccess);
		chkIsExam.setSelected(lecture.isExam);
		chkAutoUpdate.setSelected(lecture.autoUpdate);
		cboVersions.setEnabled(!lecture.autoUpdate);

		lblUseCount.setText(Integer.toString(lecture.useCount));
		fillVersionsCombo();

		Calendar startCal = Calendar.getInstance();
		startCal.setTime(new Date(lecture.getStartTime() * 1000l));
		dtpStartDate.getModel().setDate(startCal.get(Calendar.YEAR), startCal.get(Calendar.MONTH),
				startCal.get(Calendar.DATE));
		spnStartTime.getModel().setValue(startCal.getTime());

		Calendar endCal = Calendar.getInstance();
		endCal.setTime(new Date(lecture.getEndTime() * 1000l));
		dtpEndDate.getModel().setDate(endCal.get(Calendar.YEAR), endCal.get(Calendar.MONTH),
				endCal.get(Calendar.DATE));
		spnEndTime.getModel().setValue(endCal.getTime());

		// now enable the tabs the user can see given its permissions
		toggleEditable(true);
		// and always switch to the "About" tab
		pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Übersicht"));
		setVisible(true);
	}

	/**
	 * Helper to fill the combobox with the versions of the image. The list will
	 * be sorted by creation timestamp
	 */
	private void fillVersionsCombo() {
		List<ImageVersionDetails> versions;
		if (image == null) {
			versions = new ArrayList<>(0);
		} else {
			versions = image.getVersions();
		}
		// version combo
		for (Iterator<ImageVersionDetails> it = versions.iterator(); it.hasNext();) {
			ImageVersionDetails version = it.next();
			if (!version.isValid && !lecture.imageVersionId.equals(version.versionId)) {
				it.remove();
			}
		}

		// sort versions by createtime
		Collections.sort(versions, new Comparator<ImageVersionDetails>() {
			public int compare(ImageVersionDetails o1, ImageVersionDetails o2) {
				return -Long.compare(o1.getCreateTime(), o2.getCreateTime());
			}
		});

		cboVersions.setModel(new DefaultComboBoxModel<ImageVersionDetails>(
				versions.toArray(new ImageVersionDetails[versions.size()])));
		cboVersions.setSelectedItem(new ImageVersionDetails(lecture.getImageVersionId(), 0, 0, 0, null, true,
				true, true, null));
	}

	/**
	 * Sets the lecture's owner to the given user
	 * 
	 * @param user UserInfo representation of the new owner
	 */
	private void setLectureOwner(final UserInfo user) {
		if (!ThriftActions.setLectureOwner(JOptionPane.getFrameForComponent(this), lecture.getLectureId(),
				user)) {
			return;
		}
		// success
		Gui.showMessageBox(me, "Besitzrechte übertragen an " + FormatHelper.userName(user), MessageType.INFO,
				null, null);
		toggleEditable(false);
		String lectureId = lecture.getLectureId();
		synchronized (me) {
			image = null;
			lecture = null;
		}
		setLecture(lectureId);
	}

	/**
	 * Triggers the download of the currently used image version of the lecture
	 */
	private void performImageDownload() {
		if (image == null) {
			Gui.showMessageBox(this, "VM ungültig.", MessageType.ERROR, null, null);
			return;
		}
		btnDownloadImage.setEnabled(false);
		long versionSize = 0;
		for (ImageVersionDetails version : image.versions) {
			if (version.versionId.equals(lecture.imageVersionId)) {
				if (!version.isValid) {
					Gui.showMessageBox(this, "Ungültige VM-Version gewählt", MessageType.ERROR, null, null);
					return;
				}
				versionSize = version.fileSize;
				break;
			}
		}
		if (versionSize == 0) {
			Gui.showMessageBox(this, "Fehler bei der Abfrage der Größe des VM-Abbildes.", MessageType.ERROR, null,
					null);
			return;
		}
		ThriftActions.initDownload(JOptionPane.getFrameForComponent(this), lecture.imageVersionId,
				image.imageName, image.virtId, image.osId, versionSize, new DownloadCallback() {
					@Override
					public void downloadInitialized(boolean success) {
						if (!success) {
							Gui.asyncExec(new Runnable() {
								@Override
								public void run() {
									btnDownloadImage.setEnabled(true);
								}
							});
						}
					}
				});
	}

	/**
	 * Checks whether the user changed any fields of the image details and
	 * enables the save button if so.
	 */
	private void reactToChange() {
		// before checks we need to update the local objects holding the information of the "widgets"
		// update the location information
		locationInfo = new LocationInfo(ctlLocationSelector.getSelectedLocationsAsIds(),
				ctlLocationSelector.getOnlyInSelection());
		// update the custom permissions
		customPermissions = ctlPermissionManager.updatePermissionReferences();
		// NOTE: AdvancedConfiguration stuff will only get checked when clicking "Save" since
		// checking for rules syntax while the user is still typing does not make much sense...
		// now we can check for changes
		metadataChanged = reactToChangeInternal();
		permissionsChanged = MapHelper.hasChanged(originalCustomPermissions, customPermissions);
		btnSaveChanges.setEnabled(metadataChanged || permissionsChanged);
	}

	/**
	 * Checks whether the user changed any fields of the image details and
	 * enables the save button if so.
	 */
	private boolean reactToChangeInternal() {
		if (lecture == null)
			return false;

		boolean changed = false;
		// mandatory fields checks
		if (txtTitle.getText().isEmpty()) {
			pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Allgemein"));
			lblError.setText("Kein Veranstaltungsname gesetzt!");
			return false;
		}
		if (txtDescription.getText().isEmpty()) {
			pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Allgemein"));
			lblError.setText("Keine Beschreibung angegeben!");
			return false;
		}
		// version checkbox changed?
		ImageVersionDetails currentVersion = cboVersions.getItemAt(cboVersions.getSelectedIndex());
		if (currentVersion == null) {
			pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Allgemein"));
			lblError.setText("Keine Version ausgewählt!");
			return false;
		}
		// Date stuff
		Date start = DateTimeHelper.getDateFrom(dtpStartDate, spnStartTime);
		Date end = DateTimeHelper.getDateFrom(dtpEndDate, spnEndTime);
		if (!isPeriodValid(start, end, false) && dateHasChanged()) {
			pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Allgemein"));
			lblError.setText("Ungültiger Zeitraum!");
			return false;
		}

		// done with mandatory checks, remove error message
		lblError.setText(null);

		// check for changes in all fields
		changed = !txtTitle.getText().equals(lecture.getLectureName())
				|| !txtDescription.getText().equals(lecture.getDescription())
				|| !currentVersion.getVersionId().equals(lecture.getImageVersionId())
				|| (DateTimeHelper.getDateFrom(dtpStartDate, spnStartTime).getTime() / 1000L) != lecture.getStartTime()
				|| (DateTimeHelper.getDateFrom(dtpEndDate, spnEndTime).getTime() / 1000L) != lecture.getEndTime()
				|| chkAutoUpdate.isSelected() != lecture.autoUpdate
				|| chkIsExam.isSelected() != lecture.isExam
				|| chkHasInternetAccess.isSelected() != lecture.hasInternetAccess
				|| chkHasUsbAccess.isSelected() != lecture.hasUsbAccess
				|| chkIsActive.isSelected() != lecture.isEnabled
				|| !lecture.defaultPermissions.equals(originalDefaultPermissions)
				|| (locationInfo != null && lecture.locationIds != null && !lecture.locationIds.equals(locationInfo.locationList))
				|| (locationInfo != null && lecture.limitToLocations != locationInfo.limitToLocations)
				|| (currentAdvConf != null && lecture.networkExceptions != null && !lecture.networkExceptions.equals(currentAdvConf.netRulesList))
				|| (currentAdvConf != null && lecture.runscript != null && !lecture.runscript.equals(currentAdvConf.runScriptText))
				|| imageLinkChanged;

		return changed;
	}

	/**
	 * Triggers the saving of the changes of this lecture
	 * And inform the callback function about the outcome
	 */
	private void saveChanges() {
		boolean saved = saveChangesInternal();
		callback.updated(saved);
		if (saved)
			dispose();
		else
			btnSaveChanges.setEnabled(true);
	}

	/**
	 * Internal helper actually saving the changes to the satellite
	 *
	 * @return true if saving succeeded, false otherwise.
	 */
	private boolean saveChangesInternal() {
		// check, whether autoupdate is selected and choose version accordingly
		if (image != null) {
			lecture.imageVersionId = chkAutoUpdate.isSelected() ? image.latestVersionId
					: cboVersions.getItemAt(cboVersions.getSelectedIndex()).versionId;
		}
		// goto to advanced tab and check (by getting) the state of the textAreas
		currentAdvConf = ctlAdvancedConfigurator.getState();
		if (currentAdvConf == null) {
			// getState() will return null only if it couldn't parse the rules
			// which means that the user got informed about what was invalid
			// So we just return here until the parsing works.
			pnlTabs.setSelectedIndex(pnlTabs.indexOfTab("Erweitert"));
			return false;
		}
		metadataChanged |= (currentAdvConf.netRulesList != lecture.networkExceptions || currentAdvConf.runScriptText != lecture.runscript);
		// now check if we need to push a new LectureWrite
		if (metadataChanged) {
			// first build the LectureWrite from the GUI fields
			final LectureWrite metadata = new LectureWrite(txtTitle.getText(), txtDescription.getText(),
					lecture.getImageVersionId(), chkAutoUpdate.isSelected(), chkIsActive.isSelected(),
					DateTimeHelper.getDateFrom(dtpStartDate, spnStartTime).getTime() / 1000L,
					DateTimeHelper.getDateFrom(dtpEndDate, spnEndTime).getTime() / 1000L, currentAdvConf.runScriptText, null,
					chkIsExam.isSelected(), chkHasInternetAccess.isSelected(), // TODO USBACCESS
					lecture.getDefaultPermissions(), locationInfo.locationList, locationInfo.limitToLocations,
					// TODO: coming "false" is Location related
					false, chkHasUsbAccess.isSelected());
			metadata.setNetworkExceptions(currentAdvConf.netRulesList);
			// now trigger the actual action 
			try {
				ThriftManager.getSatClient().updateLecture(Session.getSatelliteToken(),
						lecture.getLectureId(), metadata);
				metadataChanged = false;
				LOGGER.info("Successfully save new metadata");
			} catch (TException e) {
				ThriftError.showMessage(JOptionPane.getFrameForComponent(this), LOGGER, e,
						"Fehler beim Updaten der Veranstaltung!");
				callback.updated(false);
				return false;
			}
		}
		if (permissionsChanged) {
			try {
				ThriftManager.getSatClient().writeLecturePermissions(Session.getSatelliteToken(),
						lecture.lectureId, customPermissions);
				permissionsChanged = false;
				LOGGER.info("Successfully save new permissions");
			} catch (TException e) {
				ThriftError.showMessage(JOptionPane.getFrameForComponent(this), LOGGER, e,
						"Fehler beim Übertragen der Berechtigungen!");
				callback.updated(true);
				return false;
			}
		}
		return true;
	}

	/**
	 * Checks if the given start and end date represent a valid time period.
	 * This is the case, if start < end and if current time < end
	 * 
	 * @param start date of the period to check
	 * @param end date of the period to check
	 * @param feedback true if the user should be shown feedback, false
	 *            otherwise
	 * @return true if the period is valid, false otherwise
	 */
	private boolean isPeriodValid(final Date start, final Date end, boolean feedback) {
		if (start == null || end == null)
			return false;
		// analyse time stuff to see if its valid
		if (start.after(end)) {
			dtpStartDate.setForeground(Color.red);
			if (feedback)
				Gui.showMessageBox(me, "Start der Veranstaltung ist nach dem Enddatum!", MessageType.ERROR,
						LOGGER, null);
		} else {
			dtpStartDate.setForeground(dateTimeTextColor);
			final Date now = new Date();
			if (now.after(end)) {
				if (feedback)
					Gui.showMessageBox(me, "Enddatum liegt in der Vergangenheit!", MessageType.ERROR, LOGGER,
							null);
				dtpEndDate.setForeground(Color.red);
			} else {
				dtpEndDate.setForeground(dateTimeTextColor);
				return true;
			}
		}
		return false;
	}

	/**
	 * Check whether the date has been changed
	 * 
	 * @return true if it has changed, false otherwise
	 */
	private boolean dateHasChanged() {
		return (DateTimeHelper.getDateFrom(dtpStartDate, spnStartTime).getTime() / 1000L) != lecture.getStartTime()
				|| (DateTimeHelper.getDateFrom(dtpEndDate, spnEndTime).getTime() / 1000L) != lecture.getEndTime();
	}

	/**
	 * Enables/Disables the tabs based on the given flag 'editable'.
	 *
	 * @param editable when true, will enable the tabs if the user is allowed to see them.
	 * If false, this will disable all tabs but the first tab "About".
	 */
	protected void toggleEditable(boolean editable) {
		// if we don't have a lecture and an image set, just disable
		editable &= (LecturePerms.canEdit(lecture));
		// "Übersicht" is always enabled
		pnlTabs.setEnabledAt(pnlTabs.indexOfTab("Allgemein"), editable);
		// TODO: enable when restriction stuff is finished
		// pnlTabs.setEnabledAt(pnlTabs.indexOfTab("Beschränkungen"), editable);
		pnlTabs.setEnabledAt(pnlTabs.indexOfTab("Berechtigungen"), editable && LecturePerms.canAdmin(lecture));
		if (pnlTabs.indexOfTab("Raumauswahl") != -1) {
			pnlTabs.setEnabledAt(pnlTabs.indexOfTab("Raumauswahl"), editable);
		}
		// TODO: enable when advanced stuff is finished
		// pnlTabs.setEnabledAt(pnlTabs.indexOfTab("Erweitert"), editable);
		btnChangeOwner.setEnabled(LecturePerms.canAdmin(lecture));
		btnDownloadImage.setEnabled(ImagePerms.canDownload(image));
	}

	/**
	 * Opens a new LectureDetailsWindow showing the details of the
	 * lecture with ID = lectureId
	 * 
	 * @param modalParent parent of this window
	 * @param lectureId id of the lecture to set the details of
	 */
	public static void open(Frame modalParent, String lectureId, LectureUpdatedCallback callback) {
		LectureDetailsWindow win = new LectureDetailsWindow(modalParent, callback);
		win.setLecture(lectureId);
		win.setVisible(true);
	}

	@SuppressWarnings("deprecation")
	@Override
	public void show() {
		if (!isVisible()) {
			pack();
			MainWindow.centerShell(this);
		}
		super.show();
	}

	/* *******************************************************************************	
	 * 
	 *                        UIFeedback implementation
	 *
	 ********************************************************************************/
	@Override
	public boolean wantConfirmQuit() {
		return metadataChanged || permissionsChanged;
	}

	@Override
	public void escapePressed() {
		// Also ask if applicable
		safeClose();
	}

	/*
	 * Safe close helper: checks if we have unsaved work and prompt the user for
	 * confirmation if so
	 */
	private void safeClose() {
		if ((metadataChanged || permissionsChanged)
				&& !Gui.showMessageBox(me, "Änderungen werden verworfen, wollen Sie wirklich schließen?",
						MessageType.QUESTION_YESNO, null, null))
			return;
		synchronized(me) {
			lecture = null;
			image = null;
		}
		dispose();
	}
}