Skip to content

Commit 15ed95c

Browse files
authored
Merge pull request #77 from snavinch/master
Added Sensitive Logging and October SDK Changes
2 parents 99a1f9f + 86e2c94 commit 15ed95c

File tree

111 files changed

+8844
-377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+8844
-377
lines changed

CyberSource/__init__.py

+14
Original file line numberDiff line numberDiff line change
@@ -400,9 +400,15 @@
400400
from .models.ptsv2payouts_sender_information_account import Ptsv2payoutsSenderInformationAccount
401401
from .models.refund_capture_request import RefundCaptureRequest
402402
from .models.refund_payment_request import RefundPaymentRequest
403+
from .models.reporting_v3_chargeback_details_get200_response import ReportingV3ChargebackDetailsGet200Response
404+
from .models.reporting_v3_chargeback_details_get200_response_chargeback_details import ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
405+
from .models.reporting_v3_chargeback_summaries_get200_response import ReportingV3ChargebackSummariesGet200Response
406+
from .models.reporting_v3_chargeback_summaries_get200_response_chargeback_summaries import ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries
403407
from .models.reporting_v3_conversion_details_get200_response import ReportingV3ConversionDetailsGet200Response
404408
from .models.reporting_v3_conversion_details_get200_response_conversion_details import ReportingV3ConversionDetailsGet200ResponseConversionDetails
405409
from .models.reporting_v3_conversion_details_get200_response_notes import ReportingV3ConversionDetailsGet200ResponseNotes
410+
from .models.reporting_v3_interchange_clearing_level_details_get200_response import ReportingV3InterchangeClearingLevelDetailsGet200Response
411+
from .models.reporting_v3_interchange_clearing_level_details_get200_response_interchange_clearing_level_details import ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails
406412
from .models.reporting_v3_net_fundings_get200_response import ReportingV3NetFundingsGet200Response
407413
from .models.reporting_v3_net_fundings_get200_response_net_funding_summaries import ReportingV3NetFundingsGet200ResponseNetFundingSummaries
408414
from .models.reporting_v3_net_fundings_get200_response_total_purchases import ReportingV3NetFundingsGet200ResponseTotalPurchases
@@ -429,6 +435,9 @@
429435
from .models.reporting_v3_reports_get200_response__link_report_download import ReportingV3ReportsGet200ResponseLinkReportDownload
430436
from .models.reporting_v3_reports_get200_response_report_search_results import ReportingV3ReportsGet200ResponseReportSearchResults
431437
from .models.reporting_v3_reports_id_get200_response import ReportingV3ReportsIdGet200Response
438+
from .models.reporting_v3_retrieval_details_get200_response import ReportingV3RetrievalDetailsGet200Response
439+
from .models.reporting_v3_retrieval_details_get200_response_retrieval_details import ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
440+
from .models.reporting_v3_retrieval_summaries_get200_response import ReportingV3RetrievalSummariesGet200Response
432441
from .models.reportingv3_report_downloads_get400_response import Reportingv3ReportDownloadsGet400Response
433442
from .models.reportingv3_report_downloads_get400_response_details import Reportingv3ReportDownloadsGet400ResponseDetails
434443
from .models.reportingv3reports_report_preferences import Reportingv3reportsReportPreferences
@@ -721,6 +730,8 @@
721730
from .apis.o_auth_api import OAuthApi
722731
from .apis.asymmetric_key_management_api import AsymmetricKeyManagementApi
723732
from .apis.capture_api import CaptureApi
733+
from .apis.chargeback_details_api import ChargebackDetailsApi
734+
from .apis.chargeback_summaries_api import ChargebackSummariesApi
724735
from .apis.conversion_details_api import ConversionDetailsApi
725736
from .apis.credit_api import CreditApi
726737
from .apis.customer_api import CustomerApi
@@ -730,6 +741,7 @@
730741
from .apis.download_dtd_api import DownloadDTDApi
731742
from .apis.download_xsd_api import DownloadXSDApi
732743
from .apis.instrument_identifier_api import InstrumentIdentifierApi
744+
from .apis.interchange_clearing_level_details_api import InterchangeClearingLevelDetailsApi
733745
from .apis.invoice_settings_api import InvoiceSettingsApi
734746
from .apis.invoices_api import InvoicesApi
735747
from .apis.key_generation_api import KeyGenerationApi
@@ -746,6 +758,8 @@
746758
from .apis.report_downloads_api import ReportDownloadsApi
747759
from .apis.report_subscriptions_api import ReportSubscriptionsApi
748760
from .apis.reports_api import ReportsApi
761+
from .apis.retrieval_details_api import RetrievalDetailsApi
762+
from .apis.retrieval_summaries_api import RetrievalSummariesApi
749763
from .apis.reversal_api import ReversalApi
750764
from .apis.search_transactions_api import SearchTransactionsApi
751765
from .apis.secure_file_share_api import SecureFileShareApi

