Statistics
| Branch: | Tag: | Revision:

root / astakos / im / api.py @ 890b0eaf

History | View | Annotate | Download (3.8 kB)

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
from traceback import format_exc
35
from time import time, mktime
36
from django.conf import settings
37
from django.http import HttpResponse
38
from django.utils import simplejson as json
39

    
40
from astakos.im.faults import BadRequest, Unauthorized, ServiceUnavailable
41
from astakos.im.models import AstakosUser
42

    
43
import datetime
44

    
45
def render_fault(request, fault):
46
    if settings.DEBUG or settings.TEST:
47
        fault.details = format_exc(fault)
48
    
49
    request.serialization = 'text'
50
    data = '\n'.join((fault.message, fault.details)) + '\n'
51
    response = HttpResponse(data, status=fault.code)
52
    return response
53

    
54
def update_response_headers(response):
55
    response['Content-Type'] = 'application/json; charset=UTF-8'
56
    response['Content-Length'] = len(response.content)
57

    
58
def authenticate(request):
59
    # Normal Response Codes: 204
60
    # Error Response Codes: serviceUnavailable (503)
61
    #                       badRequest (400)
62
    #                       unauthorised (401)
63
    try:
64
        if request.method != 'GET':
65
            raise BadRequest('Method not allowed.')
66
        x_auth_token = request.META.get('HTTP_X_AUTH_TOKEN')
67
        if not x_auth_token:
68
            return render_fault(request, BadRequest('Missing X-Auth-Token'))
69
        
70
        try:
71
            user = AstakosUser.objects.get(auth_token=x_auth_token)
72
        except AstakosUser.DoesNotExist, e:
73
            return render_fault(request, Unauthorized('Invalid X-Auth-Token')) 
74
        
75
        # Check if the is active.
76
        if not user.is_active:
77
            return render_fault(request, Unauthorized('User inactive'))
78
        
79
        # Check if the token has expired.
80
        if (time() - mktime(user.auth_token_expires.timetuple())) > 0:
81
            return render_fault(request, Unauthorized('Authentication expired'))
82
        
83
        response = HttpResponse()
84
        response.status=204
85
        user_info = {'uniq':user.username,
86
                     'auth_token':user.auth_token,
87
                     'auth_token_created':user.auth_token_created,
88
                     'auth_token_expires':user.auth_token_expires}
89
        response.content = json.dumps(user_info)
90
        update_response_headers(response)
91
        return response
92
    except BaseException, e:
93
        fault = ServiceUnavailable('Unexpected error')
94
        return render_fault(request, fault)