7416505918a76f455f1acc5ba9684154bee74ab3
[guacamole.git] / src / main / java / net / sourceforge / guacamole / net / basic / BasicGuacamoleTunnelServlet.java
1 package net.sourceforge.guacamole.net.basic;
2
3 /*
4  *  Guacamole - Clientless Remote Desktop
5  *  Copyright (C) 2010  Michael Jumper
6  *
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Affero General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Affero General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Affero General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 import javax.servlet.ServletException;
22 import javax.servlet.http.HttpServletRequest;
23 import javax.servlet.http.HttpSession;
24 import net.sourceforge.guacamole.GuacamoleException;
25 import net.sourceforge.guacamole.net.InetGuacamoleSocket;
26 import net.sourceforge.guacamole.protocol.GuacamoleConfiguration;
27 import net.sourceforge.guacamole.properties.GuacamoleProperties;
28 import net.sourceforge.guacamole.net.GuacamoleSocket;
29 import net.sourceforge.guacamole.servlet.GuacamoleSession;
30 import net.sourceforge.guacamole.net.GuacamoleTunnel;
31 import net.sourceforge.guacamole.net.basic.properties.BasicGuacamoleProperties;
32 import net.sourceforge.guacamole.protocol.ConfiguredGuacamoleSocket;
33 import net.sourceforge.guacamole.servlet.GuacamoleTunnelServlet;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37 public class BasicGuacamoleTunnelServlet extends GuacamoleTunnelServlet {
38
39     private Logger logger = LoggerFactory.getLogger(BasicGuacamoleTunnelServlet.class);
40     
41     private AuthenticationProvider authProvider;
42
43     @Override
44     public void init() throws ServletException {
45
46         // Get auth provider instance
47         try {
48             authProvider = GuacamoleProperties.getProperty(BasicGuacamoleProperties.AUTH_PROVIDER);
49         }
50         catch (GuacamoleException e) {
51             throw new ServletException(e);
52         }
53
54     }
55
56     @Override
57     protected GuacamoleTunnel doConnect(HttpServletRequest request) throws GuacamoleException {
58
59         HttpSession httpSession = request.getSession(true);
60
61         // Retrieve username and password from parms
62         String username = request.getParameter("username");
63         String password = request.getParameter("password");
64
65         // Get authorized config
66         GuacamoleConfiguration config = authProvider.getAuthorizedConfiguration(username, password);
67         if (config == null) {
68             logger.warn("Failed login from {} for user \"{}\".", request.getRemoteAddr(), username);
69             throw new GuacamoleException("Invalid login");
70         }
71
72         logger.debug("Successful login from {} for user \"{}\".", request.getRemoteAddr(), username);
73
74         // Configure and connect socket
75         String hostname = GuacamoleProperties.getProperty(GuacamoleProperties.GUACD_HOSTNAME);
76         int port = GuacamoleProperties.getProperty(GuacamoleProperties.GUACD_PORT);
77
78         GuacamoleSocket socket = new ConfiguredGuacamoleSocket(
79                 new InetGuacamoleSocket(hostname, port),
80                 config
81         );
82
83         // Associate socket with tunnel
84         GuacamoleTunnel tunnel = new GuacamoleTunnel(socket);
85
86         // Attach tunnel to session
87         GuacamoleSession session = new GuacamoleSession(httpSession);
88         session.attachTunnel(tunnel);
89
90         return tunnel;
91
92     }
93
94 }
95