-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPurchaseRequest.php
More file actions
73 lines (63 loc) · 1.92 KB
/
PurchaseRequest.php
File metadata and controls
73 lines (63 loc) · 1.92 KB
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
<?php
/**
* RoboKassa driver for Omnipay PHP payment library.
*
* @link https://github.com/hiqdev/omnipay-robokassa
* @package omnipay-robokassa
* @license MIT
* @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
*/
namespace Omnipay\RoboKassa\Message;
class PurchaseRequest extends AbstractRequest
{
public function getData()
{
$this->validate(
'purse', 'amount', 'currency', 'description'
);
return [
'InvId' => $this->getInvId(),
'MrchLogin' => $this->getPurse(),
'OutSum' => $this->getAmount(),
'Desc' => $this->getDescription(),
'IncCurrLabel' => $this->getCurrencyLabel(),
'OutSumCurrency' => $this->getCurrency(),
'SignatureValue' => $this->generateSignature(),
'IsTest' => (int) $this->getTestMode(),
'Receipt' => $this->getReceipt(),
] + $this->getCustomFields();
}
public function generateSignature()
{
$params = [
$this->getPurse(),
$this->getAmount(),
$this->getInvId()
];
if ($this->getCurrency()) {
$params[] = $this->getCurrency();
}
if ($this->getReceipt()) {
$params[] = $this->getReceipt();
}
$params[] = $this->getSecretKey();
foreach ($this->getCustomFields() as $field => $value) {
$params[] = "$field=$value";
}
return md5(implode(':', $params));
}
public function getCustomFields()
{
$fields = array_filter([
'Shp_TransactionId' => $this->getTransactionId(),
'Shp_Client' => $this->getClient(),
'Shp_Currency' => $this->getCurrency()
]);
ksort($fields);
return $fields;
}
public function sendData($data)
{
return $this->response = new PurchaseResponse($this, $data);
}
}