pylint 1.4.3 version fixes
[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 import logging
24
25
26 class TestAuth(LoginFormBase):
27
28     def POST(self, *args, **kwargs):
29         username = kwargs.get("login_name")
30         password = kwargs.get("login_password")
31         error = None
32
33         if username and password:
34             if password == 'ipsilon':
35                 cherrypy.log("User %s successfully authenticated." % username)
36                 testdata = {
37                     'givenname': 'Test User',
38                     'surname': username,
39                     'fullname': 'Test User %s' % username,
40                     'email': '%s@example.com' % username,
41                     '_groups': [username]
42                 }
43                 return self.lm.auth_successful(self.trans,
44                                                username, 'password', testdata)
45             else:
46                 cherrypy.log("User %s failed authentication." % username)
47                 error = "Authentication failed"
48         else:
49             error = "Username or password is missing"
50             cherrypy.log.error("Error: " + error, severity=logging.ERROR)
51
52         context = self.create_tmpl_context(
53             username=username,
54             error=error,
55             error_password=not password,
56             error_username=not username
57         )
58         self.lm.set_auth_error()
59         return self._template('login/form.html', **context)
60
61
62 class LoginManager(LoginManagerBase):
63
64     def __init__(self, *args, **kwargs):
65         super(LoginManager, self).__init__(*args, **kwargs)
66         self.name = 'testauth'
67         self.service_name = 'testauth'
68         self.path = 'testauth'
69         self.page = None
70         self.description = """
71 Form based TEST login Manager, DO NOT EVER ACTIVATE IN PRODUCTION """
72         self.new_config(
73             self.name,
74             pconfig.String(
75                 'username text',
76                 'Text used to ask for the username at login time.',
77                 'Username'),
78             pconfig.String(
79                 'password text',
80                 'Text used to ask for the password at login time.',
81                 'Password'),
82             pconfig.String(
83                 'help text',
84                 'Text used to guide the user at login time.',
85                 'DISABLE IN PRODUCTION, USE ONLY FOR TEST ' +
86                 'Use any username they are all valid, "admin" gives ' +
87                 'administrative powers. ' +
88                 'Use the fixed password "ipsilon" for any user')
89         )
90
91     @property
92     def help_text(self):
93         return self.get_config_value('help text')
94
95     @property
96     def username_text(self):
97         return self.get_config_value('username text')
98
99     @property
100     def password_text(self):
101         return self.get_config_value('password text')
102
103     def get_tree(self, site):
104         self.page = TestAuth(site, self, 'login/testauth')
105         return self.page
106
107
108 class Installer(LoginManagerInstaller):
109
110     def __init__(self, *pargs):
111         super(Installer, self).__init__()
112         self.name = 'testauth'
113         self.pargs = pargs
114
115     def install_args(self, group):
116         group.add_argument('--testauth', choices=['yes', 'no'], default='no',
117                            help='Configure PAM authentication')
118
119     def configure(self, opts):
120         if opts['testauth'] != 'yes':
121             return
122
123         logging.debug(self.pargs)
124         # Add configuration data to database
125         po = PluginObject(*self.pargs)
126         po.name = 'testauth'
127         po.wipe_data()
128
129         # Update global config to add login plugin
130         po.is_enabled = True
131         po.save_enabled_state()