forgot to render errors
[mediagoblin.git] / mediagoblin / app.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
e5572c60
ML
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
571198c9 17import os
ec97c937 18import logging
31a8ff42 19
3d914332
E
20from mediagoblin.routing import get_url_map
21from mediagoblin.tools.routing import endpoint_to_controller
7742dcc1 22
f1d06e1d 23from werkzeug.wrappers import Request
e5e2c5e7 24from werkzeug.exceptions import HTTPException
fd61aac7 25from werkzeug.routing import RequestRedirect
31a8ff42 26
7742dcc1 27from mediagoblin import meddleware, __version__
c7424612 28from mediagoblin.tools import common, session, translate, template
785b287f 29from mediagoblin.tools.response import render_http_exception
828fc630 30from mediagoblin.tools.theme import register_themes
152a3bfa 31from mediagoblin.tools import request as mg_request
6e7ce8d1 32from mediagoblin.mg_globals import setup_globals
073b61fe 33from mediagoblin.init.celery import setup_celery_from_config
29b6f917 34from mediagoblin.init.plugins import setup_plugins
50854db0 35from mediagoblin.init import (get_jinja_loader, get_staticdirector,
6ef75af5 36 setup_global_and_app_config, setup_locales, setup_workbench, setup_database,
9e1fa239 37 setup_storage)
c5d8d301 38from mediagoblin.tools.pluginapi import PluginManager, hook_transform
5907154a 39from mediagoblin.tools.crypto import setup_crypto
c9dec8b3 40from mediagoblin.auth.tools import check_auth_enabled, no_auth_logout
2d7b6bde 41from mediagoblin import notifications
90e342f9 42
31a8ff42 43
ec97c937
E
44_log = logging.getLogger(__name__)
45
46
8e1e744d 47class MediaGoblinApp(object):
31a8ff42 48 """
3f5cf663
CAW
49 WSGI application of MediaGoblin
50
51 ... this is the heart of the program!
31a8ff42 52 """
3f5cf663
CAW
53 def __init__(self, config_path, setup_celery=True):
54 """
55 Initialize the application based on a configuration file.
56
57 Arguments:
58 - config_path: path to the configuration file we're opening.
59 - setup_celery: whether or not to setup celery during init.
60 (Note: setting 'celery_setup_elsewhere' also disables
61 setting up celery.)
62 """
ec97c937 63 _log.info("GNU MediaGoblin %s main server starting", __version__)
3f369674 64 _log.debug("Using config file %s", config_path)
3f5cf663
CAW
65 ##############
66 # Setup config
67 ##############
68
69 # Open and setup the config
fe289be4 70 global_config, app_config = setup_global_and_app_config(config_path)
3f5cf663 71
5907154a
E
72 setup_crypto()
73
3f5cf663
CAW
74 ##########################################
75 # Setup other connections / useful objects
76 ##########################################
77
b0ee3aae
E
78 # Setup Session Manager, not needed in celery
79 self.session_manager = session.SessionManager()
80
6ef75af5
SS
81 # load all available locales
82 setup_locales()
83
29b6f917
WKG
84 # Set up plugins -- need to do this early so that plugins can
85 # affect startup.
86 _log.info("Setting up plugins.")
87 setup_plugins()
88
3f5cf663 89 # Set up the database
4a698535 90 self.db = setup_database(app_config['run_migrations'])
ff94114c 91
828fc630 92 # Register themes
975be468 93 self.theme_registry, self.current_theme = register_themes(app_config)
828fc630 94
5afdd7a1 95 # Get the template environment
42ef819c 96 self.template_loader = get_jinja_loader(
3b47da8e 97 app_config.get('local_templates'),
8545dd50 98 self.current_theme,
05e007c1 99 PluginManager().get_template_paths()
8545dd50 100 )
0c8a30e6 101
744f1c83
RE
102 # Check if authentication plugin is enabled and respond accordingly.
103 self.auth = check_auth_enabled()
1bce0c15
RE
104 if not self.auth:
105 app_config['allow_comments'] = False
744f1c83 106
5afdd7a1 107 # Set up storage systems
dccef262 108 self.public_store, self.queue_store = setup_storage()
5afdd7a1
CAW
109
110 # set up routing
48cf435d 111 self.url_map = get_url_map()
31a8ff42 112
582c4d5f 113 # set up staticdirector tool
c85c9dc7 114 self.staticdirector = get_staticdirector(app_config)
3f5cf663
CAW
115
116 # Setup celery, if appropriate
117 if setup_celery and not app_config.get('celery_setup_elsewhere'):
d9a31a39 118 if os.environ.get('CELERY_ALWAYS_EAGER', 'false').lower() == 'true':
3f5cf663
CAW
119 setup_celery_from_config(
120 app_config, global_config,
121 force_celery_always_eager=True)
122 else:
123 setup_celery_from_config(app_config, global_config)
124
125 #######################################################
126 # Insert appropriate things into mediagoblin.mg_globals
127 #
df9809c2
CAW
128 # certain properties need to be accessed globally eg from
129 # validators, etc, which might not access to the request
130 # object.
3f5cf663
CAW
131 #######################################################
132
243c3843 133 setup_globals(app=self)
1fd97db3
CAW
134
135 # Workbench *currently* only used by celery, so this only
136 # matters in always eager mode :)
7664b4db 137 setup_workbench()
df9809c2 138
ce5ae8da
CAW
139 # instantiate application meddleware
140 self.meddleware = [common.import_component(m)(self)
141 for m in meddleware.ENABLED_MEDDLEWARE]
0c8a30e6 142
e824570a 143 def call_backend(self, environ, start_response):
31a8ff42 144 request = Request(environ)
0c8a30e6 145
726896b6 146 # Compatibility with django, use request.args preferrably
f1d06e1d 147 request.GET = request.args
f1d06e1d 148
582c4d5f 149 ## Routing / controller loading stuff
7742dcc1 150 map_adapter = self.url_map.bind_to_environ(request.environ)
31a8ff42 151
05788ef4
E
152 # By using fcgi, mediagoblin can run under a base path
153 # like /mediagoblin/. request.path_info contains the
154 # path inside mediagoblin. If the something needs the
155 # full path of the current page, that should include
156 # the basepath.
157 # Note: urlgen and routes are fine!
f1d06e1d 158 request.full_path = environ["SCRIPT_NAME"] + request.path
05788ef4
E
159 # python-routes uses SCRIPT_NAME. So let's use that too.
160 # The other option would be:
161 # request.full_path = environ["SCRIPT_URL"]
162
871fc591 163 # Fix up environ for urlgen
d23d4b23 164 # See bug: https://bitbucket.org/bbangert/routes/issue/55/cache_hostinfo-breaks-on-https-off
871fc591
E
165 if environ.get('HTTPS', '').lower() == 'off':
166 environ.pop('HTTPS')
167
3d0557bf 168 ## Attach utilities to the request object
3d0557bf 169 # Do we really want to load this via middleware? Maybe?
b0ee3aae 170 session_manager = self.session_manager
c7424612 171 request.session = session_manager.load_session_from_cookie(request)
3d0557bf
CAW
172 # Attach self as request.app
173 # Also attach a few utilities from request.app for convenience?
174 request.app = self
0c8a30e6 175
3d0557bf
CAW
176 request.db = self.db
177 request.staticdirect = self.staticdirector
178
1ec7ff2a
JW
179 request.locale = translate.get_locale_from_request(request)
180 request.template_env = template.get_jinja_env(
181 self.template_loader, request.locale)
7742dcc1
JW
182
183 def build_proxy(endpoint, **kw):
184 try:
185 qualified = kw.pop('qualified')
186 except KeyError:
187 qualified = False
188
189 return map_adapter.build(
190 endpoint,
191 values=dict(**kw),
192 force_external=qualified)
193
194 request.urlgen = build_proxy
195
5101c469 196 # Log user out if authentication_disabled
c9dec8b3
RE
197 no_auth_logout(request)
198
2d7b6bde
JW
199 request.notifications = notifications
200
8ce8faaf
RE
201 mg_request.setup_user_in_request(request)
202
f7a5c7c7 203 request.controller_name = None
1ec7ff2a 204 try:
05501c57 205 found_rule, url_values = map_adapter.match(return_rule=True)
1ec7ff2a 206 request.matchdict = url_values
fd61aac7
SS
207 except RequestRedirect as response:
208 # Deal with 301 responses eg due to missing final slash
209 return response(environ, start_response)
1ec7ff2a 210 except HTTPException as exc:
785b287f
SS
211 # Stop and render exception
212 return render_http_exception(
213 request, exc,
214 exc.get_description(environ))(environ, start_response)
1ec7ff2a 215
05501c57 216 controller = endpoint_to_controller(found_rule)
98dacfe6 217 # Make a reference to the controller's symbolic name on the request...
38103094 218 # used for lazy context modification
98dacfe6 219 request.controller_name = found_rule.endpoint
91cf6738
NY
220
221 # pass the request through our meddleware classes
785b287f
SS
222 try:
223 for m in self.meddleware:
224 response = m.process_request(request, controller)
225 if response is not None:
226 return response(environ, start_response)
227 except HTTPException as e:
228 return render_http_exception(
229 request, e,
230 e.get_description(environ))(environ, start_response)
91cf6738 231
31a8ff42
CAW
232 request.start_response = start_response
233
785b287f
SS
234 # get the Http response from the controller
235 try:
236 response = controller(request)
237 except HTTPException as e:
238 response = render_http_exception(
239 request, e, e.get_description(environ))
0c8a30e6 240
785b287f
SS
241 # pass the response through the meddlewares
242 try:
243 for m in self.meddleware[::-1]:
244 m.process_response(request, response)
245 except HTTPException as e:
6a28bc4e 246 response = render_http_exception(
785b287f 247 request, e, e.get_description(environ))
0c8a30e6 248
b0ee3aae
E
249 session_manager.save_session_to_cookie(request.session,
250 request, response)
c7424612 251
e824570a
E
252 return response(environ, start_response)
253
254 def __call__(self, environ, start_response):
255 ## If more errors happen that look like unclean sessions:
256 # self.db.check_session_clean()
257
2bc8ff0d 258 try:
e824570a
E
259 return self.call_backend(environ, start_response)
260 finally:
261 # Reset the sql session, so that the next request
262 # gets a fresh session
2bc8ff0d 263 self.db.reset_after_request()
31a8ff42
CAW
264
265
5784c4e9 266def paste_app_factory(global_config, **app_config):
91903aa6
CAW
267 configs = app_config['config'].split()
268 mediagoblin_config = None
269 for config in configs:
270 if os.path.exists(config) and os.access(config, os.R_OK):
271 mediagoblin_config = config
272 break
273
274 if not mediagoblin_config:
275 raise IOError("Usable mediagoblin config not found.")
276
277 mgoblin_app = MediaGoblinApp(mediagoblin_config)
c5d8d301 278 mgoblin_app = hook_transform('wrap_wsgi', mgoblin_app)
f3f53028 279
c4d71564 280 return mgoblin_app