Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / target / google.py @ 3000912c

History | View | Annotate | Download (6.4 kB)

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 json
35

    
36
from django.http import HttpResponseBadRequest
37
from django.utils.translation import ugettext as _
38
from django.contrib import messages
39
from django.template import RequestContext
40
from django.views.decorators.http import require_http_methods
41
from django.http import HttpResponseRedirect
42
from django.core.urlresolvers import reverse
43
from django.core.exceptions import ImproperlyConfigured
44
from django.shortcuts import get_object_or_404
45

    
46
from urlparse import urlunsplit, urlsplit
47

    
48
from astakos.im.util import prepare_response, get_context, login_url
49
from astakos.im.views import requires_anonymous, render_response, \
50
        requires_auth_provider
51
from astakos.im.settings import ENABLE_LOCAL_ACCOUNT_MIGRATION, BASEURL
52
from astakos.im.models import AstakosUser, PendingThirdPartyUser
53
from astakos.im.forms import LoginForm
54
from astakos.im.activation_backends import get_backend, SimpleBackend
55
from astakos.im import settings
56
from astakos.im import auth_providers
57
from astakos.im.target import add_pending_auth_provider, get_pending_key, \
58
    handle_third_party_signup, handle_third_party_login, init_third_party_session
59

    
60
import logging
61
import time
62
import astakos.im.messages as astakos_messages
63
import urlparse
64
import urllib
65

    
66
logger = logging.getLogger(__name__)
67

    
68
import oauth2 as oauth
69
import cgi
70

    
71
signature_method = oauth.SignatureMethod_HMAC_SHA1()
72

    
73
OAUTH_CONSUMER_KEY = settings.GOOGLE_CLIENT_ID
74
OAUTH_CONSUMER_SECRET = settings.GOOGLE_SECRET
75

    
76
consumer = oauth.Consumer(key=OAUTH_CONSUMER_KEY, secret=OAUTH_CONSUMER_SECRET)
77
client = oauth.Client(consumer)
78

    
79
token_scope = 'https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email'
80
authenticate_url = 'https://accounts.google.com/o/oauth2/auth'
81
access_token_url = 'https://www.googleapis.com/oauth2/v1/tokeninfo'
82
request_token_url = 'https://accounts.google.com/o/oauth2/token'
83

    
84

    
85
def get_redirect_uri():
86
    return "%s%s" % (settings.BASEURL,
87
                   reverse('astakos.im.target.google.authenticated'))
88

    
89
@requires_auth_provider('google', login=True)
90
@require_http_methods(["GET", "POST"])
91
def login(request):
92
    init_third_party_session(request)
93
    params = {
94
        'scope': token_scope,
95
        'response_type': 'code',
96
        'redirect_uri': get_redirect_uri(),
97
        'client_id': settings.GOOGLE_CLIENT_ID
98
    }
99
    force_login = request.GET.get('force_login', False)
100
    if force_login:
101
        params['approval_prompt'] = 'force'
102

    
103
    if request.GET.get('key', None):
104
        request.session['pending_key'] = request.GET.get('key')
105

    
106
    if request.GET.get('next', None):
107
        request.session['next_url'] = request.GET.get('next')
108

    
109
    url = "%s?%s" % (authenticate_url, urllib.urlencode(params))
110
    return HttpResponseRedirect(url)
111

    
112

    
113
@requires_auth_provider('google', login=True)
114
@require_http_methods(["GET", "POST"])
115
def authenticated(
116
    request,
117
    template='im/third_party_check_local.html',
118
    extra_context={}
119
):
120

    
121
    if request.GET.get('error', None):
122
        return HttpResponseRedirect(reverse('edit_profile'))
123

    
124
    # TODO: Handle errors, e.g. error=access_denied
125
    try:
126
        code = request.GET.get('code', None)
127
        params = {
128
            'code': code,
129
            'client_id': settings.GOOGLE_CLIENT_ID,
130
            'client_secret': settings.GOOGLE_SECRET,
131
            'redirect_uri': get_redirect_uri(),
132
            'grant_type': 'authorization_code'
133
        }
134
        get_token_url = "%s" % (request_token_url,)
135
        resp, content = client.request(get_token_url, "POST",
136
                                       body=urllib.urlencode(params))
137
        token = json.loads(content).get('access_token', None)
138

    
139
        resp, content = client.request("%s?access_token=%s" % (access_token_url,
140
                                                               token) , "GET")
141
        access_token_data = json.loads(content)
142
    except Exception, e:
143
        messages.error(request, 'Invalid Google response. Please contact support')
144
        return HttpResponseRedirect(reverse('edit_profile'))
145

    
146
    if not access_token_data.get('user_id', None):
147
        messages.error(request, 'Invalid Google response. Please contact support')
148
        return HttpResponseRedirect(reverse('edit_profile'))
149

    
150
    userid = access_token_data['user_id']
151
    username = access_token_data.get('email', None)
152
    provider_info = access_token_data
153
    affiliation = 'Google.com'
154

    
155
    try:
156
        return handle_third_party_login(request, 'google', userid,
157
                                        provider_info, affiliation)
158
    except AstakosUser.DoesNotExist, e:
159
        third_party_key = get_pending_key(request)
160
        user_info = {'affiliation': affiliation}
161
        return handle_third_party_signup(request, userid, 'google',
162
                                         third_party_key,
163
                                         provider_info,
164
                                         user_info,
165
                                         template,
166
                                         extra_context)
167