forked from PAYONE-GmbH/magento-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRequest.php
160 lines (150 loc) · 5.56 KB
/
Request.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
<?php
/**
* PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
*
* PHP version 5
*
* @category Payone
* @package Payone_Magento2_Plugin
* @author FATCHIP GmbH <[email protected]>
* @copyright 2003 - 2016 Payone GmbH
* @license <http://www.gnu.org/licenses/> GNU Lesser General Public License
* @link http://www.payone.de
*/
namespace Payone\Core\Helper;
use Payone\Core\Model\PayoneConfig;
/**
* Helper class for everything that has to do with request
*/
class Request extends \Payone\Core\Helper\Base
{
/**
* PAYONE environment helper
*
* @var \Payone\Core\Helper\Environment
*/
protected $environmentHelper;
/**
* PAYONE shop helper
*
* @var \Payone\Core\Helper\Shop
*/
protected $shopHelper;
/**
* Constructor
*
* @param \Magento\Framework\App\Helper\Context $context
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Payone\Core\Helper\Environment $environmentHelper
* @param \Payone\Core\Helper\Shop $shopHelper
*/
public function __construct(
\Magento\Framework\App\Helper\Context $context,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Payone\Core\Helper\Environment $environmentHelper,
\Payone\Core\Helper\Shop $shopHelper
) {
parent::__construct($context, $storeManager);
$this->environmentHelper = $environmentHelper;
$this->shopHelper = $shopHelper;
}
/**
* Get bankaccountcheck request for javascript in the checkout
*
* @return array
*/
public function getBankaccountCheckRequest()
{
if ($this->getConfigParam('check_bankaccount', PayoneConfig::METHOD_DEBIT, 'payone_payment') == '1') {
$aRequest = [
'request' => 'bankaccountcheck',
'responsetype' => 'JSON',
'mode' => $this->getConfigParam('mode', PayoneConfig::METHOD_DEBIT, 'payone_payment'),
'mid' => $this->getConfigParam('mid'), // your MID
'aid' => $this->getConfigParam('aid'), // your AID
'portalid' => $this->getConfigParam('portalid'), // your PortalId
'encoding' => $this->environmentHelper->getEncoding(), // desired encoding
'language' => $this->shopHelper->getLocale(),
'checktype' => $this->getConfigParam('bankaccountcheck_type', PayoneConfig::METHOD_DEBIT, 'payone_payment'),
'hash' => $this->getBankaccountCheckRequestHash(),
'integrator_name' => 'Magento2',
'integrator_version' => $this->shopHelper->getMagentoVersion(),
'solution_name' => 'fatchip',
'solution_version' => PayoneConfig::MODULE_VERSION,
];
return $aRequest;
}
return '';
}
/**
* Get hosted iframe request hash
*
* @return string
*/
public function getHostedIframeRequestCCHash()
{
$sHash = md5(
$this->getConfigParam('aid').
$this->environmentHelper->getEncoding().
$this->getConfigParam('mid').
$this->getConfigParam('mode', PayoneConfig::METHOD_CREDITCARD, 'payone_payment').
$this->getConfigParam('portalid').
'creditcardcheck'.
'JSON'.
'yes'.
$this->getConfigParam('key')
);
return $sHash;
}
/**
* Get bankaccount check request hash
*
* @return string
*/
public function getBankaccountCheckRequestHash()
{
$sHash = md5(
$this->getConfigParam('aid').
$this->getConfigParam('bankaccountcheck_type', PayoneConfig::METHOD_DEBIT, 'payone_payment').
$this->environmentHelper->getEncoding().
$this->getConfigParam('mid').
$this->getConfigParam('mode', PayoneConfig::METHOD_CREDITCARD, 'payone_payment').
$this->getConfigParam('portalid').
'bankaccountcheck'.
'JSON'.
$this->getConfigParam('key')
);
return $sHash;
}
/**
* Get hosted iframe request for javascript in the checkout
*
* @return array
*/
public function getHostedIframeRequest()
{
$aRequest = [
'request' => 'creditcardcheck',
'responsetype' => 'JSON', // fixed value
'mode' => $this->getConfigParam('mode', PayoneConfig::METHOD_CREDITCARD, 'payone_payment'), // desired mode
'mid' => $this->getConfigParam('mid'), // your MID
'aid' => $this->getConfigParam('aid'), // your AID
'portalid' => $this->getConfigParam('portalid'), // your PortalId
'encoding' => $this->environmentHelper->getEncoding(), // desired encoding
'storecarddata' => 'yes', // fixed value
'hash' => $this->getHostedIframeRequestCCHash()
];
return $aRequest;
}
}