-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathLiqPay.php
300 lines (264 loc) · 8.1 KB
/
LiqPay.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<?php
/**
* Liqpay Payment Module
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
*
* @category LiqPay
* @package liqpay/liqpay
* @version 3.0
* @author Liqpay
* @copyright Copyright (c) 2014 Liqpay
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
* EXTENSION INFORMATION
*
* LIQPAY API https://www.liqpay.ua/documentation/en
*
*/
/**
* Payment method liqpay process
*
* @author Liqpay <[email protected]>
*/
// tests/Unit/LiqPayTest.php
class LiqPay
{
private $_api_url = 'https://www.liqpay.ua/api/';
private $_checkout_url = 'https://www.liqpay.ua/api/3/checkout';
protected $_supportedCurrencies = array(
'EUR', 'USD', 'UAH');
protected $_supportedLangs = ['uk', 'ru', 'en'];
private $_public_key;
private $_private_key;
private $_server_response_code = null;
protected $_button_translations = array(
'ru' => 'Оплатить',
'uk' => 'Сплатити',
'en' => 'Pay'
);
protected $_actions = array(
"pay", "hold", "subscribe", "paydonate"
);
public $curlRequester;
/**
* Constructor.
*
* @param string $public_key
* @param string $private_key
* @param string $api_url (optional)
*
* @throws InvalidArgumentException
*/
public function __construct($public_key, $private_key, $api_url = null)
{
if (empty($public_key)) {
throw new InvalidArgumentException('public_key is empty');
}
if (empty($private_key)) {
throw new InvalidArgumentException('private_key is empty');
}
$this->curlRequester = new CurlRequester();
$this->_public_key = $public_key;
$this->_private_key = $private_key;
if (null !== $api_url) {
$this->_api_url = $api_url;
}
}
/**
* Call API
*
* @param string $path
* @param array $params
* @param int $timeout
*
* @return array|null
*/
public function api($path, $params = array(), $timeout = 5)
{
$params = $this->check_required_params($params);
$url = $this->_api_url . $path;
$private_key = $this->_private_key;
$data = $this->encode_params($params);
$signature = $this->str_to_sign($private_key . $data . $private_key);
$postfields = http_build_query(array(
'data' => $data,
'signature' => $signature
));
$server_output = $this->curlRequester->make_curl_request($url, $postfields, $timeout);
if ($server_output == NULL) {
return array('error' => 'Invalid URL or connection timeout');
}
return json_decode($server_output);
}
/**
* Return last api response http code
*
* @return string|null
*/
public function get_response_code()
{
return $this->_server_response_code;
}
/**
* cnb_form
*
* @param array $params
*
* @return string
*
* @throws InvalidArgumentException
*/
public function cnb_form($params)
{
$language = 'uk';
if (isset($params['language']) && in_array($params['language'], $this->_supportedLangs)) {
$language = $params['language'];
}
$params = $this->cnb_params($params);
$data = $this->encode_params($params);
$signature = $this->cnb_signature($params);
return sprintf('
<form method="POST" action="%s" accept-charset="utf-8">
%s
%s
<script type="text/javascript" src="https://static.liqpay.ua/libjs/sdk_button.js"></script>
<sdk-button label="%s" background="#77CC5D" onClick="submit()"></sdk-button>
</form>
',
$this->_checkout_url,
sprintf('<input type="hidden" name="%s" value="%s" />', 'data', $data),
sprintf('<input type="hidden" name="%s" value="%s" />', 'signature', $signature),
$this->_button_translations[$language]
);
}
/**
* cnb_form raw data for custom form
*
* @param $params
* @return array
*/
public function cnb_form_raw($params)
{
$params = $this->cnb_params($params);
return array(
'url' => $this->_checkout_url,
'data' => $this->encode_params($params),
'signature' => $this->cnb_signature($params)
);
}
/**
* cnb_signature
*
* @param array $params
*
* @return string
*/
public function cnb_signature($params)
{
$params = $this->cnb_params($params);
$private_key = $this->_private_key;
$json = $this->encode_params($params);
$signature = $this->str_to_sign($private_key . $json . $private_key);
return $signature;
}
protected function check_required_params($params)
{
$params['public_key'] = $this->_public_key;
if (!isset($params['version'])) {
throw new InvalidArgumentException('version is null');
}
if (!isset($params['action'])) {
throw new InvalidArgumentException('action is null');
}
return $params;
}
/**
* cnb_params
*
* @param array $params
*
* @return array $params
*/
protected function cnb_params($params)
{
$params = $this->check_required_params($params);
if (!isset($params['amount'])) {
throw new InvalidArgumentException('amount is null');
}
if (!isset($params['currency'])) {
throw new InvalidArgumentException('currency is null');
}
if (!in_array($params['currency'], $this->_supportedCurrencies)) {
throw new InvalidArgumentException('currency is not supported');
}
if (!isset($params['description'])) {
throw new InvalidArgumentException('description is null');
}
return $params;
}
/**
* encode_params
*
* @param array $params
* @return string
*/
protected function encode_params($params)
{
return base64_encode(json_encode($params));
}
/**
* decode_params
*
* @param string $params
* @return array
*/
public function decode_params($params)
{
return json_decode(base64_decode($params), true);
}
/**
* str_to_sign
*
* @param string $str
*
* @return string
*/
public function str_to_sign($str)
{
$signature = base64_encode(sha1($str, 1));
return $signature;
}
}
class CurlRequester
{
/**
* make_curl_request
* @param $url string
* @param $postfields string
* @param int $timeout
* @return bool|string
*/
public function make_curl_request($url, $postfields, $timeout = 5) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); // Avoid MITM vulnerability http://phpsecurity.readthedocs.io/en/latest/Input-Validation.html#validation-of-input-sources
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); // Check the existence of a common name and also verify that it matches the hostname provided
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); // The number of seconds to wait while trying to connect
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); // The maximum number of seconds to allow cURL functions to execute
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
$this->_server_response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($server_output === false) {
$server_output = json_encode(array('error' => 'Invalid URL or connection timeout'));
}
return $server_output;
}
}