documentation for get_jinja_env
[mediagoblin.git] / mediagoblin / util.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
e5572c60
ML
2# Copyright (C) 2011 Free Software Foundation, Inc
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
31a8ff42 17import jinja2
58dec5ef 18import mongokit
31a8ff42
CAW
19
20def get_jinja_env(user_template_path=None):
904f61c2
CAW
21 """
22 Set up the Jinja environment, possibly allowing for user
23 overridden templates.
24
25 (In the future we may have another system for providing theming;
26 for now this is good enough.)
27 """
31a8ff42
CAW
28 if user_template_path:
29 loader = jinja2.ChoiceLoader(
30 [jinja2.FileSystemLoader(user_template_path),
31 jinja2.PackageLoader('mediagoblin', 'templates')])
32 else:
33 loader = jinja2.PackageLoader('mediagoblin', 'templates')
34
35 return jinja2.Environment(loader=loader, autoescape=True)
58dec5ef
CAW
36
37
38def setup_user_in_request(request):
39 """
40 Examine a request and tack on a request.user parameter if that's
41 appropriate.
42 """
43 if not request.session.has_key('user_id'):
59dd5c7e 44 request.user = None
58dec5ef
CAW
45 return
46
5d6840a0 47 user = None
c74e1462
CAW
48 user = request.db.User.one(
49 {'_id': mongokit.ObjectId(request.session['user_id'])})
5d6840a0 50
c74e1462
CAW
51 if not user:
52 # Something's wrong... this user doesn't exist? Invalidate
53 # this session.
58dec5ef 54 request.session.invalidate()
5d6840a0
CAW
55
56 request.user = user