remove the obligation to change the password

This commit is contained in:
Oskar Hahn 2011-09-03 12:14:04 +02:00
parent 98ee433cd3
commit eaee6f9154
2 changed files with 1 additions and 18 deletions

View File

@ -104,7 +104,6 @@ MIDDLEWARE_CLASSES = (
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.locale.LocaleMiddleware',
'participant.api.ChangePasswordMiddleware',
)
ROOT_URLCONF = 'openslides.urls'

View File

@ -10,23 +10,7 @@
:license: GNU GPL, see LICENSE for more details.
"""
from django.contrib.auth.models import User, get_hexdigest
from django.shortcuts import redirect
from django.core.urlresolvers import reverse
from django.contrib import messages
from django.utils.translation import ugettext as _
class ChangePasswordMiddleware(object):
def process_request(self, request):
if request.user.is_authenticated() and "password_checked" not in request.session:
algo, salt, hsh = request.user.password.split('$')
bad_password = get_hexdigest(algo, salt, "%s%s" % (request.user.first_name, request.user.last_name))
if hsh == bad_password:
messages.info(request, _('You have to change your Password.'))
if request.path_info != '/user/settings' and 'static' not in request.path_info:
return redirect(reverse('user_settings'))
else:
request.session["password_checked"] = True
from django.contrib.auth.models import User
def gen_username(first_name, last_name):