feat: remove all the commerce coordinator (#35527)
This commit is contained in:
@@ -11,7 +11,6 @@ from django.conf import settings
|
||||
from django.test import TestCase
|
||||
from django.test.client import RequestFactory
|
||||
from django.test.utils import override_settings
|
||||
from edx_toggles.toggles.testutils import override_waffle_flag
|
||||
from opaque_keys.edx.locator import CourseLocator
|
||||
from waffle.testutils import override_switch
|
||||
|
||||
@@ -21,7 +20,6 @@ from common.djangoapps.student.models import CourseEnrollment
|
||||
from common.djangoapps.student.tests.factories import TEST_PASSWORD, UserFactory
|
||||
from lms.djangoapps.commerce.models import CommerceConfiguration
|
||||
from lms.djangoapps.commerce.utils import EcommerceService, refund_entitlement, refund_seat
|
||||
from lms.djangoapps.commerce.waffle import ENABLE_TRANSITION_TO_COORDINATOR_CHECKOUT
|
||||
from openedx.core.djangolib.testing.utils import skip_unless_lms
|
||||
from openedx.core.lib.log_utils import audit_log
|
||||
from xmodule.modulestore.tests.django_utils import \
|
||||
@@ -186,27 +184,6 @@ class EcommerceServiceTests(TestCase):
|
||||
|
||||
assert url == expected_url
|
||||
|
||||
@override_settings(COMMERCE_COORDINATOR_URL_ROOT='http://coordinator_url')
|
||||
@override_settings(ECOMMERCE_PUBLIC_URL_ROOT='http://ecommerce_url')
|
||||
@ddt.data(
|
||||
{'coordinator_flag_active': True},
|
||||
{'coordinator_flag_active': False}
|
||||
)
|
||||
@ddt.unpack
|
||||
def test_get_add_to_basket_url(self, coordinator_flag_active):
|
||||
with override_waffle_flag(ENABLE_TRANSITION_TO_COORDINATOR_CHECKOUT, active=coordinator_flag_active):
|
||||
|
||||
ecommerce_service = EcommerceService()
|
||||
result = ecommerce_service.get_add_to_basket_url()
|
||||
|
||||
if coordinator_flag_active:
|
||||
expected_url = 'http://coordinator_url/lms/payment_page_redirect/'
|
||||
else:
|
||||
expected_url = 'http://ecommerce_url/test_basket/add/'
|
||||
|
||||
self.assertIsNotNone(result)
|
||||
self.assertEqual(expected_url, result)
|
||||
|
||||
|
||||
@ddt.ddt
|
||||
@skip_unless_lms
|
||||
|
||||
@@ -13,7 +13,6 @@ from django.urls import reverse
|
||||
from django.utils.translation import gettext as _
|
||||
|
||||
from common.djangoapps.course_modes.models import CourseMode
|
||||
from common.djangoapps.student.models import CourseEnrollmentAttribute
|
||||
from openedx.core.djangoapps.commerce.utils import (
|
||||
get_ecommerce_api_base_url,
|
||||
get_ecommerce_api_client,
|
||||
@@ -23,10 +22,6 @@ from openedx.core.djangoapps.site_configuration import helpers as configuration_
|
||||
from openedx.core.djangoapps.theming import helpers as theming_helpers
|
||||
|
||||
from .models import CommerceConfiguration
|
||||
from .waffle import ( # lint-amnesty, pylint: disable=invalid-django-waffle-import
|
||||
should_redirect_to_commerce_coordinator_checkout,
|
||||
should_redirect_to_commerce_coordinator_refunds,
|
||||
)
|
||||
from edx_django_utils.plugins import pluggable_override
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
@@ -110,15 +105,6 @@ class EcommerceService:
|
||||
"""
|
||||
return self.get_absolute_ecommerce_url(self.config.basket_checkout_page)
|
||||
|
||||
def get_add_to_basket_url(self):
|
||||
""" Return the URL for the payment page based on the waffle switch.
|
||||
Example:
|
||||
http://localhost/enabled_service_api_path
|
||||
"""
|
||||
if should_redirect_to_commerce_coordinator_checkout():
|
||||
return urljoin(settings.COMMERCE_COORDINATOR_URL_ROOT, settings.COORDINATOR_CHECKOUT_REDIRECT_PATH)
|
||||
return self.payment_page_url()
|
||||
|
||||
@pluggable_override('OVERRIDE_GET_CHECKOUT_PAGE_URL')
|
||||
def get_checkout_page_url(self, *skus, **kwargs):
|
||||
""" Construct the URL to the ecommerce checkout page and include products.
|
||||
@@ -261,10 +247,6 @@ def refund_seat(course_enrollment, change_mode=False):
|
||||
course_key_str = str(course_enrollment.course_id)
|
||||
enrollee = course_enrollment.user
|
||||
|
||||
if should_redirect_to_commerce_coordinator_refunds():
|
||||
if _refund_in_commerce_coordinator(course_enrollment, change_mode):
|
||||
return
|
||||
|
||||
service_user = User.objects.get(username=settings.ECOMMERCE_SERVICE_WORKER_USERNAME)
|
||||
api_client = get_ecommerce_api_client(service_user)
|
||||
|
||||
@@ -295,75 +277,6 @@ def refund_seat(course_enrollment, change_mode=False):
|
||||
return refund_ids
|
||||
|
||||
|
||||
def _refund_in_commerce_coordinator(course_enrollment, change_mode):
|
||||
"""
|
||||
Helper function to perform refund in Commerce Coordinator.
|
||||
|
||||
Parameters:
|
||||
course_enrollment (CourseEnrollment): the enrollment to refund.
|
||||
change_mode (bool): whether the enrollment should be auto-enrolled into
|
||||
the default course mode after refund.
|
||||
|
||||
Returns:
|
||||
bool: True if refund was performed. False if refund is not applicable
|
||||
to Commerce Coordinator.
|
||||
"""
|
||||
enrollment_source_system = course_enrollment.get_order_attribute_value("source_system")
|
||||
course_key_str = str(course_enrollment.course_id)
|
||||
|
||||
# Commerce Coordinator enrollments will have an orders.source_system enrollment attribute.
|
||||
# Redirect to Coordinator only if the source_system is safelisted as Coordinator's in settings.
|
||||
|
||||
if enrollment_source_system and enrollment_source_system in settings.COMMERCE_COORDINATOR_REFUND_SOURCE_SYSTEMS:
|
||||
log.info('Redirecting refund to Commerce Coordinator for user [%s], course [%s]...',
|
||||
course_enrollment.user_id, course_key_str)
|
||||
|
||||
# Re-use Ecommerce API client factory to build an API client for Commerce Coordinator...
|
||||
service_user = get_user_model().objects.get(
|
||||
username=settings.COMMERCE_COORDINATOR_SERVICE_WORKER_USERNAME
|
||||
)
|
||||
api_client = get_ecommerce_api_client(service_user)
|
||||
refunds_url = urljoin(
|
||||
settings.COMMERCE_COORDINATOR_URL_ROOT,
|
||||
settings.COMMERCE_COORDINATOR_REFUND_PATH
|
||||
)
|
||||
|
||||
# Build request, raising exception if Coordinator returns non-200.
|
||||
enrollment_attributes = CourseEnrollmentAttribute.get_enrollment_attributes(course_enrollment)
|
||||
|
||||
try:
|
||||
api_client.post(
|
||||
refunds_url,
|
||||
json={
|
||||
'course_id': course_key_str,
|
||||
'username': course_enrollment.username,
|
||||
'enrollment_attributes': enrollment_attributes
|
||||
}
|
||||
).raise_for_status()
|
||||
|
||||
except Exception as exc: # pylint: disable=broad-except
|
||||
# Catch any possible exceptions from the Commerce Coordinator service to ensure we fail gracefully
|
||||
log.exception(
|
||||
"Unexpected exception while attempting to refund user in Coordinator [%s], "
|
||||
"course key [%s] message: [%s]",
|
||||
course_enrollment.username,
|
||||
course_key_str,
|
||||
str(exc)
|
||||
)
|
||||
|
||||
# Refund was successfully sent to Commerce Coordinator
|
||||
log.info('Refund successfully sent to Commerce Coordinator for user [%s], course [%s].',
|
||||
course_enrollment.user_id, course_key_str)
|
||||
if change_mode:
|
||||
auto_enroll(course_enrollment)
|
||||
return True
|
||||
else:
|
||||
# Refund was not meant to be sent to Commerce Coordinator
|
||||
log.info('Continuing refund without Commerce Coordinator redirect for user [%s], course [%s]...',
|
||||
course_enrollment.user_id, course_key_str)
|
||||
return False
|
||||
|
||||
|
||||
def auto_enroll(course_enrollment):
|
||||
"""
|
||||
Helper method to update an enrollment to a default course mode.
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
"""
|
||||
Configuration for features of Commerce App
|
||||
"""
|
||||
from edx_toggles.toggles import WaffleFlag
|
||||
|
||||
# Namespace for Commerce waffle flags.
|
||||
WAFFLE_FLAG_NAMESPACE = "commerce"
|
||||
|
||||
# .. toggle_name: commerce.transition_to_coordinator.checkout
|
||||
# .. toggle_implementation: WaffleFlag
|
||||
# .. toggle_default: False
|
||||
# .. toggle_description: Allows to redirect checkout to Commerce Coordinator API
|
||||
# .. toggle_use_cases: temporary
|
||||
# .. toggle_creation_date: 2023-11-22
|
||||
# .. toggle_target_removal_date: TBA
|
||||
# .. toggle_tickets: SONIC-99
|
||||
# .. toggle_status: supported
|
||||
ENABLE_TRANSITION_TO_COORDINATOR_CHECKOUT = WaffleFlag(
|
||||
f"{WAFFLE_FLAG_NAMESPACE}.transition_to_coordinator.checkout",
|
||||
__name__,
|
||||
)
|
||||
|
||||
# .. toggle_name: commerce.transition_to_coordinator.refund
|
||||
# .. toggle_implementation: WaffleFlag
|
||||
# .. toggle_default: False
|
||||
# .. toggle_description: Allows to redirect refunds to Commerce Coordinator API
|
||||
# .. toggle_use_cases: temporary
|
||||
# .. toggle_creation_date: 2024-03-26
|
||||
# .. toggle_target_removal_date: TBA
|
||||
# .. toggle_tickets: SONIC-382
|
||||
# .. toggle_status: supported
|
||||
ENABLE_TRANSITION_TO_COORDINATOR_REFUNDS = WaffleFlag(
|
||||
f"{WAFFLE_FLAG_NAMESPACE}.transition_to_coordinator.refunds",
|
||||
__name__,
|
||||
)
|
||||
|
||||
|
||||
def should_redirect_to_commerce_coordinator_checkout():
|
||||
"""
|
||||
Redirect learners to Commerce Coordinator checkout.
|
||||
"""
|
||||
return ENABLE_TRANSITION_TO_COORDINATOR_CHECKOUT.is_enabled()
|
||||
|
||||
|
||||
def should_redirect_to_commerce_coordinator_refunds():
|
||||
"""
|
||||
Redirect learners to Commerce Coordinator refunds.
|
||||
"""
|
||||
return ENABLE_TRANSITION_TO_COORDINATOR_REFUNDS.is_enabled()
|
||||
@@ -4304,13 +4304,6 @@ ECOMMERCE_ORDERS_API_CACHE_TIMEOUT = 3600
|
||||
ECOMMERCE_SERVICE_WORKER_USERNAME = 'ecommerce_worker'
|
||||
ECOMMERCE_API_SIGNING_KEY = 'SET-ME-PLEASE'
|
||||
|
||||
# E-Commerce Commerce Coordinator Configuration
|
||||
COMMERCE_COORDINATOR_URL_ROOT = 'http://localhost:8140'
|
||||
COMMERCE_COORDINATOR_REFUND_PATH = '/lms/refund/'
|
||||
COMMERCE_COORDINATOR_REFUND_SOURCE_SYSTEMS = ('SET-ME-PLEASE',)
|
||||
COMMERCE_COORDINATOR_SERVICE_WORKER_USERNAME = 'commerce_coordinator_worker'
|
||||
COORDINATOR_CHECKOUT_REDIRECT_PATH = '/lms/payment_page_redirect/'
|
||||
|
||||
# Exam Service
|
||||
EXAMS_SERVICE_URL = 'http://localhost:18740/api/v1'
|
||||
|
||||
|
||||
@@ -35,9 +35,9 @@ from openedx.core.djangolib.js_utils import js_escaped_string
|
||||
$('.popover-icon').click(function(e){
|
||||
e.stopPropagation();
|
||||
if ($('.popover').css("visibility") == "hidden" || $('.popover').css("visibility") == "" ) {
|
||||
$('.popover').css({"visibility":"visible", "opacity": 1});
|
||||
$('.popover').css({"visibility":"visible", "opacity": 1});
|
||||
} else {
|
||||
$('.popover').css({"visibility":"hidden", "opacity": 0});
|
||||
$('.popover').css({"visibility":"hidden", "opacity": 0});
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -52,7 +52,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string
|
||||
}
|
||||
window.addEventListener("resize", onresize);
|
||||
|
||||
// responsive: show more
|
||||
// responsive: show more
|
||||
$(function(){
|
||||
if($(window).width() <= 768) {
|
||||
$('.collapsible-item').css({"display":"none"});
|
||||
@@ -64,7 +64,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string
|
||||
e.preventDefault();
|
||||
$('.collapsible').css({"display":"none"});
|
||||
$('.collapsible-item').css({"display":"list-item"});
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</%block>
|
||||
@@ -112,7 +112,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string
|
||||
</span>
|
||||
<p class="price-display upgrade-price-string">${currency_symbol}${min_price} ${currency}</p>
|
||||
<div class="choice-title"><h4>${_("Earn a certificate")}</h4></div>
|
||||
<%block name="track_selection_certificate_bullets"/>
|
||||
<%block name="track_selection_certificate_bullets"/>
|
||||
<ul class="list-actions">
|
||||
<li class="action action-select track-selection-button">
|
||||
<input type="hidden" name="contribution" value="${price_before_discount or min_price}" />
|
||||
|
||||
Reference in New Issue
Block a user