summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/configurator/LecturePermissionConfigurator.java
blob: dc5ea3268caa9e5e15f9eec37d73805eebb46f3d (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
package org.openslx.dozmod.gui.configurator;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import javax.swing.AbstractAction;
import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JPanel;
import javax.swing.KeyStroke;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.event.ChangeListener;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.openslx.bwlp.thrift.iface.LecturePermissions;
import org.openslx.bwlp.thrift.iface.UserInfo;
import org.openslx.dozmod.gui.changemonitor.GenericControlWindow;
import org.openslx.dozmod.gui.control.table.LecturePermissionTable;
import org.openslx.dozmod.gui.control.table.LecturePermissionTable.UserLecturePermissions;
import org.openslx.dozmod.gui.control.table.QScrollPane;
import org.openslx.dozmod.gui.helper.GridManager;
import org.openslx.dozmod.gui.helper.I18n;
import org.openslx.dozmod.gui.window.UserListWindow;
import org.openslx.dozmod.gui.window.UserListWindow.UserAddedCallback;

/**
 * Panel including LecturePermissionTable and add/remove buttons for setting
 * customLecturePermissions.
 */
/**
 * @author joe
 *
 */
public class LecturePermissionConfigurator extends JPanel implements GenericControlWindow<Map<String, LecturePermissions>> {

	/**
	 * Version for serialization.
	 */
	private static final long serialVersionUID = -1027935137735262385L;

	/**
	 * Self reference
	 */
	private LecturePermissionConfigurator me;

	protected LecturePermissionTable permissionTable;

	protected JButton btnAddUser;
	protected JButton btnRemoveUser;

	private final ArrayList<UserLecturePermissions> permissionList = new ArrayList<UserLecturePermissions>();

	private LecturePermissions defaultPermissions;

	private String ownerId = null;

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

	public LecturePermissionConfigurator() {
		super();
		me = this;

		GridManager grid = new GridManager(this, 1);

		permissionTable = new LecturePermissionTable();

		// Panel for the add- and remove buttons
		JPanel userButtonPane = new JPanel();
		userButtonPane.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
		userButtonPane.setLayout(new BoxLayout(userButtonPane, BoxLayout.LINE_AXIS));

		btnAddUser = new JButton(I18n.CONFIGURATOR.getString("LecturePermission.Button.addUser.text"));
		userButtonPane.add(btnAddUser);
		btnRemoveUser = new JButton(I18n.CONFIGURATOR.getString("LecturePermission.Button.removeUser.text"));
		userButtonPane.add(btnRemoveUser);
		userButtonPane.add(Box.createGlue());

		// Put everything into the grid
		QScrollPane jsp = new QScrollPane(permissionTable);
		jsp.setBackground(UIManager.getColor("Table.background"));
		grid.add(jsp).fill(true, true).expand(true, true);
		grid.nextRow();
		grid.add(userButtonPane).fill(true, false).expand(true, false);
		grid.nextRow();
		grid.finish(false);

		// add user button listener
		btnAddUser.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				UserListWindow.open(SwingUtilities.getWindowAncestor(me), new UserAddedCallback() {
					@Override
					public void userAdded(final UserInfo newUser, UserListWindow window) {
						// check if we have this user already
						for (UserLecturePermissions current : permissionList) {
							if (current.userId.equals(newUser.userId)) {
								LOGGER.debug("User already present in the list, skipping!");
								return;
							}
						}
						// add it to the list with default permissions
						permissionList.add(new UserLecturePermissions(newUser.userId, new LecturePermissions(
								defaultPermissions)));
						permissionTable.setData(permissionList, false);
						fireUserChangeEvent();
					}
				}, I18n.CONFIGURATOR.getString("LecturePermission.Button.addUser.caption"), ownerId);
			}
		});

		// delete user button listener
		btnRemoveUser.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				final UserLecturePermissions selected = permissionTable.getSelectedItem();
				if (selected != null && !permissionList.remove(selected)) {
					LOGGER.debug("Could not remove: " + selected);
				}
				permissionTable.setData(permissionList, false);
				fireUserChangeEvent();
			}
		});

		// keyboard shortcut
		permissionTable.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(
				KeyStroke.getKeyStroke(KeyEvent.VK_DELETE, 0), "delete");
		permissionTable.getActionMap().put("delete", new AbstractAction() {
			/**
			 * Version for serialization.
			 */
			private static final long serialVersionUID = 8867019349860510797L;

			@Override
			public void actionPerformed(ActionEvent ae) {
				btnRemoveUser.doClick();
			}
		});
		permissionTable.addMouseListener(new MouseAdapter() {
			@Override
			public void mouseClicked(MouseEvent e) {
				// TODO: This is stupid; permissionTable should fire an event
				// if one of the check boxes changes.
				fireUserChangeEvent();
			}
		});
	}

	/**
	 * Initialise the PermissionManager
	 * 
	 * @param permissionMap the old permission, to initialise the table with,
	 *            null creates empty table.
	 * @param defaultPermissions the permissions for a newly added user
	 * @param ownerId The user to exclude in the list do add user. May be null.
	 */
	public void initPanel(Map<String, LecturePermissions> permissionMap,
			final LecturePermissions defaultPermissions, String ownerId) {
		this.ownerId = ownerId;
		this.defaultPermissions = defaultPermissions;
		permissionList.clear();
		if (permissionMap != null) {
			for (Entry<String, LecturePermissions> e : permissionMap.entrySet()) {
				permissionList.add(new UserLecturePermissions(e.getKey(), e.getValue()));
			}
		}
		permissionTable.setData(permissionList, false);
	}

	/**
	 * Get map with the permissions set in the table of the manager.
	 * 
	 * @return Map with new custom permissions, null if something went wrong
	 */
	public Map<String, LecturePermissions> getPermissions() {
		Map<String, LecturePermissions> newPermissionMap = new HashMap<>(permissionList.size());
		// put permissions of the list into the map
		for (UserLecturePermissions perm : permissionList) {
			newPermissionMap.put(perm.userId, new LecturePermissions(perm.permissions));
		}
		return newPermissionMap;
	}

	/*
	 * For dialog change monitor 
	 */

	void fireUserChangeEvent() {
		for (ChangeListener cl : listeners) {
			cl.stateChanged(null);
		}
	}

	@Override
	public Map<String, LecturePermissions> getState() {
		return getPermissions();
	}
	
	private final List<ChangeListener> listeners = new ArrayList<>(1);

	@Override
	public void addChangeListener(ChangeListener l) {
		listeners.add(l);
	}

}