03118aeab5455357513773f7010c2f854ab2a747
[cascardo/ipsilon.git] / ipsilon / providers / common.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2014  Simo Sorce <simo@redhat.com>
4 #
5 # see file 'COPYING' for use and warranty information
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU 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 General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 from ipsilon.util.log import Log
21 from ipsilon.util.plugin import PluginInstaller, PluginLoader
22 from ipsilon.util.plugin import PluginObject, PluginConfig
23 from ipsilon.util.page import Page
24 import cherrypy
25
26
27 class ProviderException(Exception, Log):
28
29     def __init__(self, message):
30         super(ProviderException, self).__init__(message)
31         self.message = message
32
33     def __str__(self):
34         return repr(self.message)
35
36
37 class AuthenticationError(ProviderException):
38
39     def __init__(self, message, code):
40         super(AuthenticationError, self).__init__(message)
41         self.code = code
42         self._debug('%s [%s]' % (message, code))
43
44
45 class InvalidRequest(ProviderException):
46
47     def __init__(self, message):
48         super(InvalidRequest, self).__init__(message)
49         self._debug(message)
50
51
52 class ProviderBase(PluginConfig, PluginObject):
53
54     def __init__(self, name, path, *pargs):
55         PluginConfig.__init__(self)
56         PluginObject.__init__(self, *pargs)
57         self.name = name
58         self._root = None
59         self.path = path
60         self.tree = None
61
62     def get_tree(self, site):
63         raise NotImplementedError
64
65     def register(self, root, site):
66
67         self._root = root
68         # init pages and admin interfaces
69         self.tree = self.get_tree(site)
70         self._debug('IdP Provider registered: %s' % self.name)
71
72     def on_enable(self):
73         self._root.add_subtree(self.name, self.tree)
74
75     def on_disable(self):
76         self._root.del_subtree(self.name)
77
78
79 class ProviderPageBase(Page):
80
81     def __init__(self, site, config):
82         super(ProviderPageBase, self).__init__(site)
83         self.plugin_name = config.name
84         self.cfg = config
85
86     def GET(self, *args, **kwargs):
87         raise cherrypy.HTTPError(501)
88
89     def POST(self, *args, **kwargs):
90         raise cherrypy.HTTPError(501)
91
92     def root(self, *args, **kwargs):
93         method = cherrypy.request.method
94
95         preop = getattr(self, 'pre_%s' % method, None)
96         if preop and callable(preop):
97             preop(*args, **kwargs)
98
99         op = getattr(self, method, self.GET)
100         if callable(op):
101             return op(*args, **kwargs)
102         else:
103             raise cherrypy.HTTPError(405)
104
105     def _debug(self, fact):
106         superfact = '%s: %s' % (self.plugin_name, fact)
107         super(ProviderPageBase, self)._debug(superfact)
108
109     def _audit(self, fact):
110         cherrypy.log('%s: %s' % (self.plugin_name, fact))
111
112
113 FACILITY = 'provider_config'
114
115
116 class LoadProviders(Log):
117
118     def __init__(self, root, site):
119         plugins = PluginLoader(LoadProviders, FACILITY, 'IdpProvider')
120         plugins.get_plugin_data()
121         site[FACILITY] = plugins
122
123         available = plugins.available.keys()
124         self._debug('Available providers: %s' % str(available))
125
126         for item in plugins.available:
127             plugin = plugins.available[item]
128             plugin.register(root, site)
129
130         for item in plugins.enabled:
131             self._debug('Provider plugin in enabled list: %s' % item)
132             if item not in plugins.available:
133                 continue
134             plugins.available[item].enable()
135
136
137 class ProvidersInstall(object):
138
139     def __init__(self):
140         pi = PluginInstaller(ProvidersInstall, FACILITY)
141         self.plugins = pi.get_plugins()