Completed
Pull Request — master (#1)
by Dmitry
02:28
created

InterKassaMerchant   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 56
Duplicated Lines 100 %

Coupling/Cohesion

Components 2
Dependencies 8

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 3
lcom 2
cbo 8
dl 56
loc 56
ccs 0
cts 25
cp 0
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A createGateway() 8 8 1
A requestPurchase() 17 17 1
A completePurchase() 13 13 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace hiqdev\php\merchant\merchants\interkassa;
4
5
use hiqdev\php\merchant\credentials\CredentialsInterface;
6
use hiqdev\php\merchant\factories\GatewayFactoryInterface;
7
use hiqdev\php\merchant\InvoiceInterface;
8
use hiqdev\php\merchant\merchants\AbstractMerchant;
9
use hiqdev\php\merchant\merchants\MerchantInterface;
10
use hiqdev\php\merchant\response\CompletePurchaseResponse;
11
use hiqdev\php\merchant\response\RedirectPurchaseResponse;
12
use Money\Currency;
13
use Money\Money;
14
use Money\MoneyFormatter;
15
use Money\MoneyParser;
16
use Omnipay\Common\AbstractGateway;
17
use Omnipay\WebMoney\Gateway;
18
19
/**
20
 * Class PaxumMerchant
21
 *
22
 * @author Dmytro Naumenko <[email protected]>
23
 */
24 View Code Duplication
class InterKassaMerchant extends AbstractMerchant
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
25
{
26
    /**
27
     * @var Gateway
28
     */
29
    protected $gateway;
30
31
    protected function createGateway()
32
    {
33
        return $this->gatewayFactory->build('InterKassa', [
34
            'checkoutId' => $this->credentials->getPurse(),
35
            'signKey'  => $this->credentials->getKey1(),
36
            'signAlgorithm' => 'md5'
37
        ]);
38
    }
39
40
    /**
41
     * @param InvoiceInterface $invoice
42
     * @return RedirectPurchaseResponse
43
     */
44
    public function requestPurchase(InvoiceInterface $invoice)
45
    {
46
        /**
47
         * @var \Omnipay\Paxum\Message\PurchaseResponse $response
48
         */
49
        $response = $this->gateway->purchase([
50
            'transactionId' => $invoice->getId(),
51
            'description' => $invoice->getDescription(),
52
            'amount' => $this->moneyFormatter->format($invoice->getAmount()),
53
            'currency' => $invoice->getCurrency()->getCode(),
54
            'returnUrl' => $invoice->getReturnUrl(),
55
            'notifyUrl' => $invoice->getNotifyUrl(),
56
            'cancelUrl' => $invoice->getCancelUrl(),
57
        ])->send();
58
59
        return new RedirectPurchaseResponse($response->getRedirectUrl(), $response->getRedirectData());
60
    }
61
62
    /**
63
     * @param array $data
64
     * @return CompletePurchaseResponse
65
     */
66
    public function completePurchase($data)
67
    {
68
        /** @var \Omnipay\InterKassa\Message\CompletePurchaseResponse $response */
69
        $response = $this->gateway->completePurchase($data)->send();
70
71
        return (new CompletePurchaseResponse())
72
            ->setIsSuccessful($response->isSuccessful())
0 ignored issues
show
Documentation introduced by
$response->isSuccessful() is of type boolean, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
73
            ->setAmount($this->moneyParser->parse($response->getAmount(), $response->getCurrency()))
74
            ->setTransactionReference($response->getTransactionReference())
75
            ->setTransactionId($response->getTransactionId())
76
            ->setPayer($response->getPayer())
77
            ->setTime((new \DateTime($response->getTime()))->setTimezone(new \DateTimeZone('UTC')));
78
    }
79
}
80