97a75517d70baaf0eaf179c0121123bd5f4229d4
[invirt/packages/invirt-web.git] / code / auth.fcgi
1 #!/usr/bin/python
2 """Main FastCGI entry point for authenticated web interface"""
3
4 import cherrypy
5 import os
6 import sys
7 from main import InvirtWeb
8
9 dev = False
10 base_dir = os.path.dirname(__file__)
11
12 def usage():
13     print >>sys.stderr, """%s [config]
14
15 Run server as FastCGI, with CherryPy config from "main.conf".
16
17 With `config`, run standalone with CherryPy config from `config`.
18 """ % sys.argv[0]
19     sys.exit(2)
20
21 if __name__ == "__main__":
22     static_dir = os.path.join(base_dir, 'static')
23
24     if len(sys.argv) > 2:
25         usage()
26     if len(sys.argv) > 1:
27         if sys.argv[1] in ('-h', '--help'):
28             usage()
29         conf_file = sys.argv[1]
30         dev = True
31     else:
32         conf_file = os.path.join(base_dir, 'main.conf')
33
34     app_config = {
35         '/': {
36             'tools.invirtwebstate.on': True,
37             },
38         }
39                     
40     app = cherrypy.tree.mount(InvirtWeb(),
41                               '/',
42                               app_config)
43     app.merge(conf_file)
44     cherrypy.config.update(conf_file)
45
46     if dev:
47         cherrypy.server.quickstart()
48         cherrypy.engine.start()
49         cherrypy.engine.block()
50     else:
51         cherrypy.engine.start(blocking=False)
52         from flup.server.fcgi import WSGIServer
53         server = WSGIServer(cherrypy.tree)
54         server.run()