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