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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Signifyd\Plugin;
use Magento\Payment\Model\InfoInterface;
use Magento\Payment\Model\MethodInterface;
use Magento\Signifyd\Api\GuaranteeCancelingServiceInterface;
/**
* Plugin for Magento\Payment\Model\MethodInterface.
*
* @see MethodInterface
*/
class PaymentPlugin
{
/**
* @var GuaranteeCancelingServiceInterface
*/
private $guaranteeCancelingService;
/**
* @param GuaranteeCancelingServiceInterface $guaranteeCancelingService
*/
public function __construct(
GuaranteeCancelingServiceInterface $guaranteeCancelingService
) {
$this->guaranteeCancelingService = $guaranteeCancelingService;
}
/**
* Performs Signifyd guarantee cancel operation after payment denying.
*
* @see MethodInterface::denyPayment
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*
* @param MethodInterface $subject
* @param MethodInterface|bool $result
* @param InfoInterface $payment
* @return bool|MethodInterface
*/
public function afterDenyPayment(MethodInterface $subject, $result, InfoInterface $payment)
{
if ($this->isPaymentDenied($payment, $result)) {
$this->guaranteeCancelingService->cancelForOrder($payment->getParentId());
}
return $result;
}
/**
* Checks if deny payment operation was successful.
*
* Result not false check for payment methods using AbstractMethod.
* Transaction is closed check for payment methods using Gateway.
*
* @param InfoInterface $payment
* @param MethodInterface $result
* @return bool
*/
private function isPaymentDenied($payment, $result)
{
return $result !== false || $payment->getIsTransactionClosed();
}
}