def signin_page(request):
request.session['on_signin_url'] = request.META.get('HTTP_REFERER', '/')
+
+ if reverse('auth_signin') == request.session['on_signin_url'].replace(settings.APP_URL, ''):
+ request.session['on_signin_url'] = reverse('index')
all_providers = [provider.context for provider in AUTH_PROVIDERS.values()]
user = get_object_or_404(User, id=user)
if (ValidationHash.objects.validate(code, user, 'templogin', [user.id])):
+
+ # If the user requests temp_signin he must have forgotten his password. So we mark it as unusable.
+ user.set_unusable_password()
+ user.save()
+
return login_and_forward(request, user, reverse('user_authsettings', kwargs={'id': user.id}),
_(
"You are logged in with a temporary access key, please take the time to fix your issue with authentication."
try:
hash = ValidationHash.objects.get(user=request.user, type='email')
hash.delete()
+
+ # If we were able to get a previous validation hash we should raise an
+ # Exception immediately. Otherwise new validation hash will not be created
+ # and users will not receive the desired e-mail vaidation link.
+ raise Exception("Validation has already been sent")
except:
hash = ValidationHash.objects.create_new(request.user, 'email', [request.user.email])
user.save()
return login_and_forward(request, user, reverse('index'), _("Thank you, your email is now validated."))
else:
- raise Http404()
+ return render_to_response('auth/mail_already_validated.html', { 'user' : user }, RequestContext(request))
def auth_settings(request, id):
user_ = get_object_or_404(User, id=id)
@decorate.withfn(login_required)
def signout(request):
logout(request)
- return HttpResponseRedirect(reverse('index'))
\ No newline at end of file
+ return HttpResponseRedirect(reverse('index'))