CyberSource/api_client.py

+23-23
Original file line numberDiff line numberDiff line change
@@ -147,49 +147,49 @@ def to_camel_case(self, snake_str):
147147

148148
# Setting Merchant Configuration
149149
def set_configuration(self,config):
150-
global mconfig
151-
mconfig = MerchantConfiguration()
152-
mconfig.set_merchantconfig(config)
150+
self.mconfig = MerchantConfiguration()
151+
self.mconfig.set_merchantconfig(config)
153152
rconfig = Configuration()
154153

154+
# To reinitialize with logging config
155+
self.rest_client = RESTClientObject(log_config=self.mconfig.log_config)
156+
155157
set_client_cert = rconfig.set_merchantclientcert(config)
156158
set_proxy = rconfig.set_merchantproxyconfig(config)
157159

158160
# The below two lines are to set proxy details, client cert details and if present reinitialize the REST object as a proxy manager
159161
if set_client_cert or set_proxy:
160-
self.rest_client = RESTClientObject(rconfig) # Reinitialising REST object as a proxy manager instead of pool manager
162+
self.rest_client = RESTClientObject(rconfig, log_config=self.mconfig.log_config) # Reinitialising REST object as a proxy manager instead of pool manager
161163

162164
# This implements the fall back logic for JWT parameters key alias,key password,json file path
163-
mconfig.validate_merchant_details(config, mconfig)
165+
self.mconfig.validate_merchant_details(config)
164166
# Setting the Host by reading the Environment(SANDBOX/PRODUCTION) from Merchant Config
165-
self.host = mconfig.request_host
167+
self.host = self.mconfig.request_host
166168

167169
# Calling the authentication header
168170
def call_authentication_header(self, method, header_params, body):
169171

170-
time = mconfig.get_time()
172+
time = self.mconfig.get_time()
171173

172-
mconfig.request_type_method = method
174+
self.mconfig.request_type_method = method
173175

174176

175177

176178
if method.upper() == GlobalLabelParameters.POST or method.upper() == GlobalLabelParameters.PUT or method.upper() == GlobalLabelParameters.PATCH:
177-
mconfig.request_json_path_data = body
178-
179-
logger = mconfig.log
179+
self.mconfig.request_json_path_data = body
180180

181181
header_params['v-c-client-id'] = self.client_id
182182

183-
# if not mconfig.solution_id in (None, ''):
184-
# header_params['v-c-solution-id'] = mconfig.solution_id
183+
# if not self.mconfig.solution_id in (None, ''):
184+
# header_params['v-c-solution-id'] = self.mconfig.solution_id
185185

186186
auth = Authorization()
187-
token = auth.get_token(mconfig, mconfig.get_time(), logger)
188-
if mconfig.authentication_type.upper() == GlobalLabelParameters.HTTP.upper():
187+
token = auth.get_token(self.mconfig, self.mconfig.get_time())
188+
if self.mconfig.authentication_type.upper() == GlobalLabelParameters.HTTP.upper():
189189
header_params['Accept-Encoding'] = '*'
190-
header_params['v-c-merchant-id'] = mconfig.merchant_id
190+
header_params['v-c-merchant-id'] = self.mconfig.merchant_id
191191
header_params["Date"] = time
192-
header_params["Host"] = mconfig.request_host
192+
header_params["Host"] = self.mconfig.request_host
193193
header_params["User-Agent"] = GlobalLabelParameters.USER_AGENT_VALUE
194194
if method.upper() == GlobalLabelParameters.POST or method.upper() == GlobalLabelParameters.PUT or method.upper() == GlobalLabelParameters.PATCH:
195195

@@ -199,15 +199,15 @@ def call_authentication_header(self, method, header_params, body):
199199
GlobalLabelParameters.DIGEST] = GlobalLabelParameters.DIGEST_PREFIX + digest_header.decode("utf-8")
200200

201201
header_params["Signature"] = token
202-
elif mconfig.authentication_type.upper() == GlobalLabelParameters.JWT:
202+
elif self.mconfig.authentication_type.upper() == GlobalLabelParameters.JWT:
203203

204204
token = "Bearer " + token
205205
header_params['Authorization'] = str(token)
206-
elif mconfig.authentication_type.upper() == GlobalLabelParameters.OAUTH:
206+
elif self.mconfig.authentication_type.upper() == GlobalLabelParameters.OAUTH:
207207

