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