-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathResponse.php
307 lines (293 loc) · 10.1 KB
/
Response.php
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<?php
namespace Dfe\CheckoutCom;
use com\checkout\ApiServices\Charges\ResponseModels\Charge as CCharge;
use com\checkout\ApiServices\Charges\ResponseModels\ChargeHistory;
use com\checkout\ApiServices\SharedModels\Charge as SCharge;
use Df\Payment\Source\AC;
use Dfe\CheckoutCom\SDK\ChargeService as API;
use Dfe\CheckoutCom\Settings as S;
use Magento\Sales\Model\Order;
# 2016-05-15
//
# 2016-06-08
# I renamed it to get rid of the following
# Magento 2 compiler (bin/magento setup:di:compile) failure:
# «Fatal error: Cannot use com\checkout\ApiServices\Charges\ResponseModels\Charge as Charge
# because the name is already in use in vendor/mage2pro/checkout.com/Response.php on line 4»
# http://stackoverflow.com/questions/17746481
//
# 2016-07-17
# A sample failure response:
// {
// "id": "charge_test_153AF6744E5J7A98E1D9",
// "responseMessage": "40144 - Threshold Risk - Decline",
// "responseAdvancedInfo": null,
// "responseCode": "40144",
// "status": "Declined",
// "authCode": "00000"
// ...
// }
//
# 2016-08-05
# A sample failure response when some request params are invalid:
// {
// "errorCode": "70000",
// "message": "Validation error",
// "errors": [
// "Invalid value for 'token'"
// ],
// "errorMessageCodes": [
// "70006"
# ],
// "eventId": "96320dfb-672c-4317-93d0-04317e8ea9bf"
// }
final class Response {
/**
* 2017-03-27
* @used-by \Dfe\CheckoutCom\Handler\CustomerReturn::p()
* @used-by \Dfe\CheckoutCom\Method::r()
*/
function __construct(CCharge $c, Order $o) {$this->_c = $c; $this->_o = $o; $this->_s = dfps($this);}
/**
* 2016-05-08
* 2016-09-07
* https://github.com/CKOTech/checkout-php-library/blob/v1.2.4/com/checkout/ApiServices/Charges/ResponseModels/Charge.php?ts=4#L129
* @used-by self::hasId()
* @used-by self::messageC()
* @used-by \Dfe\CheckoutCom\Exception::message()
* @used-by \Dfe\CheckoutCom\Method::need3DS()
* @return array(string => string)
*/
function a(string ...$k):array {return dfaoc($this, function():array {/** @var array(string => string) $r */
dfp_report($this, $r = df_json_decode($this->_c->{'json'}), 'response');
return $r;
}, df_arg($k));}
/**
* 2016-05-08
* 2016-05-09
* If Checkout.com marks a payment as «Flagged»,
* then it ignores the «autoCapture» request parameter,
* so the shop should additionally do the «capture» operation: https://mage2.pro/t/1565
* So we can employ the Review mode for such payments.
* @used-by \Dfe\CheckoutCom\Method::getConfigPaymentAction()
* @used-by \Dfe\CheckoutCom\Handler\CustomerReturn::p()
*/
function action():string {return dfc($this, function():string {return $this->flagged() || !$this->waitForCapture()
? AC::A : $this->_s->actionDesired($this->_o)
;});}
/**
* 2016-05-09
* «[Checkout.com] - What is a «Flagged» transaction?» https://mage2.pro/t/1565
{
"id": "charge_test_253DB7144E5Z7A98EED4",
"responseMessage": "40142 - Threshold Risk",
"responseAdvancedInfo": "",
"responseCode": "10100",
"status": "Flagged",
"authCode": "188986"
}
* @used-by \Dfe\CheckoutCom\Method::charge()
* @used-by \Dfe\CheckoutCom\Response::action()
*/
function flagged():bool {return self::$S__FLAGGED === $this->_c->getStatus();}
/**
* 2016-08-05
* @used-by self::messageC()
* @used-by \Dfe\CheckoutCom\Exception::message()
*/
function hasId():bool {return !!$this->a('id');}
/**
* 2016-05-11
* The method solves the problem described below.
*
* 2016-05-10
* If we make a mayment with the «autoCapture» option enabled,
* then Checkout.com really makes 2 transactions (not 1): «authorize» and «capture».
* But in this case Checkout.com does not give us the ID of the «capture» transaction:
* it gives only the ID of the «authorize» transaction.
* We a forced to use the «authorize» transaction ID
* as the corresponding Magento «capture» transaction ID, which is bad.
*
* 2016-05-11
* The documentation confirms such Checkout.com behavior:
* http://docs.checkout.com/reference/merchant-api-reference/charges/charge-actions/refund-card-charge
* «To process a refund the merchant must send the Charge ID of the Captured transaction»
* «For an Automatic Capture, the Charge Response will contain
* the Charge ID of the Auth Charge. This ID cannot be used.»
*
* 2016-05-11
* I have found the solution:
* we can use a «Get Charge History» API request
* to find out the ID of the «capture» transaction:
* http://docs.checkout.com/reference/merchant-api-reference/charges/get-charge-history
* «This is a quick way to view a charge status, rather than searching through webhooks»
*
* 2016-05-11
* The previous code was ('Y' !== $response->getAutoCapture()).
* It was wrong, because Checkout.com could mark the payment as «Flagged».
* A «Flagged» transaction requires an additional «capture» transaction,
* so it should be treated as an «authorize» transaction
* despite the «autoCapture» option has the «Y» value.
*
* 2016-05-15
* The previous code was:
* 'Y' !== $response->getAutoCapture() || $this->isChargeFlagged()
*
* @used-by \Dfe\CheckoutCom\Method::charge()
* @throws \Exception
*/
function magentoTransactionId():string {return dfc($this, function() {return AC::A === $this->action()
? $this->_c->getId() : self::getCaptureCharge($this->_c->getId())->getId()
;});}
/**
* 2016-07-17
* @used-by \Dfe\CheckoutCom\Exception::messageC()
* @used-by \Dfe\CheckoutCom\Handler\CustomerReturn::p()
*/
function messageC():string {return dfc($this, function():string {return !$this->hasId()
? __('Sorry, this payment method is not working now.<br/>Please use another payment method.')
: $this->_s->messageFailure(df_desc(...$this->a('responseMessage', 'responseAdvancedInfo')))
;});}
/**
* 2016-05-08
* 2016-05-09
* Added support for the «Flagged» status: https://mage2.pro/t/1565
* {
* "id": "charge_test_253DB7144E5Z7A98EED4",
* "responseMessage": "40142 - Threshold Risk",
* "responseAdvancedInfo": "",
* "responseCode": "10100",
* "status": "Flagged",
* "authCode": "188986"
* }
*
* 2016-05-15
* For the transactions, which the Checkout.com merchant backend shows as «Authorised - 3D»,
* the object «status» field's value will be «Authorised», not «Authorised - 3D».
*
* @used-by \Dfe\CheckoutCom\Handler\CustomerReturn::p()
* @used-by \Dfe\CheckoutCom\Method::charge()
*/
function valid():bool {return in_array($this->_c->getStatus(), [self::$S__AUTHORISED, self::$S__FLAGGED]);}
/**
* 2016-05-15
* @used-by self::action()
*/
private function waitForCapture():bool {return df_is_localhost() || $this->_s->waitForCapture();}
/**
* 2016-05-15
* @used-by self::magentoTransactionId()
* @used-by \Dfe\CheckoutCom\Handler\CustomerReturn::p()
* @throws \Exception
*/
static function getCaptureCharge(string $authId):CCharge {
$r = null; /** @bar CCharge $r */
try {
/**
* 2016-05-11
* When this code is executed without a debugger,
* then the response does not contain 2 transactions
* (with the «Authorized» and «Сaptured» statuses),
* but a single transaction with the «Pending» status.
* In this case we sould wait.
* The next response will contain a single transaction with the «Authorized» status.
* We should wait again.
*
* 2016-05-15
* Yesterday, I waited 14 seconds for a «Сaptured» transaction.
* I concluded that we should not force a real buyer to wait so long.
* So, from now, we always make an «authorize» transaction first,
* and if the store's administrator enables the automatic capture feature,
* then we make the «capture» transaction in a webhook, not here.
*/
$numRetries = 60; /** @var int $numRetries */
$s = dfps(__CLASS__); /** @var S $s */
$api = $s->apiCharge(); /** @var API $api */
while ($numRetries && !$r) {
$history = $api->getChargeHistory($authId); /** @var ChargeHistory $history */
df_log($history->getCharges());
/**
* 2016-05-11
* A «Сaptured» transaction is always first in the response array.
* An «Authorized» transaction is the second.
* https://mage2.pro/t/1601
*/
$sCharge = df_first($history->getCharges()); /** @var SCharge $sCharge */
/**
* 2016-05-15
* For the transactions,
* which the Checkout.com merchant backend shows as «Captured - 3D»,
* the object «status» field's value will be «Captured», not «Captured - 3D».
*/
if (self::S__CAPTURED === $sCharge->getStatus()) {
$r = $api->getCharge($sCharge->getId());
}
else {
sleep(1);
$numRetries--;
}
}
}
# 2023-08-03 "Treat `\Throwable` similar to `\Exception`": https://github.com/mage2pro/core/issues/311
catch (\Throwable $t) {
df_log($t);
throw $t;
}
return df_assert($r);
}
/**
* 2017-03-27
* @used-by self::__construct()
* @used-by self::a()
* @used-by self::flagged()
* @used-by self::magentoTransactionId()
* @used-by self::valid()
* @var CCharge
*/
private $_c;
/**
* 2017-03-27
* @used-by self::__construct()
* @used-by self::action()
* @var Order
*/
private $_o;
/**
* 2017-03-27
* @used-by self::__construct()
* @used-by self::action()
* @used-by self::messageC()
* @used-by self::waitForCapture()
* @var S
*/
private $_s;
/**
* 2016-05-15
* For the transactions,
* which the Checkout.com merchant backend shows as «Captured - 3D»,
* the object «status» field's value will be «Captured», not «Captured - 3D».
* @var string
*/
const S__CAPTURED = 'Captured';
/**
* 2016-05-15
* For the transactions, which the Checkout.com merchant backend shows as «Authorised - 3D»,
* the object «status» field's value will be «Authorised», not «Authorised - 3D».
* @var string
*/
private static $S__AUTHORISED = 'Authorised';
/**
* 2016-05-09
* «[Checkout.com] - What is a «Flagged» transaction?» https://mage2.pro/t/1565
{
"id": "charge_test_253DB7144E5Z7A98EED4",
"responseMessage": "40142 - Threshold Risk",
"responseAdvancedInfo": "",
"responseCode": "10100",
"status": "Flagged",
"authCode": "188986"
}
* @var string
*/
private static $S__FLAGGED = 'Flagged';
}