Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / views / target / shibboleth.py @ 70e11eaa

History | View | Annotate | Download (6 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.conf import settings as global_settings
37
from django.http import HttpResponseBadRequest
38
from django.utils.translation import ugettext as _
39
from django.contrib import messages
40
from django.template import RequestContext
41
from django.views.decorators.http import require_http_methods
42
from django.http import HttpResponseRedirect
43
from django.core.urlresolvers import reverse
44
from django.core.exceptions import ImproperlyConfigured
45
from django.shortcuts import get_object_or_404
46

    
47
from urlparse import urlunsplit, urlsplit
48

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

    
62
import astakos.im.messages as astakos_messages
63
import logging
64

    
65
logger = logging.getLogger(__name__)
66

    
67

    
68
class Tokens:
69
    # these are mapped by the Shibboleth SP software
70
    SHIB_EPPN = "HTTP_EPPN"  # eduPersonPrincipalName
71
    SHIB_NAME = "HTTP_SHIB_INETORGPERSON_GIVENNAME"
72
    SHIB_SURNAME = "HTTP_SHIB_PERSON_SURNAME"
73
    SHIB_CN = "HTTP_SHIB_PERSON_COMMONNAME"
74
    SHIB_DISPLAYNAME = "HTTP_SHIB_INETORGPERSON_DISPLAYNAME"
75
    SHIB_EP_AFFILIATION = "HTTP_SHIB_EP_AFFILIATION"
76
    SHIB_SESSION_ID = "HTTP_SHIB_SESSION_ID"
77
    SHIB_MAIL = "HTTP_SHIB_MAIL"
78

    
79

    
80
@requires_auth_provider('shibboleth')
81
@require_http_methods(["GET", "POST"])
82
@cookie_fix
83
def login(
84
    request,
85
    template='im/third_party_check_local.html',
86
    extra_context=None):
87

    
88
    init_third_party_session(request)
89
    extra_context = extra_context or {}
90

    
91
    tokens = request.META
92
    third_party_key = get_pending_key(request)
93

    
94
    shibboleth_headers = {}
95
    for token in dir(Tokens):
96
        if token == token.upper():
97
            shibboleth_headers[token] = request.META.get(token, 'NOT_SET')
98

    
99
    # log shibboleth headers
100
    # TODO: info -> debug
101
    logger.info("shibboleth request: %r" % shibboleth_headers)
102

    
103
    try:
104
        eppn = tokens.get(Tokens.SHIB_EPPN)
105
        if global_settings.DEBUG and not eppn:
106
            eppn = getattr(global_settings, 'SHIBBOLETH_TEST_EPPN', None)
107
            realname = getattr(global_settings, 'SHIBBOLETH_TEST_REALNAME',
108
                               None)
109

    
110
        if not eppn:
111
            raise KeyError(_(astakos_messages.SHIBBOLETH_MISSING_EPPN) % {
112
                'domain': settings.BASEURL,
113
                'contact_email': settings.CONTACT_EMAIL
114
            })
115
        if Tokens.SHIB_DISPLAYNAME in tokens:
116
            realname = tokens[Tokens.SHIB_DISPLAYNAME]
117
        elif Tokens.SHIB_CN in tokens:
118
            realname = tokens[Tokens.SHIB_CN]
119
        elif Tokens.SHIB_NAME in tokens and Tokens.SHIB_SURNAME in tokens:
120
            realname = tokens[Tokens.SHIB_NAME] + ' ' + tokens[Tokens.SHIB_SURNAME]
121
        else:
122
            if settings.SHIBBOLETH_REQUIRE_NAME_INFO:
123
                raise KeyError(_(astakos_messages.SHIBBOLETH_MISSING_NAME))
124
            else:
125
                realname = ''
126

    
127
    except KeyError, e:
128
        # invalid shibboleth headers, redirect to login, display message
129
        messages.error(request, e.message)
130
        return HttpResponseRedirect(login_url(request))
131

    
132
    affiliation = tokens.get(Tokens.SHIB_EP_AFFILIATION, 'Shibboleth')
133
    email = tokens.get(Tokens.SHIB_MAIL, '')
134
    provider_info = {'eppn': eppn, 'email': email, 'name': realname}
135
    userid = eppn
136

    
137

    
138
    try:
139
        return handle_third_party_login(request, 'shibboleth',
140
                                        eppn, provider_info,
141
                                        affiliation, third_party_key)
142
    except AstakosUser.DoesNotExist, e:
143
        third_party_key = get_pending_key(request)
144
        user_info = {'affiliation': affiliation, 'realname': realname}
145
        return handle_third_party_signup(request, userid, 'shibboleth',
146
                                         third_party_key,
147
                                         provider_info,
148
                                         user_info,
149
                                         template,
150
                                         extra_context)
151