Merge branch 'pre-auth' into basic_auth
[mediagoblin.git] / mediagoblin / tools / request.py
CommitLineData
03ae172a 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
03ae172a
AW
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
cc9f9a1d 17import logging
b0c8328e 18from mediagoblin.db.models import User
03ae172a 19
cc9f9a1d
E
20_log = logging.getLogger(__name__)
21
22
03ae172a
AW
23def setup_user_in_request(request):
24 """
25 Examine a request and tack on a request.user parameter if that's
26 appropriate.
27 """
04453ccf 28 if 'user_id' not in request.session:
03ae172a
AW
29 request.user = None
30 return
31
7c029a1f 32 request.user = User.query.get(request.session['user_id'])
03ae172a 33
7c029a1f 34 if not request.user:
03ae172a
AW
35 # Something's wrong... this user doesn't exist? Invalidate
36 # this session.
cc9f9a1d 37 _log.warn("Killing session for user id %r", request.session['user_id'])
c7424612 38 request.session.delete()