Completed
Pull Request — master (#1)
by Dmitry
07:27
created

RoboKassaMerchant   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 60
Duplicated Lines 100 %

Coupling/Cohesion

Components 2
Dependencies 6

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 3
lcom 2
cbo 6
dl 60
loc 60
ccs 0
cts 28
cp 0
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A createGateway() 7 7 1
A requestPurchase() 19 19 1
A completePurchase() 16 16 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\robokassa;
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\RoboKassa\Gateway;
17
18
/**
19
 * Class RoboKassaMerchant
20
 *
21
 * @author Dmytro Naumenko <[email protected]>
22
 */
23 View Code Duplication
class RoboKassaMerchant 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...
24
{
25
    /**
26
     * @var Gateway
27
     */
28
    protected $gateway;
29
30
    protected function createGateway()
31
    {
32
        return $this->gatewayFactory->build('RoboKassa', [
33
            'purse' => $this->credentials->getPurse(),
34
            'secretKey' => $this->credentials->getKey1(),
35
        ]);
36
    }
37
38
    /**
39
     * @param InvoiceInterface $invoice
40
     * @return RedirectPurchaseResponse
41
     */
42
    public function requestPurchase(InvoiceInterface $invoice)
43
    {
44
        /**
45
         * @var \Omnipay\RoboKassa\Message\PurchaseResponse $response
46
         */
47
        $response = $this->gateway->purchase([
48
            'inv_id' => $invoice->getId(),
49
            'client' => $invoice->getClient(),
50
            'description' => $invoice->getDescription(),
51
            'amount' => $this->moneyFormatter->format($invoice->getAmount()),
52
            'currency' => $invoice->getCurrency()->getCode(),
53
            'returnUrl' => $invoice->getReturnUrl(),
54
            'notifyUrl' => $invoice->getNotifyUrl(),
55
            'cancelUrl' => $invoice->getCancelUrl(),
56
            'time' => date('c'),
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\RoboKassa\Message\CompletePurchaseResponse $response */
69
        $response = $this->gateway->completePurchase($data)->send();
70
71
        return (new CompletePurchaseResponse())
72
            ->setIsSuccessful($response->isSuccessful())
73
            ->setAmount($this->moneyParser->parse($response->getAmount(), $response->getCurrency()))
74
            ->setTransactionReference($response->getTransactionReference())
75
            ->setTransactionId($response->getTransactionId())
76
            ->setPayer($response->getData['sender'] ?? $response->getData['email'] ?? '')
77
            ->setTime(
78
                (new \DateTime($response->getTime(), new \DateTimeZone('Europe/Moscow')))
79
                    ->setTimezone(new \DateTimeZone('UTC'))
80
            );
81
    }
82
}
83