Adding app_config and global_config to the template environment
[mediagoblin.git] / mediagoblin / tools / response.py
CommitLineData
03ae172a
AW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
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
17from webob import Response, exc
18from mediagoblin.tools.template import render_template
19
ee91c2b8 20
03ae172a
AW
21def render_to_response(request, template, context, status=200):
22 """Much like Django's shortcut.render()"""
23 return Response(
24 render_template(request, template, context),
25 status=status)
26
ee91c2b8 27
03ae172a
AW
28def render_404(request):
29 """
30 Render a 404.
31 """
32 return render_to_response(
33 request, 'mediagoblin/404.html', {}, status=400)
34
ee91c2b8 35
03ae172a
AW
36def redirect(request, *args, **kwargs):
37 """Returns a HTTPFound(), takes a request and then urlgen params"""
ee91c2b8 38
03ae172a
AW
39 querystring = None
40 if kwargs.get('querystring'):
41 querystring = kwargs.get('querystring')
42 del kwargs['querystring']
43
44 return exc.HTTPFound(
45 location=''.join([
46 request.urlgen(*args, **kwargs),
47 querystring if querystring else '']))