Drop usage of self._debug and use self.debug instead
[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, ChoiceLoader
30 import ipsilon.util.sessions
31
32
33 def nuke_session_locks():
34     if cherrypy.config['tools.sessions.on']:
35         try:
36             sessdir = cherrypy.config['tools.sessions.storage_path']
37             for l in glob.glob(os.path.join(sessdir, '*.lock')):
38                 try:
39                     os.remove(l)
40                 except Exception:  # pylint: disable=broad-except
41                     pass
42         except Exception:  # pylint: disable=broad-except
43             pass
44
45 cfgfile = None
46 if (len(sys.argv) > 1):
47     cfgfile = sys.argv[-1]
48 elif os.path.isfile('ipsilon.conf'):
49     cfgfile = 'ipsilon.conf'
50 elif os.path.isfile('/etc/ipsilon/ipsilon.conf'):
51     cfgfile = '/etc/ipsilon/ipsilon.conf'
52 else:
53     raise IOError("Configuration file not found")
54
55 cherrypy.lib.sessions.SqlSession = ipsilon.util.sessions.SqlSession
56 cherrypy.config.update(cfgfile)
57
58 nuke_session_locks()
59
60 datastore = AdminStore()
61 admin_config = datastore.load_config()
62 for option in admin_config:
63     cherrypy.config[option] = admin_config[option]
64
65 template_loaders = []
66 default_template_dir = 'templates'
67 template_dir = cherrypy.config.get('template_dir', default_template_dir)
68 if template_dir.startswith('/'):
69     template_loaders.append(FileSystemLoader(template_dir))
70 else:
71     template_loaders.append(FileSystemLoader(
72         os.path.join(cherrypy.config['base.dir'],
73                      template_dir)))
74 # Fall-back to the default templates
75 template_loaders.append(FileSystemLoader(
76     os.path.join(cherrypy.config['base.dir'],
77                  default_template_dir)))
78 template_env = Environment(loader=ChoiceLoader(template_loaders))
79
80 if __name__ == "__main__":
81     conf = {'/': {'tools.staticdir.root': os.getcwd()},
82             '/ui': {'tools.staticdir.on': True,
83                     'tools.staticdir.dir': 'ui'}}
84     cherrypy.quickstart(Root('default', template_env),
85                         cherrypy.config['base.mount'], conf)
86
87 else:
88     cherrypy.config['environment'] = 'embedded'
89
90     if cherrypy.__version__.startswith('3.0') and cherrypy.engine.state == 0:
91         cherrypy.engine.start(blocking=False)
92         atexit.register(cherrypy.engine.stop)
93
94     application = cherrypy.Application(Root('default', template_env),
95                                        script_name=None, config=None)