Rename a few files and minor cleanup
[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
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
c81186dd
RE
72 media_type_warning()
73
5907154a
E
74 setup_crypto()
75
3f5cf663
CAW
76 ##########################################
77 # Setup other connections / useful objects
78 ##########################################
79
b0ee3aae
E
80 # Setup Session Manager, not needed in celery
81 self.session_manager = session.SessionManager()
82
6ef75af5
SS
83 # load all available locales
84 setup_locales()
85
29b6f917
WKG
86 # Set up plugins -- need to do this early so that plugins can
87 # affect startup.
88 _log.info("Setting up plugins.")
89 setup_plugins()
90
3f5cf663 91 # Set up the database
4a698535 92 self.db = setup_database(app_config['run_migrations'])
ff94114c 93
828fc630 94 # Register themes
975be468 95 self.theme_registry, self.current_theme = register_themes(app_config)
828fc630 96
5afdd7a1 97 # Get the template environment
42ef819c 98 self.template_loader = get_jinja_loader(
3b47da8e 99 app_config.get('local_templates'),
8545dd50 100 self.current_theme,
05e007c1 101 PluginManager().get_template_paths()
8545dd50 102 )
0c8a30e6 103
744f1c83
RE
104 # Check if authentication plugin is enabled and respond accordingly.
105 self.auth = check_auth_enabled()
1bce0c15
RE
106 if not self.auth:
107 app_config['allow_comments'] = False
744f1c83 108
5afdd7a1 109 # Set up storage systems
dccef262 110 self.public_store, self.queue_store = setup_storage()
5afdd7a1
CAW
111
112 # set up routing
48cf435d 113 self.url_map = get_url_map()
31a8ff42 114
582c4d5f 115 # set up staticdirector tool
c85c9dc7 116 self.staticdirector = get_staticdirector(app_config)
3f5cf663
CAW
117
118 # Setup celery, if appropriate
119 if setup_celery and not app_config.get('celery_setup_elsewhere'):
d9a31a39 120 if os.environ.get('CELERY_ALWAYS_EAGER', 'false').lower() == 'true':
3f5cf663
CAW
121 setup_celery_from_config(
122 app_config, global_config,
123 force_celery_always_eager=True)
124 else:
125 setup_celery_from_config(app_config, global_config)
126
127 #######################################################
128 # Insert appropriate things into mediagoblin.mg_globals
129 #
df9809c2
CAW
130 # certain properties need to be accessed globally eg from
131 # validators, etc, which might not access to the request
132 # object.
3f5cf663
CAW
133 #######################################################
134
243c3843 135 setup_globals(app=self)
1fd97db3
CAW
136
137 # Workbench *currently* only used by celery, so this only
138 # matters in always eager mode :)
7664b4db 139 setup_workbench()
df9809c2 140
ce5ae8da
CAW
141 # instantiate application meddleware
142 self.meddleware = [common.import_component(m)(self)
143 for m in meddleware.ENABLED_MEDDLEWARE]
0c8a30e6 144
e824570a 145 def call_backend(self, environ, start_response):
31a8ff42 146 request = Request(environ)
0c8a30e6 147
726896b6 148 # Compatibility with django, use request.args preferrably
f1d06e1d 149 request.GET = request.args
f1d06e1d 150
582c4d5f 151 ## Routing / controller loading stuff
7742dcc1 152 map_adapter = self.url_map.bind_to_environ(request.environ)
31a8ff42 153
05788ef4
E
154 # By using fcgi, mediagoblin can run under a base path
155 # like /mediagoblin/. request.path_info contains the
156 # path inside mediagoblin. If the something needs the
157 # full path of the current page, that should include
158 # the basepath.
159 # Note: urlgen and routes are fine!
f1d06e1d 160 request.full_path = environ["SCRIPT_NAME"] + request.path
05788ef4
E
161 # python-routes uses SCRIPT_NAME. So let's use that too.
162 # The other option would be:
163 # request.full_path = environ["SCRIPT_URL"]
164
871fc591 165 # Fix up environ for urlgen
d23d4b23 166 # See bug: https://bitbucket.org/bbangert/routes/issue/55/cache_hostinfo-breaks-on-https-off
871fc591
E
167 if environ.get('HTTPS', '').lower() == 'off':
168 environ.pop('HTTPS')
169
3d0557bf 170 ## Attach utilities to the request object
3d0557bf 171 # Do we really want to load this via middleware? Maybe?
b0ee3aae 172 session_manager = self.session_manager
c7424612 173 request.session = session_manager.load_session_from_cookie(request)
3d0557bf
CAW
174 # Attach self as request.app
175 # Also attach a few utilities from request.app for convenience?
176 request.app = self
0c8a30e6 177
3d0557bf
CAW
178 request.db = self.db
179 request.staticdirect = self.staticdirector
180
1ec7ff2a
JW
181 request.locale = translate.get_locale_from_request(request)
182 request.template_env = template.get_jinja_env(
183 self.template_loader, request.locale)
7742dcc1
JW
184
185 def build_proxy(endpoint, **kw):
186 try:
187 qualified = kw.pop('qualified')
188 except KeyError:
189 qualified = False
190
191 return map_adapter.build(
192 endpoint,
193 values=dict(**kw),
194 force_external=qualified)
195
196 request.urlgen = build_proxy
197
5101c469 198 # Log user out if authentication_disabled
c9dec8b3
RE
199 no_auth_logout(request)
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