Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / target / google.py @ 1e361a6d

History | View | Annotate | Download (6.5 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
token_scope = 'https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email'
77
authenticate_url = 'https://accounts.google.com/o/oauth2/auth'
78
access_token_url = 'https://www.googleapis.com/oauth2/v1/tokeninfo'
79
request_token_url = 'https://accounts.google.com/o/oauth2/token'
80

    
81

    
82
def get_redirect_uri():
83
    return "%s%s" % (settings.BASEURL,
84
                     reverse('astakos.im.target.google.authenticated'))
85

    
86

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

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

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

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

    
111

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

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

    
123
    # TODO: Handle errors, e.g. error=access_denied
124
    try:
125
        consumer = oauth.Consumer(key=OAUTH_CONSUMER_KEY,
126
                                  secret=OAUTH_CONSUMER_SECRET)
127
        client = oauth.Client(consumer)
128

    
129
        code = request.GET.get('code', None)
130
        params = {
131
            'code': code,
132
            'client_id': settings.GOOGLE_CLIENT_ID,
133
            'client_secret': settings.GOOGLE_SECRET,
134
            'redirect_uri': get_redirect_uri(),
135
            'grant_type': 'authorization_code'
136
        }
137
        get_token_url = "%s" % (request_token_url,)
138
        resp, content = client.request(get_token_url, "POST",
139
                                       body=urllib.urlencode(params))
140
        token = json.loads(content).get('access_token', None)
141

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

    
150
    if not access_token_data.get('user_id', None):
151
        messages.error(request, _('Invalid Google response. Please contact '
152
                                  ' support'))
153
        return HttpResponseRedirect(reverse('edit_profile'))
154

    
155
    userid = access_token_data['user_id']
156
    provider_info = access_token_data
157
    affiliation = 'Google.com'
158

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