annotate rhodecode/config/middleware.py @ 2031:82a88013a3fd

merge 1.3 into stable
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 17:25:09 +0200
parents 752b0a7b7679 87f0800abc7b
children a5f0bc867edc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
1 """Pylons middleware initialization"""
1018
da5075ce681c rhodecode config module refactoring
Marcin Kuzminski <marcin@python-works.com>
parents: 914
diff changeset
2
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
3 from beaker.middleware import SessionMiddleware
1018
da5075ce681c rhodecode config module refactoring
Marcin Kuzminski <marcin@python-works.com>
parents: 914
diff changeset
4 from routes.middleware import RoutesMiddleware
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
5 from paste.cascade import Cascade
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
6 from paste.registry import RegistryManager
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
7 from paste.urlparser import StaticURLParser
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
8 from paste.deploy.converters import asbool
1018
da5075ce681c rhodecode config module refactoring
Marcin Kuzminski <marcin@python-works.com>
parents: 914
diff changeset
9 from paste.gzipper import make_gzip_middleware
da5075ce681c rhodecode config module refactoring
Marcin Kuzminski <marcin@python-works.com>
parents: 914
diff changeset
10
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
11 from pylons.middleware import ErrorHandler, StatusCodeRedirect
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
12 from pylons.wsgiapp import PylonsApp
1018
da5075ce681c rhodecode config module refactoring
Marcin Kuzminski <marcin@python-works.com>
parents: 914
diff changeset
13
547
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 341
diff changeset
14 from rhodecode.lib.middleware.simplehg import SimpleHg
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
15 from rhodecode.lib.middleware.simplegit import SimpleGit
547
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 341
diff changeset
16 from rhodecode.lib.middleware.https_fixup import HttpsFixup
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 341
diff changeset
17 from rhodecode.config.environment import load_environment
12
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
18
1205
f4807acf643d added __license__ into main of rhodecode, PEP8ify
Marcin Kuzminski <marcin@python-works.com>
parents: 1203
diff changeset
19
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
20 def make_app(global_conf, full_stack=True, static_files=True, **app_conf):
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
21 """Create a Pylons WSGI application and return it
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
22
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
23 ``global_conf``
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
24 The inherited configuration for this application. Normally from
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
25 the [DEFAULT] section of the Paste ini file.
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
26
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
27 ``full_stack``
12
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
28 Whether or not this application provides a full WSGI stack (by
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
29 default, meaning it handles its own exceptions and errors).
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
30 Disable full_stack when this application is "managed" by
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
31 another WSGI middleware.
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
32
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
33 ``app_conf``
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
34 The application's local configuration. Normally specified in
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
35 the [app:<name>] section of the Paste ini file (where <name>
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
36 defaults to main).
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
37
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
38 """
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
39 # Configure the Pylons environment
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
40 config = load_environment(global_conf, app_conf)
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
41
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
42 # The Pylons WSGI app
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
43 app = PylonsApp(config=config)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
44
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
45 # Routing/Session/Cache Middleware
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
46 app = RoutesMiddleware(app, config['routes.map'])
21
fac1f62a1d71 Wrapped into mako templates,
Marcin Kuzminski
parents: 17
diff changeset
47 app = SessionMiddleware(app, config)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
48
204
a8ea3ce3cdc4 Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents: 203
diff changeset
49 # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares)
1355
bfc529377cdc added simple profiling middleware controlled by .ini file flag
Marcin Kuzminski <marcin@python-works.com>
parents: 1205
diff changeset
50 if asbool(config['pdebug']):
bfc529377cdc added simple profiling middleware controlled by .ini file flag
Marcin Kuzminski <marcin@python-works.com>
parents: 1205
diff changeset
51 from rhodecode.lib.profiler import ProfilingMiddleware
bfc529377cdc added simple profiling middleware controlled by .ini file flag
Marcin Kuzminski <marcin@python-works.com>
parents: 1205
diff changeset
52 app = ProfilingMiddleware(app)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
53
1982
87f0800abc7b #227 Initial version of repository groups permissions system
Marcin Kuzminski <marcin@python-works.com>
parents: 1696
diff changeset
54 if asbool(full_stack):
1534
72c3cea0175a fixes problem with basic auth and pushes
Marcin Kuzminski <marcin@python-works.com>
parents: 1496
diff changeset
55
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
56 # Handle Python exceptions
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
57 app = ErrorHandler(app, global_conf, **config['pylons.errorware'])
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
58
1696
2d85e969d78a overcomes git push issues with errormiddleware and debug off
Marcin Kuzminski <marcin@python-works.com>
parents: 1534
diff changeset
59 # we want our low level middleware to get to the request ASAP. We don't
2d85e969d78a overcomes git push issues with errormiddleware and debug off
Marcin Kuzminski <marcin@python-works.com>
parents: 1534
diff changeset
60 # need any pylons stack middleware in them
2d85e969d78a overcomes git push issues with errormiddleware and debug off
Marcin Kuzminski <marcin@python-works.com>
parents: 1534
diff changeset
61 app = SimpleHg(app, config)
2d85e969d78a overcomes git push issues with errormiddleware and debug off
Marcin Kuzminski <marcin@python-works.com>
parents: 1534
diff changeset
62 app = SimpleGit(app, config)
2d85e969d78a overcomes git push issues with errormiddleware and debug off
Marcin Kuzminski <marcin@python-works.com>
parents: 1534
diff changeset
63
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
64 # Display error documents for 401, 403, 404 status codes (and
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
65 # 500 when debug is disabled)
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
66 if asbool(config['debug']):
86
e47d1db5ef20 Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents: 49
diff changeset
67 app = StatusCodeRedirect(app)
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
68 else:
86
e47d1db5ef20 Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents: 49
diff changeset
69 app = StatusCodeRedirect(app, [400, 401, 403, 404, 500])
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
70
216
c8162373f214 Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
Marcin Kuzminski <marcin@python-works.com>
parents: 207
diff changeset
71 #enable https redirets based on HTTP_X_URL_SCHEME set by proxy
914
110a00c181de Added force https option into config files
Marcin Kuzminski <marcin@python-works.com>
parents: 702
diff changeset
72 app = HttpsFixup(app, config)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
73
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
74 # Establish the Registry for this application
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
75 app = RegistryManager(app)
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
76
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
77 if asbool(static_files):
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
78 # Serve static files
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
79 static_app = StaticURLParser(config['pylons.paths']['static_files'])
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
80 app = Cascade([static_app, app])
702
a9158dfa05cc added gzip middleware
Marcin Kuzminski <marcin@python-works.com>
parents: 635
diff changeset
81 app = make_gzip_middleware(app, global_conf, compress_level=1)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
82
269
183c06406127 fixed bug in middleware config
Marcin Kuzminski <marcin@python-works.com>
parents: 216
diff changeset
83 app.config = config
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
84
12
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
85 return app