removed _make_safe in favor of functools.wraps
[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
31a8ff42 18import urllib
ec97c937 19import logging
31a8ff42 20
31a8ff42 21import routes
b61874b2 22from webob import Request, exc
31a8ff42 23
ec97c937 24from mediagoblin import routing, meddleware, __version__
c0022ecc
CAW
25from mediagoblin.tools import common, translate, template
26from mediagoblin.tools.response import render_404
152a3bfa 27from mediagoblin.tools import request as mg_request
6e7ce8d1 28from mediagoblin.mg_globals import setup_globals
073b61fe 29from mediagoblin.init.celery import setup_celery_from_config
29b6f917 30from mediagoblin.init.plugins import setup_plugins
50854db0
WKG
31from mediagoblin.init import (get_jinja_loader, get_staticdirector,
32 setup_global_and_app_config, setup_workbench, setup_database,
0533f117 33 setup_storage, setup_beaker_cache)
90e342f9 34
31a8ff42 35
ec97c937
E
36_log = logging.getLogger(__name__)
37
38
8e1e744d 39class MediaGoblinApp(object):
31a8ff42 40 """
3f5cf663
CAW
41 WSGI application of MediaGoblin
42
43 ... this is the heart of the program!
31a8ff42 44 """
3f5cf663
CAW
45 def __init__(self, config_path, setup_celery=True):
46 """
47 Initialize the application based on a configuration file.
48
49 Arguments:
50 - config_path: path to the configuration file we're opening.
51 - setup_celery: whether or not to setup celery during init.
52 (Note: setting 'celery_setup_elsewhere' also disables
53 setting up celery.)
54 """
ec97c937 55 _log.info("GNU MediaGoblin %s main server starting", __version__)
3f369674 56 _log.debug("Using config file %s", config_path)
3f5cf663
CAW
57 ##############
58 # Setup config
59 ##############
60
61 # Open and setup the config
fe289be4 62 global_config, app_config = setup_global_and_app_config(config_path)
3f5cf663
CAW
63
64 ##########################################
65 # Setup other connections / useful objects
66 ##########################################
67
29b6f917
WKG
68 # Set up plugins -- need to do this early so that plugins can
69 # affect startup.
70 _log.info("Setting up plugins.")
71 setup_plugins()
72
3f5cf663 73 # Set up the database
3f4b5e4a 74 self.connection, self.db = setup_database()
ff94114c 75
5afdd7a1 76 # Get the template environment
42ef819c 77 self.template_loader = get_jinja_loader(
1e9d1acc 78 app_config.get('local_templates'))
0c8a30e6 79
5afdd7a1 80 # Set up storage systems
dccef262 81 self.public_store, self.queue_store = setup_storage()
5afdd7a1
CAW
82
83 # set up routing
0f63a944 84 self.routing = routing.get_mapper()
31a8ff42 85
582c4d5f 86 # set up staticdirector tool
c85c9dc7 87 self.staticdirector = get_staticdirector(app_config)
3f5cf663 88
0533f117
CAW
89 # set up caching
90 self.cache = setup_beaker_cache()
91
3f5cf663
CAW
92 # Setup celery, if appropriate
93 if setup_celery and not app_config.get('celery_setup_elsewhere'):
d9a31a39 94 if os.environ.get('CELERY_ALWAYS_EAGER', 'false').lower() == 'true':
3f5cf663
CAW
95 setup_celery_from_config(
96 app_config, global_config,
97 force_celery_always_eager=True)
98 else:
99 setup_celery_from_config(app_config, global_config)
100
101 #######################################################
102 # Insert appropriate things into mediagoblin.mg_globals
103 #
df9809c2
CAW
104 # certain properties need to be accessed globally eg from
105 # validators, etc, which might not access to the request
106 # object.
3f5cf663
CAW
107 #######################################################
108
243c3843 109 setup_globals(app=self)
1fd97db3
CAW
110
111 # Workbench *currently* only used by celery, so this only
112 # matters in always eager mode :)
7664b4db 113 setup_workbench()
df9809c2 114
ce5ae8da
CAW
115 # instantiate application meddleware
116 self.meddleware = [common.import_component(m)(self)
117 for m in meddleware.ENABLED_MEDDLEWARE]
0c8a30e6 118
e824570a 119 def call_backend(self, environ, start_response):
31a8ff42 120 request = Request(environ)
0c8a30e6 121
582c4d5f 122 ## Routing / controller loading stuff
0c8a30e6 123 path_info = request.path_info
0f63a944 124 route_match = self.routing.match(path_info)
31a8ff42 125
05788ef4
E
126 # By using fcgi, mediagoblin can run under a base path
127 # like /mediagoblin/. request.path_info contains the
128 # path inside mediagoblin. If the something needs the
129 # full path of the current page, that should include
130 # the basepath.
131 # Note: urlgen and routes are fine!
132 request.full_path = environ["SCRIPT_NAME"] + request.path_info
133 # python-routes uses SCRIPT_NAME. So let's use that too.
134 # The other option would be:
135 # request.full_path = environ["SCRIPT_URL"]
136
871fc591 137 # Fix up environ for urlgen
d23d4b23 138 # See bug: https://bitbucket.org/bbangert/routes/issue/55/cache_hostinfo-breaks-on-https-off
871fc591
E
139 if environ.get('HTTPS', '').lower() == 'off':
140 environ.pop('HTTPS')
141
3d0557bf
CAW
142 ## Attach utilities to the request object
143 request.matchdict = route_match
144 request.urlgen = routes.URLGenerator(self.routing, environ)
145 # Do we really want to load this via middleware? Maybe?
146 request.session = request.environ['beaker.session']
147 # Attach self as request.app
148 # Also attach a few utilities from request.app for convenience?
149 request.app = self
ae3bc7fa 150 request.locale = translate.get_locale_from_request(request)
0c8a30e6 151
ae3bc7fa 152 request.template_env = template.get_jinja_env(
3d0557bf
CAW
153 self.template_loader, request.locale)
154 request.db = self.db
155 request.staticdirect = self.staticdirector
156
152a3bfa 157 mg_request.setup_user_in_request(request)
3d0557bf 158
31a8ff42
CAW
159 # No matching page?
160 if route_match is None:
161 # Try to do see if we have a match with a trailing slash
162 # added and if so, redirect
163 if not path_info.endswith('/') \
164 and request.method == 'GET' \
0f63a944 165 and self.routing.match(path_info + '/'):
31a8ff42
CAW
166 new_path_info = path_info + '/'
167 if request.GET:
168 new_path_info = '%s?%s' % (
169 new_path_info, urllib.urlencode(request.GET))
1bb0fdf2 170 redirect = exc.HTTPFound(location=new_path_info)
31a8ff42
CAW
171 return request.get_response(redirect)(environ, start_response)
172
173 # Okay, no matches. 404 time!
3807e8e2 174 request.matchdict = {} # in case our template expects it
c0022ecc 175 return render_404(request)(environ, start_response)
31a8ff42 176
8a0d35e7
CAW
177 # import the controller, or if it's already a callable, call that
178 route_controller = route_match['controller']
179 if isinstance(route_controller, unicode) \
180 or isinstance(route_controller, str):
181 controller = common.import_component(route_match['controller'])
182 else:
183 controller = route_match['controller']
91cf6738
NY
184
185 # pass the request through our meddleware classes
186 for m in self.meddleware:
187 response = m.process_request(request, controller)
188 if response is not None:
189 return response(environ, start_response)
190
31a8ff42
CAW
191 request.start_response = start_response
192
0c8a30e6
NY
193 # get the response from the controller
194 response = controller(request)
195
ce5ae8da
CAW
196 # pass the response through the meddleware
197 for m in self.meddleware[::-1]:
0c8a30e6
NY
198 m.process_response(request, response)
199
e824570a
E
200 return response(environ, start_response)
201
202 def __call__(self, environ, start_response):
203 ## If more errors happen that look like unclean sessions:
204 # self.db.check_session_clean()
205
2bc8ff0d 206 try:
e824570a
E
207 return self.call_backend(environ, start_response)
208 finally:
209 # Reset the sql session, so that the next request
210 # gets a fresh session
2bc8ff0d 211 self.db.reset_after_request()
31a8ff42
CAW
212
213
5784c4e9 214def paste_app_factory(global_config, **app_config):
91903aa6
CAW
215 configs = app_config['config'].split()
216 mediagoblin_config = None
217 for config in configs:
218 if os.path.exists(config) and os.access(config, os.R_OK):
219 mediagoblin_config = config
220 break
221
222 if not mediagoblin_config:
223 raise IOError("Usable mediagoblin config not found.")
224
225 mgoblin_app = MediaGoblinApp(mediagoblin_config)
b61874b2 226
c4d71564 227 return mgoblin_app