annotate rhodecode/config/middleware.py @ 1203:6832ef664673 beta

source code cleanup: remove trailing white space, normalize file endings
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 03 Apr 2011 18:23:15 +0200
parents da5075ce681c
children f4807acf643d
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
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
19 def make_app(global_conf, full_stack=True, static_files=True, **app_conf):
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
20 """Create a Pylons WSGI application and return it
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
21
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
22 ``global_conf``
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
23 The inherited configuration for this application. Normally from
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
24 the [DEFAULT] section of the Paste ini file.
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
25
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
26 ``full_stack``
12
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
27 Whether or not this application provides a full WSGI stack (by
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
28 default, meaning it handles its own exceptions and errors).
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
29 Disable full_stack when this application is "managed" by
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
30 another WSGI middleware.
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
31
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
32 ``app_conf``
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
33 The application's local configuration. Normally specified in
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
34 the [app:<name>] section of the Paste ini file (where <name>
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
35 defaults to main).
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
36
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
37 """
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
38 # Configure the Pylons environment
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
39 config = load_environment(global_conf, app_conf)
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
40
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
41 # The Pylons WSGI app
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
42 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
43
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
44 # Routing/Session/Cache Middleware
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
45 app = RoutesMiddleware(app, config['routes.map'])
21
fac1f62a1d71 Wrapped into mako templates,
Marcin Kuzminski
parents: 17
diff changeset
46 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
47
204
a8ea3ce3cdc4 Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents: 203
diff changeset
48 # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares)
635
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
49
101
8b06c420491d statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents: 86
diff changeset
50 app = SimpleHg(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
51 app = SimpleGit(app, config)
fd63782c4426 Fixed age, for new vcs implementation. Removed all obsolete date formatters
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
52
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
53 if asbool(full_stack):
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
54 # Handle Python exceptions
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
55 app = ErrorHandler(app, global_conf, **config['pylons.errorware'])
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
56
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
57 # Display error documents for 401, 403, 404 status codes (and
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
58 # 500 when debug is disabled)
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
59 if asbool(config['debug']):
86
e47d1db5ef20 Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents: 49
diff changeset
60 app = StatusCodeRedirect(app)
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
61 else:
86
e47d1db5ef20 Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents: 49
diff changeset
62 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
63
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
64 #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
65 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
66
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
67 # Establish the Registry for this application
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
68 app = RegistryManager(app)
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
69
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
70 if asbool(static_files):
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
71 # Serve static files
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
72 static_app = StaticURLParser(config['pylons.paths']['static_files'])
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
73 app = Cascade([static_app, app])
702
a9158dfa05cc added gzip middleware
Marcin Kuzminski <marcin@python-works.com>
parents: 635
diff changeset
74 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
75
269
183c06406127 fixed bug in middleware config
Marcin Kuzminski <marcin@python-works.com>
parents: 216
diff changeset
76 app.config = config
43
2e1247e62c5b changed for pylons 0.1 / 1.0
marcink
parents: 41
diff changeset
77
12
5f30a6d558dc Added pylons manage script
Marcin Kuzminski
parents: 10
diff changeset
78 return app