33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
"""
|
|
Helper methods for credit card processing modules.
|
|
These methods should be shared among all processor implementations,
|
|
but should NOT be imported by modules outside this package.
|
|
"""
|
|
from django.conf import settings
|
|
|
|
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
|
|
|
|
|
|
def get_processor_config():
|
|
"""
|
|
Return a dictionary of configuration settings for the active credit card processor.
|
|
If configuration overrides are available, return those instead.
|
|
|
|
Returns:
|
|
dict
|
|
|
|
"""
|
|
# Retrieve the configuration settings for the active credit card processor
|
|
config = settings.CC_PROCESSOR.get(
|
|
settings.CC_PROCESSOR_NAME, {}
|
|
)
|
|
|
|
# Check whether configuration override exists,
|
|
# If so, find the configuration-specific cybersource config in the configurations.
|
|
# sub-key of the normal processor configuration.
|
|
config_key = configuration_helpers.get_value('cybersource_config_key')
|
|
if config_key:
|
|
config = config['microsites'][config_key]
|
|
|
|
return config
|