1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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.
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.
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/>.
20 from mediagoblin
.db
.models
import User
, AccessToken
21 from mediagoblin
.oauth
.tools
.request
import decode_authorization_header
23 _log
= logging
.getLogger(__name__
)
27 form_encoded
= "application/x-www-form-urlencoded"
28 json_encoded
= "application/json"
31 def setup_user_in_request(request
):
33 Examine a request and tack on a request.user parameter if that's
36 # If API request the user will be associated with the access token
37 authorization
= decode_authorization_header(request
.headers
)
39 if authorization
.get(u
"access_token"):
40 # Check authorization header.
41 token
= authorization
[u
"oauth_token"]
42 token
= AccessToken
.query
.filter_by(token
=token
).first()
44 request
.user
= token
.user
48 if 'user_id' not in request
.session
:
52 request
.user
= User
.query
.get(request
.session
['user_id'])
55 # Something's wrong... this user doesn't exist? Invalidate
57 _log
.warn("Killing session for user id %r", request
.session
['user_id'])
58 request
.session
.delete()
60 def decode_request(request
):
61 """ Decodes a request based on MIME-Type """
64 if request
.content_type
== json_encoded
:
65 data
= json
.loads(data
)
66 elif request
.content_type
== form_encoded
or request
.content_type
== "":