-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcapture_api.py
179 lines (145 loc) · 7.92 KB
/
capture_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# coding: utf-8
"""
CyberSource Merged Spec
All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
OpenAPI spec version: 0.0.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import sys
import os
import re
# python 2 and python 3 compatibility library
from six import iteritems
from ..configuration import Configuration
from ..api_client import ApiClient
import CyberSource.logging.log_factory as LogFactory
from authenticationsdk.util.MLEUtility import MLEUtility
from authenticationsdk.util.GlobalLabelParameters import GlobalLabelParameters
from authenticationsdk.util.Utility import process_body
from ..utilities.tracking.sdk_tracker import SdkTracker
class CaptureApi(object):
"""
NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
Ref: https://github.com/swagger-api/swagger-codegen
"""
def __init__(self, merchant_config, api_client=None):
config = Configuration()
if api_client:
self.api_client = api_client
else:
if not config.api_client:
config.api_client = ApiClient()
self.api_client = config.api_client
self.api_client.set_configuration(merchant_config)
self.logger = LogFactory.setup_logger(self.__class__.__name__, self.api_client.mconfig.log_config)
def capture_payment(self, capture_payment_request, id, **kwargs):
"""
Capture a Payment
Include the payment ID in the POST request to capture the payment amount.
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please define a `callback` function
to be invoked when receiving the response.
>>> def callback_function(response):
>>> pprint(response)
>>>
>>> thread = api.capture_payment(capture_payment_request, id, callback=callback_function)
:param callback function: The callback function
for asynchronous request. (optional)
:param CapturePaymentRequest capture_payment_request: (required)
:param str id: The payment ID returned from a previous payment request. This ID links the capture to the payment. (required)
:return: PtsV2PaymentsCapturesPost201Response
If the method is called asynchronously,
returns the request thread.
"""
if self.api_client.mconfig.log_config.enable_log:
self.logger.info("CALL TO METHOD `capture_payment` STARTED")
kwargs['_return_http_data_only'] = True
if kwargs.get('callback'):
return self.capture_payment_with_http_info(capture_payment_request, id, **kwargs)
else:
(data) = self.capture_payment_with_http_info(capture_payment_request, id, **kwargs)
return data
def capture_payment_with_http_info(self, capture_payment_request, id, **kwargs):
"""
Capture a Payment
Include the payment ID in the POST request to capture the payment amount.
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please define a `callback` function
to be invoked when receiving the response.
>>> def callback_function(response):
>>> pprint(response)
>>>
>>> thread = api.capture_payment_with_http_info(capture_payment_request, id, callback=callback_function)
:param callback function: The callback function
for asynchronous request. (optional)
:param CapturePaymentRequest capture_payment_request: (required)
:param str id: The payment ID returned from a previous payment request. This ID links the capture to the payment. (required)
:return: PtsV2PaymentsCapturesPost201Response
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['capture_payment_request', 'id']
all_params.append('callback')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method capture_payment" % key
)
params[key] = val
del params['kwargs']
# verify the required parameter 'capture_payment_request' is set
if ('capture_payment_request' not in params) or (params['capture_payment_request'] is None):
if self.api_client.mconfig.log_config.enable_log:
self.logger.error("InvalidArgumentException : Missing the required parameter `capture_payment_request` when calling `capture_payment`")
raise ValueError("Missing the required parameter `capture_payment_request` when calling `capture_payment`")
# verify the required parameter 'id' is set
if ('id' not in params) or (params['id'] is None):
if self.api_client.mconfig.log_config.enable_log:
self.logger.error("InvalidArgumentException : Missing the required parameter `id` when calling `capture_payment`")
raise ValueError("Missing the required parameter `id` when calling `capture_payment`")
collection_formats = {}
path_params = {}
if 'id' in params:
path_params['id'] = params['id']
id=id
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
if 'capture_payment_request' in params:
body_params = params['capture_payment_request']
sdkTracker = SdkTracker()
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'capture_payment_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
if 'POST' == GlobalLabelParameters.POST or 'POST' == GlobalLabelParameters.PUT or 'POST' == GlobalLabelParameters.PATCH:
body_params = process_body(body_params)
is_mle_supported_by_cybs_for_api = True
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, is_mle_supported_by_cybs_for_api, "capture_payment,capture_payment_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(['application/hal+json;charset=utf-8'])
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type(['application/json;charset=utf-8'])
# Authentication setting
auth_settings = []
return self.api_client.call_api(f'/pts/v2/payments/{id}/captures', 'POST',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='PtsV2PaymentsCapturesPost201Response',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)