Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / target / local.py @ f432088a

History | View | Annotate | Download (6.2 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
from django.http import HttpResponseRedirect
35
from django.shortcuts import render_to_response
36
from django.template import RequestContext
37
from django.contrib import messages
38
from django.utils.translation import ugettext as _
39
from django.views.decorators.csrf import csrf_exempt
40
from django.views.decorators.http import require_http_methods
41
from django.core.urlresolvers import reverse
42
from django.contrib.auth.decorators import login_required
43

    
44
from astakos.im.util import prepare_response, get_query
45
from astakos.im.views import requires_anonymous, signed_terms_required
46
from astakos.im.models import PendingThirdPartyUser
47
from astakos.im.forms import LoginForm, ExtendedPasswordChangeForm, \
48
                             ExtendedSetPasswordForm
49
from astakos.im.settings import (RATELIMIT_RETRIES_ALLOWED,
50
                                ENABLE_LOCAL_ACCOUNT_MIGRATION)
51
import astakos.im.messages as astakos_messages
52
from astakos.im.views import requires_auth_provider
53
from astakos.im import settings
54

    
55
from ratelimit.decorators import ratelimit
56

    
57
retries = RATELIMIT_RETRIES_ALLOWED - 1
58
rate = str(retries) + '/m'
59

    
60

    
61
@requires_auth_provider('local', login=True)
62
@require_http_methods(["GET", "POST"])
63
@csrf_exempt
64
@requires_anonymous
65
@ratelimit(field='username', method='POST', rate=rate)
66
def login(request, on_failure='im/login.html'):
67
    """
68
    on_failure: the template name to render on login failure
69
    """
70
    was_limited = getattr(request, 'limited', False)
71
    form = LoginForm(data=request.POST,
72
                     was_limited=was_limited,
73
                     request=request)
74
    next = get_query(request).get('next', '')
75
    third_party_token = get_query(request).get('key', False)
76

    
77
    if not form.is_valid():
78
        return render_to_response(
79
            on_failure,
80
            {'login_form':form,
81
             'next':next,
82
             'key': third_party_token},
83
            context_instance=RequestContext(request)
84
        )
85
    # get the user from the cash
86
    user = form.user_cache
87

    
88
    message = None
89
    if not user:
90
        message = _(astakos_messages.ACCOUNT_AUTHENTICATION_FAILED)
91
    elif not user.is_active:
92
        if not user.activation_sent:
93
            message = _(astakos_messages.ACCOUNT_PENDING_ACTIVATION)
94
        else:
95
                        # TODO: USE astakos_messages
96
            url = reverse('send_activation', kwargs={'user_id':user.id})
97
            msg = _('You have not followed the activation link.')
98
            if settings.MODERATION_ENABLED:
99
                msg_extra = ' ' + _('Please contact support.')
100
            else:
101
                msg_extra = _('<a href="%s">Resend activation email?</a>') % url
102

    
103
            message = msg + msg_extra
104
    elif not user.can_login_with_auth_provider('local'):
105
        message = _(astakos_messages.NO_LOCAL_AUTH)
106

    
107
    if message:
108
        messages.error(request, message)
109
        return render_to_response(on_failure,
110
                                  {'login_form': form},
111
                                  context_instance=RequestContext(request))
112

    
113
    response = prepare_response(request, user, next)
114
    if third_party_token:
115
        # use requests to assign the account he just authenticated with with
116
        # a third party provider account
117
        # TODO: USE astakos_messages
118
        try:
119
          request.user.add_pending_auth_provider(third_party_token)
120
          messages.success(request, _('Your new login method has been added'))
121
        except PendingThirdPartyUser.DoesNotExist:
122
          messages.error(request, _('Account method assignment failed'))
123

    
124
    return response
125

    
126
@require_http_methods(["GET", "POST"])
127
@signed_terms_required
128
@login_required
129
@requires_auth_provider('local', login=True)
130
def password_change(request, template_name='registration/password_change_form.html',
131
                    post_change_redirect=None, password_change_form=ExtendedPasswordChangeForm):
132

    
133
    create_password = False
134

    
135
    # no local backend user wants to create a password
136
    if not request.user.has_auth_provider('local'):
137
        create_password = True
138
        password_change_form = ExtendedSetPasswordForm
139

    
140
    if post_change_redirect is None:
141
        post_change_redirect = reverse('edit_profile')
142

    
143
    if request.method == "POST":
144
        form_kwargs = dict(
145
            user=request.user,
146
            data=request.POST,
147
        )
148
        if not create_password:
149
            form_kwargs['session_key'] = session_key=request.session.session_key
150

    
151
        form = password_change_form(**form_kwargs)
152
        if form.is_valid():
153
            form.save()
154
            return HttpResponseRedirect(post_change_redirect)
155
    else:
156
        form = password_change_form(user=request.user)
157
    return render_to_response(template_name, {
158
        'form': form,
159
    }, context_instance=RequestContext(request))
160