208208
token = "Bearer " + token
209209
header_params['Authorization'] = str(token)
210-
210+
211211

212212
# Set the digest
213213
def set_digest(self, body):
@@ -454,11 +454,11 @@ def call_api(self, resource_path, method,
454454
body = body.replace("secCode", "SECCode")
455455
query_param_path = self.set_query_params(resource_path, query_params)
456456
if query_param_path:
457-
mconfig.request_target = query_param_path
457+
self.mconfig.request_target = query_param_path
458458
else:
459-
mconfig.request_target = resource_path
459+
self.mconfig.request_target = resource_path
460460

461-
if mconfig.authentication_type.upper() != GlobalLabelParameters.MUTUAL_AUTH.upper():
461+
if self.mconfig.authentication_type.upper() != GlobalLabelParameters.MUTUAL_AUTH.upper():
462462
self.call_authentication_header(method, header_params, body)
463463

464464
"""

CyberSource/apis/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
from .o_auth_api import OAuthApi
55
from .asymmetric_key_management_api import AsymmetricKeyManagementApi
66
from .capture_api import CaptureApi
7+
from .chargeback_details_api import ChargebackDetailsApi
8+
from .chargeback_summaries_api import ChargebackSummariesApi
79
from .conversion_details_api import ConversionDetailsApi
810
from .credit_api import CreditApi
911
from .customer_api import CustomerApi
@@ -13,6 +15,7 @@
1315
from .download_dtd_api import DownloadDTDApi
1416
from .download_xsd_api import DownloadXSDApi
1517
from .instrument_identifier_api import InstrumentIdentifierApi
18+
from .interchange_clearing_level_details_api import InterchangeClearingLevelDetailsApi
1619
from .invoice_settings_api import InvoiceSettingsApi
1720
from .invoices_api import InvoicesApi
1821
from .key_generation_api import KeyGenerationApi
@@ -29,6 +32,8 @@
2932
from .report_downloads_api import ReportDownloadsApi
3033
from .report_subscriptions_api import ReportSubscriptionsApi
3134
from .reports_api import ReportsApi
35+
from .retrieval_details_api import RetrievalDetailsApi
36+
from .retrieval_summaries_api import RetrievalSummariesApi
3237
from .reversal_api import ReversalApi
3338
from .search_transactions_api import SearchTransactionsApi
3439
from .secure_file_share_api import SecureFileShareApi

CyberSource/apis/asymmetric_key_management_api.py

+22-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
from ..configuration import Configuration
2424
from ..api_client import ApiClient
25+
import CyberSource.logging.log_factory as LogFactory
2526

2627

2728
class AsymmetricKeyManagementApi(object):
@@ -39,7 +40,9 @@ def __init__(self, merchant_config, api_client=None):
3940
if not config.api_client:
4041
config.api_client = ApiClient()
4142
self.api_client = config.api_client
42-
self.api_client.set_configuration(merchant_config)
43+
self.api_client.set_configuration(merchant_config)
44+
self.logger = LogFactory.setup_logger(self.__class__.__name__, self.api_client.mconfig.log_config)
45+
4346

4447

4548
def create_p12_keys(self, create_p12_keys_request, **kwargs):
@@ -61,6 +64,10 @@ def create_p12_keys(self, create_p12_keys_request, **kwargs):
6164
If the method is called asynchronously,
6265
returns the request thread.
6366
"""
67+
68+
if self.api_client.mconfig.log_config.enable_log:
69+
self.logger.info("CALL TO METHOD `create_p12_keys` STARTED")
70+
6471
kwargs['_return_http_data_only'] = True
6572
if kwargs.get('callback'):
6673
return self.create_p12_keys_with_http_info(create_p12_keys_request, **kwargs)
@@ -105,6 +112,8 @@ def create_p12_keys_with_http_info(self, create_p12_keys_request, **kwargs):
105112
del params['kwargs']
106113
# verify the required parameter 'create_p12_keys_request' is set
107114
if ('create_p12_keys_request' not in params) or (params['create_p12_keys_request'] is None):
115+
if self.api_client.mconfig.log_config.enable_log:
116+
self.logger.error("InvalidArgumentException : Missing the required parameter `create_p12_keys_request` when calling `create_p12_keys`")
108117
raise ValueError("Missing the required parameter `create_p12_keys_request` when calling `create_p12_keys`")
109118

110119

@@ -167,6 +176,10 @@ def delete_bulk_p12_keys(self, delete_bulk_p12_keys_request, **kwargs):
167176
If the method is called asynchronously,
168177
returns the request thread.
169178
"""
179+
180+
if self.api_client.mconfig.log_config.enable_log:
181+
self.logger.info("CALL TO METHOD `delete_bulk_p12_keys` STARTED")
182+
170183
kwargs['_return_http_data_only'] = True
171184
if kwargs.get('callback'):
172185
return self.delete_bulk_p12_keys_with_http_info(delete_bulk_p12_keys_request, **kwargs)
@@ -211,6 +224,8 @@ def delete_bulk_p12_keys_with_http_info(self, delete_bulk_p12_keys_request, **kw
211224
del params['kwargs']
212225
# verify the required parameter 'delete_bulk_p12_keys_request' is set
213226
if ('delete_bulk_p12_keys_request' not in params) or (params['delete_bulk_p12_keys_request'] is None):
227+
if self.api_client.mconfig.log_config.enable_log:
228+
self.logger.error("InvalidArgumentException : Missing the required parameter `delete_bulk_p12_keys_request` when calling `delete_bulk_p12_keys`")
214229
raise ValueError("Missing the required parameter `delete_bulk_p12_keys_request` when calling `delete_bulk_p12_keys`")
215230

216231

@@ -273,6 +288,10 @@ def get_p12_key_details(self, key_id, **kwargs):
273288
If the method is called asynchronously,
274289
returns the request thread.
275290
"""
291+
292+
if self.api_client.mconfig.log_config.enable_log:
293+
self.logger.info("CALL TO METHOD `get_p12_key_details` STARTED")
294+
276295
kwargs['_return_http_data_only'] = True
277296
if kwargs.get('callback'):
278297
return self.get_p12_key_details_with_http_info(key_id, **kwargs)
@@ -317,6 +336,8 @@ def get_p12_key_details_with_http_info(self, key_id, **kwargs):
317336
del params['kwargs']
318337
# verify the required parameter 'key_id' is set
319338
if ('key_id' not in params) or (params['key_id'] is None):
339+
if self.api_client.mconfig.log_config.enable_log:
340+
self.logger.error("InvalidArgumentException : Missing the required parameter `key_id` when calling `get_p12_key_details`")
320341
raise ValueError("Missing the required parameter `key_id` when calling `get_p12_key_details`")
321342

322343

CyberSource/apis/capture_api.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
from ..configuration import Configuration
2424
from ..api_client import ApiClient
25+
import CyberSource.logging.log_factory as LogFactory
2526

2627

2728
class CaptureApi(object):
@@ -39,7 +40,9 @@ def __init__(self, merchant_config, api_client=None):
3940
if not config.api_client:
4041
config.api_client = ApiClient()
4142
self.api_client = config.api_client
42-
self.api_client.set_configuration(merchant_config)
43+
self.api_client.set_configuration(merchant_config)
44+
self.logger = LogFactory.setup_logger(self.__class__.__name__, self.api_client.mconfig.log_config)
45+
4346

4447

4548
def capture_payment(self, capture_payment_request, id, **kwargs):
@@ -62,6 +65,10 @@ def capture_payment(self, capture_payment_request, id, **kwargs):
6265
If the method is called asynchronously,
6366
returns the request thread.
6467
"""
68+
69+
if self.api_client.mconfig.log_config.enable_log:
70+
self.logger.info("CALL TO METHOD `capture_payment` STARTED")
71+
6572
kwargs['_return_http_data_only'] = True
6673
if kwargs.get('callback'):
6774
return self.capture_payment_with_http_info(capture_payment_request, id, **kwargs)
@@ -107,9 +114,13 @@ def capture_payment_with_http_info(self, capture_payment_request, id, **kwargs):
107114
del params['kwargs']
108115
# verify the required parameter 'capture_payment_request' is set
109116
if ('capture_payment_request' not in params) or (params['capture_payment_request'] is None):
117+
if self.api_client.mconfig.log_config.enable_log:
118+
self.logger.error("InvalidArgumentException : Missing the required parameter `capture_payment_request` when calling `capture_payment`")
110119
raise ValueError("Missing the required parameter `capture_payment_request` when calling `capture_payment`")
111120
# verify the required parameter 'id' is set
112121
if ('id' not in params) or (params['id'] is None):
122+
if self.api_client.mconfig.log_config.enable_log:
123+
self.logger.error("InvalidArgumentException : Missing the required parameter `id` when calling `capture_payment`")
113124
raise ValueError("Missing the required parameter `id` when calling `capture_payment`")
114125

115126

0 commit comments

Comments
 (0)