remove unnecessary import
[astakos] / snf-astakos-app / astakos / im / util.py
1 # Copyright 2011-2012 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 import time
37
38 from urllib import quote
39 from urlparse import urlsplit, urlunsplit
40 from functools import wraps
41
42 from datetime import tzinfo, timedelta
43 from django.http import HttpResponse, HttpResponseBadRequest, urlencode
44 from django.template import RequestContext
45 from django.utils.translation import ugettext as _
46 from django.contrib.auth import login, authenticate
47 from django.core.urlresolvers import reverse
48 from django.core.exceptions import ValidationError
49
50 from astakos.im.models import AstakosUser, Invitation, ApprovalTerms
51 from astakos.im.settings import INVITATIONS_PER_LEVEL, COOKIE_NAME, COOKIE_DOMAIN, COOKIE_SECURE, FORCE_PROFILE_UPDATE
52
53 logger = logging.getLogger(__name__)
54
55 class UTC(tzinfo):
56    def utcoffset(self, dt):
57        return timedelta(0)
58
59    def tzname(self, dt):
60        return 'UTC'
61
62    def dst(self, dt):
63        return timedelta(0)
64
65 def isoformat(d):
66    """Return an ISO8601 date string that includes a timezone."""
67
68    return d.replace(tzinfo=UTC()).isoformat()
69
70 def epoch(datetime):
71     return int(time.mktime(datetime.timetuple())*1000)
72
73 def get_context(request, extra_context={}, **kwargs):
74     if not extra_context:
75         extra_context = {}
76     extra_context.update(kwargs)
77     return RequestContext(request, extra_context)
78
79 def get_invitation(request):
80     """
81     Returns the invitation identified by the ``code``.
82     
83     Raises ValueError if the invitation is consumed or there is another account
84     associated with this email.
85     """
86     code = request.GET.get('code')
87     if request.method == 'POST':
88         code = request.POST.get('code')
89     if not code:
90         return
91     invitation = Invitation.objects.get(code = code)
92     if invitation.is_consumed:
93         raise ValueError(_('Invitation is used'))
94     if reserved_email(invitation.username):
95         raise ValueError(_('Email: %s is reserved' % invitation.username))
96     return invitation
97
98 def prepare_response(request, user, next='', renew=False):
99     """Return the unique username and the token
100        as 'X-Auth-User' and 'X-Auth-Token' headers,
101        or redirect to the URL provided in 'next'
102        with the 'user' and 'token' as parameters.
103        
104        Reissue the token even if it has not yet
105        expired, if the 'renew' parameter is present
106        or user has not a valid token.
107     """
108     renew = renew or (not user.auth_token)
109     renew = renew or (user.auth_token_expires and user.auth_token_expires < datetime.datetime.now())
110     if renew:
111         user.renew_token()
112         try:
113             user.save()
114         except ValidationError, e:
115             return HttpResponseBadRequest(e) 
116     
117     if FORCE_PROFILE_UPDATE and not user.is_verified and not user.is_superuser:
118         params = ''
119         if next:
120             params = '?' + urlencode({'next': next})
121         next = reverse('astakos.im.views.edit_profile') + params
122     
123     response = HttpResponse()
124     
125     # authenticate before login
126     user = authenticate(email=user.email, auth_token=user.auth_token)
127     login(request, user)
128     set_cookie(response, user)
129     request.session.set_expiry(user.auth_token_expires)
130     
131     if not next:
132         next = reverse('astakos.im.views.index')
133     
134     response['Location'] = next
135     response.status_code = 302
136     return response
137
138 def set_cookie(response, user):
139     expire_fmt = user.auth_token_expires.strftime('%a, %d-%b-%Y %H:%M:%S %Z')
140     cookie_value = quote(user.email + '|' + user.auth_token)
141     response.set_cookie(COOKIE_NAME, value=cookie_value,
142                         expires=expire_fmt, path='/',
143                         domain=COOKIE_DOMAIN, secure=COOKIE_SECURE)
144
145 class lazy_string(object):
146     def __init__(self, function, *args, **kwargs):
147         self.function=function
148         self.args=args
149         self.kwargs=kwargs
150         
151     def __str__(self):
152         if not hasattr(self, 'str'):
153             self.str=self.function(*self.args, **self.kwargs)
154         return self.str
155
156 def reverse_lazy(*args, **kwargs):
157     return lazy_string(reverse, *args, **kwargs)
158
159 def reserved_email(email):
160     return AstakosUser.objects.filter(email = email).count() != 0
161
162 def get_query(request):
163     return request.__getattribute__(request.method)