|
|
|
@ -7,9 +7,13 @@ from pyramid.security import remember, forget
@@ -7,9 +7,13 @@ from pyramid.security import remember, forget
|
|
|
|
|
from pyramid.view import view_config |
|
|
|
|
from sqlalchemy import or_ |
|
|
|
|
|
|
|
|
|
from ordr2.events import CompleteRegistration, PasswordReset |
|
|
|
|
from ordr2.events import ChangedEmail, CompleteRegistration, PasswordReset |
|
|
|
|
from ordr2.models.account import User, Role, TokenSubject |
|
|
|
|
from ordr2.schemas.account import RegistrationSchema, ResetPasswordSchema |
|
|
|
|
from ordr2.schemas.account import ( |
|
|
|
|
RegistrationSchema, |
|
|
|
|
ResetPasswordSchema, |
|
|
|
|
AccountSettingsSchema |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PROPOSED_PASSWORD_LENGTH = 12 |
|
|
|
@ -20,6 +24,18 @@ PROPOSED_PASSWORD_LENGTH = 12
@@ -20,6 +24,18 @@ PROPOSED_PASSWORD_LENGTH = 12
|
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.AccountResource', |
|
|
|
|
name='login', |
|
|
|
|
request_method='GET', |
|
|
|
|
permission='login', |
|
|
|
|
renderer='ordr2:templates/account/login.jinja2' |
|
|
|
|
) |
|
|
|
|
def login_form(context, request): |
|
|
|
|
return {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.AccountResource', |
|
|
|
|
name='login', |
|
|
|
|
request_method='POST', |
|
|
|
|
permission='login', |
|
|
|
|
renderer='ordr2:templates/account/login.jinja2' |
|
|
|
|
) |
|
|
|
@ -38,6 +54,11 @@ def login(context, request):
@@ -38,6 +54,11 @@ def login(context, request):
|
|
|
|
|
request.resource_url(request.root, 'orders'), |
|
|
|
|
headers=headers |
|
|
|
|
) |
|
|
|
|
request.session.flash( |
|
|
|
|
'You entered the wrong username or password', |
|
|
|
|
'error' |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
return {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -241,3 +262,107 @@ def reset_password_form_processing(context, request):
@@ -241,3 +262,107 @@ def reset_password_form_processing(context, request):
|
|
|
|
|
request.session.flash('Your password was changed', 'ok') |
|
|
|
|
return HTTPFound(request.resource_url(context.__parent__, 'login')) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# account settings |
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.AccountResource', |
|
|
|
|
request_method='GET', |
|
|
|
|
name='settings', |
|
|
|
|
permission='settings', |
|
|
|
|
renderer='ordr2:templates/account/settings.jinja2' |
|
|
|
|
) |
|
|
|
|
def settings_form(context, request): |
|
|
|
|
prefill = { |
|
|
|
|
'general': { |
|
|
|
|
'username': context.model.username, |
|
|
|
|
'first_name': context.model.first_name, |
|
|
|
|
'last_name': context.model.last_name, |
|
|
|
|
'email': context.model.email, |
|
|
|
|
'role': str(context.model.role) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
form = AccountSettingsSchema.as_form(request) |
|
|
|
|
form.set_appstruct(prefill) |
|
|
|
|
return {'form': form} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.AccountResource', |
|
|
|
|
request_method='POST', |
|
|
|
|
name='settings', |
|
|
|
|
permission='settings', |
|
|
|
|
renderer='ordr2:templates/account/settings.jinja2' |
|
|
|
|
) |
|
|
|
|
def settings_form_processing(context, request): |
|
|
|
|
if 'Cancel' in request.POST: |
|
|
|
|
return HTTPFound(request.resource_url(request.root)) |
|
|
|
|
|
|
|
|
|
# validate the form data |
|
|
|
|
form = AccountSettingsSchema.as_form(request) |
|
|
|
|
data = request.POST.items() |
|
|
|
|
try: |
|
|
|
|
appstruct = form.validate(data) |
|
|
|
|
except deform.ValidationFailure as e: |
|
|
|
|
return {'form': form} |
|
|
|
|
|
|
|
|
|
context.model.first_name = appstruct['general']['first_name'] |
|
|
|
|
context.model.last_name = appstruct['general']['last_name'] |
|
|
|
|
|
|
|
|
|
new_password = appstruct['change_password']['new_password'] |
|
|
|
|
if new_password: |
|
|
|
|
context.model.set_password(new_password) |
|
|
|
|
request.session.flash( |
|
|
|
|
'Password updated sucessfully', |
|
|
|
|
'success' |
|
|
|
|
) |
|
|
|
|
# issue a warning on a short password |
|
|
|
|
if len(new_password) < PROPOSED_PASSWORD_LENGTH: |
|
|
|
|
request.session.flash( |
|
|
|
|
'You should really consider a longer password', |
|
|
|
|
'warning' |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
# email address changed |
|
|
|
|
# the email address is not updated directly, |
|
|
|
|
# but a email sent to confirm the new address |
|
|
|
|
new_email = appstruct['general']['email'] |
|
|
|
|
if new_email != context.model.email: |
|
|
|
|
# create a verify-new-email token and send email |
|
|
|
|
token = context.model.issue_token( |
|
|
|
|
request, |
|
|
|
|
TokenSubject.CHANGE_EMAIL, |
|
|
|
|
{'new_email': new_email} |
|
|
|
|
) |
|
|
|
|
notification = ChangedEmail( |
|
|
|
|
request, |
|
|
|
|
context.model, |
|
|
|
|
{'token': token}, |
|
|
|
|
send_to=new_email |
|
|
|
|
) |
|
|
|
|
request.registry.notify(notification) |
|
|
|
|
return HTTPFound(request.resource_url(context, 'verify-new-email')) |
|
|
|
|
|
|
|
|
|
return HTTPFound(request.resource_url(request.root)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.AccountResource', |
|
|
|
|
name='verify-new-email', |
|
|
|
|
permission='settings', |
|
|
|
|
renderer='ordr2:templates/account/email_confirmation.jinja2' |
|
|
|
|
) |
|
|
|
|
def email_confirmation(context, request): |
|
|
|
|
''' email sent to new address ''' |
|
|
|
|
return {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@view_config( |
|
|
|
|
context='ordr2:resources.account.EmailVerificationToken', |
|
|
|
|
permission='settings' |
|
|
|
|
) |
|
|
|
|
def email_change_confirmed(context, request): |
|
|
|
|
''' changed email address is confirmed ''' |
|
|
|
|
context.model.owner.email = context.model.payload['new_email'] |
|
|
|
|
request.dbsession.delete(context.model) |
|
|
|
|
request.session.flash('Email change sucessful', 'success') |
|
|
|
|
return HTTPFound(request.resource_url(request.root, 'login')) |
|
|
|
|