Add Python APIs for account/profile information to user_api Updating profile page to have social linking Authors: Renzo Lucioni, Alasdair Swan, Stephen Sanchez, Will Daly
184 lines
5.8 KiB
Python
184 lines
5.8 KiB
Python
""" Views for a student's account information. """
|
|
|
|
from django.conf import settings
|
|
from django.http import (
|
|
QueryDict, HttpResponse,
|
|
HttpResponseBadRequest, HttpResponseServerError
|
|
)
|
|
from django.core.mail import send_mail
|
|
from django_future.csrf import ensure_csrf_cookie
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.views.decorators.http import require_http_methods
|
|
from edxmako.shortcuts import render_to_response, render_to_string
|
|
from microsite_configuration import microsite
|
|
from user_api.api import account as account_api
|
|
from user_api.api import profile as profile_api
|
|
|
|
|
|
@login_required
|
|
@require_http_methods(['GET'])
|
|
def index(request):
|
|
"""Render the account info page.
|
|
|
|
Args:
|
|
request (HttpRequest)
|
|
|
|
Returns:
|
|
HttpResponse: 200 if the index page was sent successfully
|
|
HttpResponse: 302 if not logged in (redirect to login page)
|
|
HttpResponse: 405 if using an unsupported HTTP method
|
|
|
|
Example usage:
|
|
|
|
GET /account
|
|
|
|
"""
|
|
return render_to_response(
|
|
'student_account/index.html', {
|
|
'disable_courseware_js': True,
|
|
}
|
|
)
|
|
|
|
|
|
@login_required
|
|
@require_http_methods(['PUT'])
|
|
@ensure_csrf_cookie
|
|
def email_change_request_handler(request):
|
|
"""Handle a request to change the user's email address.
|
|
|
|
Args:
|
|
request (HttpRequest)
|
|
|
|
Returns:
|
|
HttpResponse: 204 if the confirmation email was sent successfully
|
|
HttpResponse: 302 if not logged in (redirect to login page)
|
|
HttpResponse: 400 if the format of the new email is incorrect
|
|
HttpResponse: 401 if the provided password (in the form) is incorrect
|
|
HttpResponse: 405 if using an unsupported HTTP method
|
|
HttpResponse: 409 if the provided email is already in use
|
|
HttpResponse: 500 if the user to which the email change will be applied
|
|
does not exist
|
|
|
|
Example usage:
|
|
|
|
PUT /account/email_change_request
|
|
|
|
"""
|
|
put = QueryDict(request.body)
|
|
user = request.user
|
|
password = put.get('password')
|
|
|
|
username = user.username
|
|
old_email = profile_api.profile_info(username)['email']
|
|
new_email = put.get('new_email')
|
|
|
|
if new_email is None:
|
|
return HttpResponseBadRequest("Missing param 'new_email'")
|
|
if password is None:
|
|
return HttpResponseBadRequest("Missing param 'password'")
|
|
|
|
try:
|
|
key = account_api.request_email_change(username, new_email, password)
|
|
except account_api.AccountUserNotFound:
|
|
return HttpResponseServerError()
|
|
except account_api.AccountEmailAlreadyExists:
|
|
return HttpResponse(status=409)
|
|
except account_api.AccountEmailInvalid:
|
|
return HttpResponseBadRequest()
|
|
except account_api.AccountNotAuthorized:
|
|
return HttpResponse(status=401)
|
|
|
|
context = {
|
|
'key': key,
|
|
'old_email': old_email,
|
|
'new_email': new_email,
|
|
}
|
|
|
|
subject = render_to_string('student_account/emails/email_change_request/subject_line.txt', context)
|
|
subject = ''.join(subject.splitlines())
|
|
message = render_to_string('student_account/emails/email_change_request/message_body.txt', context)
|
|
|
|
from_address = microsite.get_value(
|
|
'email_from_address',
|
|
settings.DEFAULT_FROM_EMAIL
|
|
)
|
|
|
|
# Email new address
|
|
send_mail(subject, message, from_address, [new_email])
|
|
|
|
# A 204 is intended to allow input for actions to take place
|
|
# without causing a change to the user agent's active document view.
|
|
return HttpResponse(status=204)
|
|
|
|
|
|
@login_required
|
|
@require_http_methods(['GET'])
|
|
def email_change_confirmation_handler(request, key):
|
|
"""Complete a change of the user's email address.
|
|
|
|
This is called when the activation link included in the confirmation
|
|
email is clicked.
|
|
|
|
Args:
|
|
request (HttpRequest)
|
|
|
|
Returns:
|
|
HttpResponse: 200 if the email change is successful, the activation key
|
|
is invalid, the new email is already in use, or the
|
|
user to which the email change will be applied does
|
|
not exist
|
|
HttpResponse: 302 if not logged in (redirect to login page)
|
|
HttpResponse: 405 if using an unsupported HTTP method
|
|
|
|
Example usage:
|
|
|
|
GET /account/email_change_confirm/{key}
|
|
|
|
"""
|
|
try:
|
|
old_email, new_email = account_api.confirm_email_change(key)
|
|
except account_api.AccountNotAuthorized:
|
|
return render_to_response(
|
|
'student_account/email_change_failed.html', {
|
|
'disable_courseware_js': True,
|
|
'error': 'key_invalid',
|
|
}
|
|
)
|
|
except account_api.AccountEmailAlreadyExists:
|
|
return render_to_response(
|
|
'student_account/email_change_failed.html', {
|
|
'disable_courseware_js': True,
|
|
'error': 'email_used',
|
|
}
|
|
)
|
|
except account_api.AccountInternalError:
|
|
return render_to_response(
|
|
'student_account/email_change_failed.html', {
|
|
'disable_courseware_js': True,
|
|
'error': 'internal',
|
|
}
|
|
)
|
|
|
|
context = {
|
|
'old_email': old_email,
|
|
'new_email': new_email,
|
|
}
|
|
|
|
subject = render_to_string('student_account/emails/email_change_confirmation/subject_line.txt', context)
|
|
subject = ''.join(subject.splitlines())
|
|
message = render_to_string('student_account/emails/email_change_confirmation/message_body.txt', context)
|
|
|
|
from_address = microsite.get_value(
|
|
'email_from_address',
|
|
settings.DEFAULT_FROM_EMAIL
|
|
)
|
|
|
|
# Notify both old and new emails of the change
|
|
send_mail(subject, message, from_address, [old_email, new_email])
|
|
|
|
return render_to_response(
|
|
'student_account/email_change_successful.html', {
|
|
'disable_courseware_js': True,
|
|
}
|
|
)
|