Add uninstallation support.
[cascardo/ipsilon.git] / ipsilon / login / authtest.py
1 # Copyright (C) 2014  Simo Sorce <simo@redhat.com>
2 #
3 # see file 'COPYING' for use and warranty information
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 from ipsilon.login.common import LoginFormBase, LoginManagerBase, \
19     LoginManagerInstaller
20 from ipsilon.util.plugin import PluginObject
21 from ipsilon.util import config as pconfig
22 import cherrypy
23
24
25 class TestAuth(LoginFormBase):
26
27     def POST(self, *args, **kwargs):
28         username = kwargs.get("login_name")
29         password = kwargs.get("login_password")
30         error = None
31
32         if username and password:
33             if password == 'ipsilon':
34                 cherrypy.log("User %s successfully authenticated." % username)
35                 testdata = {'fullname': 'Test User %s' % username}
36                 return self.lm.auth_successful(self.trans,
37                                                username, 'password', testdata)
38             else:
39                 cherrypy.log("User %s failed authentication." % username)
40                 error = "Authentication failed"
41         else:
42             error = "Username or password is missing"
43             cherrypy.log.error("Error: " + error)
44
45         context = self.create_tmpl_context(
46             username=username,
47             error=error,
48             error_password=not password,
49             error_username=not username
50         )
51         # pylint: disable=star-args
52         return self._template('login/form.html', **context)
53
54
55 class LoginManager(LoginManagerBase):
56
57     def __init__(self, *args, **kwargs):
58         super(LoginManager, self).__init__(*args, **kwargs)
59         self.name = 'testauth'
60         self.service_name = 'testauth'
61         self.path = 'testauth'
62         self.page = None
63         self.description = """
64 Form based TEST login Manager, DO NOT EVER ACTIVATE IN PRODUCTION """
65         self.new_config(
66             self.name,
67             pconfig.String(
68                 'username text',
69                 'Text used to ask for the username at login time.',
70                 'Username'),
71             pconfig.String(
72                 'password text',
73                 'Text used to ask for the password at login time.',
74                 'Password'),
75             pconfig.String(
76                 'help text',
77                 'Text used to guide the user at login time.',
78                 'DISABLE IN PRODUCTION, USE ONLY FOR TEST ' +
79                 'Use any username they are all valid, "admin" gives ' +
80                 'administrative powers. ' +
81                 'Use the fixed password "ipsilon" for any user')
82         )
83
84     @property
85     def help_text(self):
86         return self.get_config_value('help text')
87
88     @property
89     def username_text(self):
90         return self.get_config_value('username text')
91
92     @property
93     def password_text(self):
94         return self.get_config_value('password text')
95
96     def get_tree(self, site):
97         self.page = TestAuth(site, self, 'login/testauth')
98         return self.page
99
100
101 class Installer(LoginManagerInstaller):
102
103     def __init__(self, *pargs):
104         super(Installer, self).__init__()
105         self.name = 'testauth'
106         self.pargs = pargs
107
108     def install_args(self, group):
109         group.add_argument('--testauth', choices=['yes', 'no'], default='no',
110                            help='Configure PAM authentication')
111
112     def configure(self, opts):
113         if opts['testauth'] != 'yes':
114             return
115
116         print self.pargs
117         # Add configuration data to database
118         po = PluginObject(*self.pargs)
119         po.name = 'testauth'
120         po.wipe_data()
121
122         # Update global config to add login plugin
123         po.is_enabled = True
124         po.save_enabled_state()