Manage cookie in middleware. Collect all login targets into one module and share...
[pithos] / pithos / im / target / util.py
1 # Copyright 2011 GRNET S.A. All rights reserved.
2
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 import datetime
35
36 from urlparse import urlsplit, urlunsplit
37
38 from django.http import HttpResponse
39 from django.utils.http import urlencode
40 #from django.utils.cache import patch_vary_headers
41
42 from pithos.im.models import User
43
44
45 def get_user(uniq, realname, affiliation):
46     """Find or register a user into the internal database
47        and issue a token for subsequent requests.
48     """
49     
50     try:
51         user = User.objects.get(uniq=uniq)
52     except User.DoesNotExist:
53         user = User()
54         user.uniq = uniq
55         user.realname = realname
56         user.affiliation = affiliation
57         user.renew_token()
58         user.save()
59     
60     return user
61
62 def prepare_response(user, next='', renew=False):
63     """Return the unique username and the token
64        as 'X-Auth-User' and 'X-Auth-Token' headers,
65        or redirect to the URL provided in 'next'
66        with the 'user' and 'token' as parameters.
67        
68        Reissue the token even if it has not yet
69        expired, if the 'renew' parameter is present.
70     """
71     
72     if renew or user.auth_token_expires < datetime.datetime.now():
73         user.renew_token()
74         user.save()
75     if next:
76         # TODO: Avoid redirect loops.
77         parts = list(urlsplit(next))
78         parts[3] = urlencode({'user': user.uniq, 'token': user.auth_token})
79         next = urlunsplit(parts)
80     
81     response = HttpResponse()
82     if not next:
83         response['X-Auth-User'] = user.uniq
84         response['X-Auth-Token'] = user.auth_token
85         response.content = user.uniq + '\n' + user.auth_token + '\n'
86         response.status_code = 200
87     else:
88         response['Location'] = next
89         response.status_code = 302
90     return response