Add OpenIDP Provider
[cascardo/ipsilon.git] / ipsilon / ipsilon
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013  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 import sys
21 sys.stdout = sys.stderr
22 import glob
23 import os
24 import atexit
25 import cherrypy
26 from ipsilon.util.data import AdminStore
27 from ipsilon.util import page
28 from ipsilon.root import Root
29 from jinja2 import Environment, FileSystemLoader
30
31
32 def nuke_session_locks():
33     if cherrypy.config['tools.sessions.on']:
34         try:
35             sessdir = cherrypy.config['tools.sessions.storage_path']
36             for l in glob.glob(os.path.join(sessdir, '*.lock')):
37                 try:
38                     os.remove(l)
39                 except Exception:  # pylint: disable=broad-except
40                     pass
41         except Exception:  # pylint: disable=broad-except
42             pass
43
44 cfgfile = None
45 if (len(sys.argv) > 1):
46     cfgfile = sys.argv[-1]
47 elif os.path.isfile('ipsilon.conf'):
48     cfgfile = 'ipsilon.conf'
49 elif os.path.isfile('/etc/ipsilon/ipsilon.conf'):
50     cfgfile = '/etc/ipsilon/ipsilon.conf'
51 else:
52     raise IOError("Configuration file not found")
53
54 cherrypy.config.update(cfgfile)
55
56 nuke_session_locks()
57
58 datastore = AdminStore()
59 admin_config = datastore.load_config()
60 for option in admin_config:
61     cherrypy.config[option] = admin_config[option]
62
63 templates = os.path.join(cherrypy.config['base.dir'], 'templates')
64 template_env = Environment(loader=FileSystemLoader(templates))
65
66 if __name__ == "__main__":
67     conf = {'/': {'tools.staticdir.root': os.getcwd()},
68             '/ui': {'tools.staticdir.on': True,
69                     'tools.staticdir.dir': 'ui'}}
70     cherrypy.quickstart(Root('default', template_env),
71                         cherrypy.config['base.mount'], conf)
72
73 else:
74     cherrypy.config['environment'] = 'embedded'
75
76     if cherrypy.__version__.startswith('3.0') and cherrypy.engine.state == 0:
77         cherrypy.engine.start(blocking=False)
78         atexit.register(cherrypy.engine.stop)
79
80     application = cherrypy.Application(Root('default', template_env),
81                                        script_name=None, config=None)