Esempio n. 1
0
def reset_password(request):
    def on_valid(form):
        email = form.cleaned_data['email']
        assert(email != '')
        try:
            user = User.objects.get(email=email)

            logging.info('Resetting password for user: '******'-', '').replace('0', 'g')[0:9]
            user.set_password(password)
            user.save()

            send_email.send(
                None,
                recipient=email,
                subject='Syntensity password reset',
                body='''
    Our system received a request to reset the password for your account at Syntensity.

    Your password is now set to: %s

    Thank you for using Syntensity.
                     ''' % password,
            )
        except User.DoesNotExist:
            pass # Still show message, do not give hints as to validity of account or not

    return getpost_form(request, 'registration/password_reset.html', PasswordResetForm, on_valid, '/accounts/resetpassword/finish/', form_params={'request': request})
Esempio n. 2
0
def change_password(request):
    def on_valid(form):
        logging.info('Changing password for user: '******'password1']
        request.user.set_password(password)
        request.user.save()
        request.session['message'] = 'Password successfully changed'
    return getpost_form(request, 'registration/password_change.html', PasswordChangeForm, on_valid, '/tracker/account/')
Esempio n. 3
0
def signup_for_notify(request):
    def on_valid(form):
        email = form.cleaned_data['email']
        logging.info('Person asked to be notified when registrations open: ' +
                     email)
        signup = SignupForNotify.objects.create(email=email)

    return getpost_form(request, 'registration/signup_for_notify.html',
                        SignupForNotifyForm, on_valid,
                        '/accounts/register/signup_for_notify/finish/')
Esempio n. 4
0
def change_password(request):
    def on_valid(form):
        logging.info('Changing password for user: '******'password1']
        request.user.set_password(password)
        request.user.save()
        request.session['message'] = 'Password successfully changed'

    return getpost_form(request, 'registration/password_change.html',
                        PasswordChangeForm, on_valid, '/tracker/account/')
Esempio n. 5
0
def register(request, template_name='registration/register.html'):
    if intensity_conf.get('Accounts', 'allow_registrations', '') != '1':
        return HttpResponseRedirect('/accounts/register/signup_for_notify/')

    def on_valid(form):
        logging.info('Creating user: '******'username'])

        User.objects.create_user(
            username=form.cleaned_data['username'],
            password=form.cleaned_data['password1'],
            email=form.cleaned_data['email'],
        )

    return getpost_form(request, 'registration/register.html', UserAccountCreationForm, on_valid, '/accounts/register/finish/', form_params={'request': request})
def view(request):
    def on_valid(form):
        logging.info('Map wizard - view')

        result = wizard(request.account, form.cleaned_data['location'], form.cleaned_data['original'], form.cleaned_data['requisition'])

        if type(result) is str:
            request.session['message'] = result
        else:
            if form.cleaned_data['requisition']:
                request.session['message'] = 'Map creation wizard finished successfully. To start editing your map, open the client program, log in and then select "connect to selected."'
            else:
                request.session['message'] = 'Map creation wizard finished successfully. To start editing your map, run it on a server and connect to that server.'

    return getpost_form(request, 'map_wizard.html', MapWizardForm, on_valid, '/tracker/account/')
Esempio n. 7
0
def register(request, template_name='registration/register.html'):
    if intensity_conf.get('Accounts', 'allow_registrations', '') != '1':
        return HttpResponseRedirect('/accounts/register/signup_for_notify/')

    def on_valid(form):
        logging.info('Creating user: '******'username'])

        User.objects.create_user(
            username=form.cleaned_data['username'],
            password=form.cleaned_data['password1'],
            email=form.cleaned_data['email'],
        )

    return getpost_form(request,
                        'registration/register.html',
                        UserAccountCreationForm,
                        on_valid,
                        '/accounts/register/finish/',
                        form_params={'request': request})
def view(request):
    def on_valid(form):
        logging.info('Map wizard - view')

        result = wizard(request.account, form.cleaned_data['location'],
                        form.cleaned_data['original'],
                        form.cleaned_data['requisition'])

        if type(result) is str:
            request.session['message'] = result
        else:
            if form.cleaned_data['requisition']:
                request.session[
                    'message'] = 'Map creation wizard finished successfully. To start editing your map, open the client program, log in and then select "connect to selected."'
            else:
                request.session[
                    'message'] = 'Map creation wizard finished successfully. To start editing your map, run it on a server and connect to that server.'

    return getpost_form(request, 'map_wizard.html', MapWizardForm, on_valid,
                        '/tracker/account/')
Esempio n. 9
0
def reset_password(request):
    def on_valid(form):
        email = form.cleaned_data['email']
        assert (email != '')
        try:
            user = User.objects.get(email=email)

            logging.info('Resetting password for user: '******'-', '').replace('0',
                                                                  'g')[0:9]
            user.set_password(password)
            user.save()

            send_email.send(
                None,
                recipient=email,
                subject='Syntensity password reset',
                body='''
    Our system received a request to reset the password for your account at Syntensity.

    Your password is now set to: %s

    Thank you for using Syntensity.
                     ''' % password,
            )
        except User.DoesNotExist:
            pass  # Still show message, do not give hints as to validity of account or not

    return getpost_form(request,
                        'registration/password_reset.html',
                        PasswordResetForm,
                        on_valid,
                        '/accounts/resetpassword/finish/',
                        form_params={'request': request})
Esempio n. 10
0
def signup_for_notify(request):
    def on_valid(form):
        email = form.cleaned_data['email']
        logging.info('Person asked to be notified when registrations open: ' + email)
        signup = SignupForNotify.objects.create(email=email)
    return getpost_form(request, 'registration/signup_for_notify.html', SignupForNotifyForm, on_valid, '/accounts/register/signup_for_notify/finish/')