Commit 4facd069 by Renzo Lucioni

Merge pull request #8886 from edx/renzo/basket-creation-authentication

Commerce baskets API supports cross-domain session and OAuth2 authentication
parents bc78baa0 3db2b5ff
...@@ -21,10 +21,11 @@ from course_modes.models import CourseMode ...@@ -21,10 +21,11 @@ from course_modes.models import CourseMode
from courseware import courses from courseware import courses
from edxmako.shortcuts import render_to_response from edxmako.shortcuts import render_to_response
from enrollment.api import add_enrollment from enrollment.api import add_enrollment
from enrollment.views import EnrollmentCrossDomainSessionAuth
from embargo import api as embargo_api from embargo import api as embargo_api
from microsite_configuration import microsite from microsite_configuration import microsite
from student.models import CourseEnrollment from student.models import CourseEnrollment
from openedx.core.lib.api.authentication import SessionAuthenticationAllowInactiveUser from openedx.core.lib.api.authentication import OAuth2AuthenticationAllowInactiveUser
from util.json_request import JsonResponse from util.json_request import JsonResponse
from verify_student.models import SoftwareSecurePhotoVerification from verify_student.models import SoftwareSecurePhotoVerification
from shoppingcart.processors.CyberSource2 import is_user_payment_error from shoppingcart.processors.CyberSource2 import is_user_payment_error
...@@ -38,7 +39,7 @@ class BasketsView(APIView): ...@@ -38,7 +39,7 @@ class BasketsView(APIView):
""" Creates a basket with a course seat and enrolls users. """ """ Creates a basket with a course seat and enrolls users. """
# LMS utilizes User.user_is_active to indicate email verification, not whether an account is active. Sigh! # LMS utilizes User.user_is_active to indicate email verification, not whether an account is active. Sigh!
authentication_classes = (SessionAuthenticationAllowInactiveUser,) authentication_classes = (EnrollmentCrossDomainSessionAuth, OAuth2AuthenticationAllowInactiveUser)
permission_classes = (IsAuthenticated,) permission_classes = (IsAuthenticated,)
def _is_data_valid(self, request): def _is_data_valid(self, request):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment