summaryrefslogtreecommitdiffstats
path: root/src/main/java/de/bwlehrpool/bwlp_guac/BwlpAuthenticationProvider.java
blob: 81434f4c14aed06c02d72cfcb5cc795c5173650a (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
package de.bwlehrpool.bwlp_guac;

import java.util.*;

import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.net.auth.*;
import org.apache.guacamole.net.auth.credentials.GuacamoleCredentialsException;
import org.codehaus.jackson.JsonNode;
import org.codehaus.jackson.map.ObjectMapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.servlet.http.HttpServletRequest;

import org.apache.guacamole.form.Field;
import org.apache.guacamole.net.auth.credentials.GuacamoleInsufficientCredentialsException;
import org.apache.guacamole.net.auth.credentials.CredentialsInfo;

public class BwlpAuthenticationProvider implements AuthenticationProvider {

	Logger LOGGER = LoggerFactory.getLogger(BwlpAuthenticationProvider.class);

	public String getIdentifier() {
		return "de.bwlehrpool.bwgpul";
	}

	public Object getResource() throws GuacamoleException {
		return null;
	}

	public AuthenticatedUser authenticateUser(Credentials credentials) throws GuacamoleException {
		return null;
	}

	public AuthenticatedUser updateAuthenticatedUser(AuthenticatedUser authenticatedUser, Credentials credentials)
			throws GuacamoleException {
		return null;
	}

	public UserContext getUserContext(AuthenticatedUser authenticatedUser) throws GuacamoleException {
		LOGGER.warn("Ignoring getUserContext for " + authenticatedUser.toString());
		return null;
	}

	public UserContext updateUserContext(UserContext context, AuthenticatedUser authenticatedUser,
										 Credentials credentials) throws GuacamoleException {
		LOGGER.warn("Ignoring updateUserContext called with " + context.toString());
		return null;
	}

	public UserContext decorate(UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
			throws GuacamoleException {
		return context;
	}

	private Map<String, BwlpUserContext> oldMappings = Collections
			.synchronizedMap(new WeakHashMap<String, BwlpUserContext>());

	public UserContext redecorate(UserContext decorated, UserContext context, AuthenticatedUser authenticatedUser,
			Credentials credentials) throws GuacamoleException {

		Credentials creds = authenticatedUser.getCredentials();
		if (creds == null)
			return context;
		String username = creds.getUsername();
		if (username == null) {
			username = authenticatedUser.getIdentifier();
		}
		if (username == null) {
			LOGGER.warn("redecorate: Ignoring user without name");
			return context;
		}

		LOGGER.warn("REdecorate called for " + username);
		BwlpUserContext user = oldMappings.get(username);

		if (user != null && user.hasValidConnection())
			return user;
		
		WrappedConnection exConn = ConnectionManager.getExistingConnection(username);
		if (exConn != null) {
			user = new BwlpUserContext(authenticatedUser, context, exConn);
		} else {
			UserResponse response = requestGroup(credentials);
			LOGGER.warn("Doing the REdecoration");
			user = new BwlpUserContext(authenticatedUser, context, response.groupid, response.resolution);
		}
		oldMappings.put(username, user);

		return user;
	}

	final class UserResponse {
		public int groupid = 0;
		public String resolution = "1920x1080";
	}

	private UserResponse requestGroup(Credentials credentials) throws GuacamoleException {
		UserResponse response = new UserResponse();

		// Request the user to select a group
		ConnectionManager.updateList();
		HttpServletRequest request = credentials.getRequest();
		String groupJson = request.getParameter("group");

		if (groupJson == null) {
			throw new GuacamoleInsufficientCredentialsException(
					"GROUP_SELECTION.TITLE", new CredentialsInfo(
					Collections.<Field>singletonList(new GroupField())
			));
		}

		ObjectMapper mapper = new ObjectMapper();

		String message = "GROUP_SELECTION.TITLE";

		boolean tryAgain = false;
		String password = "";
		String correctPassword = null;
		try {
			JsonNode group = mapper.readTree(groupJson);
			response.resolution = group.get("resolution").asText();

			response.groupid = Integer.parseInt(group.get("id").asText());
			if (response.groupid != 0) {
				password = group.get("password").asText();
				correctPassword = ConnectionManager.getGroupPool().get(response.groupid).password;
			}
		} catch (Exception e) {
			LOGGER.info("Error reading group", e);
			tryAgain = true;
		}

		if (response.groupid != 0 && correctPassword != null && !password.equals(correctPassword)) {
			tryAgain = true;
			message = "GROUP_SELECTION.PASSWORD_ERROR";
		}

		if (tryAgain) {
			throw new GuacamoleCredentialsException(
					message, new CredentialsInfo(
					Collections.<Field>singletonList(new GroupField())
			));
		}

		return response;
	}

	public void shutdown() {
	}

}