Passed
Push — feature/eco-2166-additional-in... ( c61e00...9cf080 )
by Aleksey
07:43
created

ComputopConfig   A

Complexity

Total Complexity 20

Size/Duplication

Total Lines 166
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 20
eloc 25
dl 0
loc 166
rs 10
c 0
b 0
f 0

20 Methods

Rating   Name   Duplication   Size   Complexity  
A getBaseUrlSsl() 0 3 1
A getPayNowTxType() 0 3 1
A getEtiId() 0 3 1
A getEasyCreditInitActionUrl() 0 3 1
A getPaydirektShopKey() 0 3 1
A getCreditCardInitActionUrl() 0 3 1
A getMerchantId() 0 3 1
A getPayNowInitActionUrl() 0 3 1
A getEasyCreditSuccessAction() 0 3 1
A getCreditCardTemplateEnabled() 0 3 1
A getCallbackFailureRedirectPath() 0 3 1
A getPaymentMethodsWithoutOrderCall() 0 3 1
A getBlowfishPassword() 0 3 1
A getCallbackSuccessCaptureRedirectPath() 0 3 1
A getPaymentMethodsCaptureTypes() 0 3 1
A getPaypalInitActionUrl() 0 3 1
A getCreditCardTxType() 0 3 1
A getCallbackSuccessOrderRedirectPath() 0 3 1
A getDirectDebitInitActionUrl() 0 3 1
A getPayPalTxType() 0 3 1
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Yves\Computop;
9
10
use Spryker\Shared\Application\ApplicationConstants;
11
use Spryker\Yves\Kernel\AbstractBundleConfig;
12
use SprykerEco\Shared\Computop\ComputopConfig as SharedComputopConfig;
13
use SprykerEco\Shared\Computop\ComputopConstants;
14
use SprykerEco\Shared\ComputopApi\ComputopApiConstants;
15
16
class ComputopConfig extends AbstractBundleConfig implements ComputopConfigInterface
17
{
18
    public const ETI_ID = 'Spryker – MV:%s'; //Parameter is requested by Computop, Module version
19
    public const FINISH_AUTH = 'Y'; //Only with ETM: Transmit value <Y> in order to stop the renewal of guaranteed authorizations and rest amounts after partial captures.
20
    public const RESPONSE_ENCRYPT_TYPE = 'encrypt';
21
22
    protected const EASY_CREDIT_SUCCESS_ACTION = 'checkout-summary';
23
24
    /**
25
     * @return string
26
     */
27
    public function getEasyCreditSuccessAction(): string
28
    {
29
        return static::EASY_CREDIT_SUCCESS_ACTION;
30
    }
31
32
    /**
33
     * @return string
34
     */
35
    public function getCallbackSuccessOrderRedirectPath(): string
36
    {
37
        return 'checkout-summary';
38
    }
39
40
    /**
41
     * @return string
42
     */
43
    public function getCallbackSuccessCaptureRedirectPath(): string
44
    {
45
        return 'checkout-success';
46
    }
47
48
    /**
49
     * @return string
50
     */
51
    public function getCallbackFailureRedirectPath(): string
52
    {
53
        return 'checkout-payment';
54
    }
55
56
    /**
57
     * @return string[]
58
     */
59
    public function getPaymentMethodsWithoutOrderCall(): array
60
    {
61
        return $this->get(ComputopConstants::PAYMENT_METHODS_WITHOUT_ORDER_CALL);
62
    }
63
64
    /**
65
     * @return string
66
     */
67
    public function getBaseUrlSsl(): string
68
    {
69
        return $this->get(ApplicationConstants::BASE_URL_SSL_YVES);
70
    }
71
72
    /**
73
     * @return string
74
     */
75
    public function getMerchantId(): string
76
    {
77
        return $this->get(ComputopApiConstants::MERCHANT_ID);
78
    }
79
80
    /**
81
     * @return string
82
     */
83
    public function getPaydirektShopKey(): string
84
    {
85
        return $this->get(ComputopConstants::PAYDIREKT_SHOP_KEY);
86
    }
87
88
    /**
89
     * @return string
90
     */
91
    public function getBlowfishPassword(): string
92
    {
93
        return $this->get(ComputopApiConstants::BLOWFISH_PASSWORD);
94
    }
95
96
    /**
97
     * @return string
98
     */
99
    public function getPaypalInitActionUrl(): string
100
    {
101
        return $this->get(ComputopConstants::PAYPAL_INIT_ACTION);
102
    }
103
104
    /**
105
     * @return string
106
     */
107
    public function getDirectDebitInitActionUrl(): string
108
    {
109
        return $this->get(ComputopConstants::DIRECT_DEBIT_INIT_ACTION);
110
    }
111
112
    /**
113
     * @return string
114
     */
115
    public function getCreditCardInitActionUrl(): string
116
    {
117
        return $this->get(ComputopConstants::CREDIT_CARD_INIT_ACTION);
118
    }
119
120
    /**
121
     * @return string
122
     */
123
    public function getPayNowInitActionUrl(): string
124
    {
125
        return $this->get(ComputopConstants::PAY_NOW_INIT_ACTION);
126
    }
127
128
    /**
129
     * @return string
130
     */
131
    public function getEasyCreditInitActionUrl(): string
132
    {
133
        return $this->get(ComputopConstants::EASY_CREDIT_INIT_ACTION);
134
    }
135
136
    /**
137
     * @return bool
138
     */
139
    public function getCreditCardTemplateEnabled(): bool
140
    {
141
        return $this->get(ComputopConstants::CREDIT_CARD_TEMPLATE_ENABLED);
142
    }
143
144
    /**
145
     * @return string[]
146
     */
147
    public function getPaymentMethodsCaptureTypes(): array
148
    {
149
        return $this->get(ComputopApiConstants::PAYMENT_METHODS_CAPTURE_TYPES);
150
    }
151
152
    /**
153
     * @return string
154
     */
155
    public function getCreditCardTxType(): string
156
    {
157
        return $this->get(ComputopConstants::CREDIT_CARD_TX_TYPE);
158
    }
159
160
    /**
161
     * @return string
162
     */
163
    public function getPayNowTxType(): string
164
    {
165
        return $this->get(ComputopConstants::PAY_NOW_TX_TYPE);
166
    }
167
168
    /**
169
     * @return string
170
     */
171
    public function getPayPalTxType(): string
172
    {
173
        return $this->get(ComputopConstants::PAY_PAL_TX_TYPE);
174
    }
175
176
    /**
177
     * @return string
178
     */
179
    public function getEtiId(): string
180
    {
181
        return sprintf(static::ETI_ID, SharedComputopConfig::COMPUTOP_MODULE_VERSION);
182
    }
183
}
184