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