Fix invitations.
[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 logging
35 import datetime
36
37 from urlparse import urlsplit, urlunsplit
38
39 from django.conf import settings
40 from django.http import HttpResponse
41 from django.utils.http import urlencode
42
43 from pithos.im.models import User
44
45
46 def get_or_create_user(uniq, realname, affiliation, level):
47     """Find or register a user into the internal database
48        and issue a token for subsequent requests.
49     """
50     
51     user, created = User.objects.get_or_create(uniq=uniq,
52         defaults={
53             'realname': realname,
54             'affiliation': affiliation,
55             'level': level,
56             'invitations': settings.INVITATIONS_PER_LEVEL[level]
57         })
58     if created:
59         user.renew_token()
60         user.save()
61         logging.info('Created user %s', user)
62     
63     return user
64
65 def prepare_response(user, next='', renew=False):
66     """Return the unique username and the token
67        as 'X-Auth-User' and 'X-Auth-Token' headers,
68        or redirect to the URL provided in 'next'
69        with the 'user' and 'token' as parameters.
70        
71        Reissue the token even if it has not yet
72        expired, if the 'renew' parameter is present.
73     """
74     
75     if renew or user.auth_token_expires < datetime.datetime.now():
76         user.renew_token()
77         user.save()
78     if next:
79         # TODO: Avoid redirect loops.
80         parts = list(urlsplit(next))
81         parts[3] = urlencode({'user': user.uniq, 'token': user.auth_token})
82         next = urlunsplit(parts)
83     
84     response = HttpResponse()
85     if not next:
86         response['X-Auth-User'] = user.uniq
87         response['X-Auth-Token'] = user.auth_token
88         response.content = user.uniq + '\n' + user.auth_token + '\n'
89         response.status_code = 200
90     else:
91         response['Location'] = next
92         response.status_code = 302
93     return response