-
Notifications
You must be signed in to change notification settings - Fork 1
/
Client.php
189 lines (167 loc) · 5.48 KB
/
Client.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
<?php
/*
* This file is part of the EoSetefi package.
*
* (c) 2014 Eymen Gunay <eymen@egunay.com>
*/
namespace Eo\SetefiBundle;
use Eo\SetefiBundle\Payment\PaymentRequestInterface;
use Guzzle\Http\Client as Guzzle;
use Symfony\Component\HttpFoundation\Response;
/**
* Setefi client
*/
class Client
{
protected $endpoint;
protected $id;
protected $password;
/**
* Class constructor
*
* @param string $endpoint
* @param string $id
* @param string $password
*/
public function __construct($endpoint, $id, $password)
{
$this->endpoint = $endpoint;
$this->id = $id;
$this->password = $password;
}
/**
* Create payment url
*
* @param PaymentRequestInterface $paymentRequest
* @return string
*/
public function createPaymentUrl(PaymentRequestInterface $paymentRequest)
{
$client = new Guzzle();
$parameters = array(
'id' => $this->id,
'password' => $this->password,
'operationType' => 'initialize',
'amount' => $paymentRequest->getAmount(),
'currencyCode' => $paymentRequest->getCurrencyCode(),
'language' => $paymentRequest->getLanguage(),
'responseToMerchantUrl' => $paymentRequest->getReturnUrl(),
'recoveryUrl' => $paymentRequest->getRecoveryUrl(),
'merchantOrderId' => $paymentRequest->getCartId(),
'cardHolderName' => $paymentRequest->getFullName(),
'cardHolderEmail' => $paymentRequest->getEmail(),
'description' => $paymentRequest->getDescription()
);
$request = $client->post($this->endpoint, array(), $parameters);
$response = $request->send();
$response = new \SimpleXMLElement($response->getBody());
$paymentId = $response->paymentid;
$paymentUrl = $response->hostedpageurl;
$securityToken = $response->securitytoken;
return "$paymentUrl?PaymentID=$paymentId";
}
/**
* Send cancel request
*
* @param string $paymentId
* @return string
*/
public function cancel($paymentId)
{
$client = new Guzzle();
$parameters = array(
'id' => $this->id,
'password' => $this->password,
'operationType' => 'voidauthorization',
'paymentId' => $paymentId
);
$request = $client->post($this->endpoint, array(), $parameters);
$response = $request->send();
$response = new \SimpleXMLElement($response->getBody());
return array(
'result' => strval($response->result),
'authorizationcode' => strval($response->authorizationcode),
'paymentid' => strval($response->paymentid),
'merchantorderid' => strval($response->merchantorderid),
'responsecode' => strval($response->responsecode),
'customfield' => strval($response->customfield),
'description' => strval($response->description)
);
}
/**
* Send confirm request
*
* @param string $paymentId
* @param PaymentRequestInterface $paymentRequest
* @return string
*/
public function confirm($paymentId, PaymentRequestInterface $paymentRequest)
{
$client = new Guzzle();
$parameters = array(
'id' => $this->id,
'password' => $this->password,
'operationType' => 'confirm',
'amount' => $paymentRequest->getAmount(),
'currencyCode' => $paymentRequest->getCurrencyCode(),
'merchantOrderId' => $paymentRequest->getCartId(),
'description' => $paymentRequest->getDescription(),
'paymentid' => $paymentId
);
$request = $client->post($this->endpoint, array(), $parameters);
$response = $request->send();
$response = new \SimpleXMLElement($response->getBody());
return array(
'result' => strval($response->result),
'authorizationcode' => strval($response->authorizationcode),
'paymentid' => strval($response->paymentid),
'merchantorderid' => strval($response->merchantorderid),
'responsecode' => strval($response->responsecode),
'customfield' => strval($response->customfield),
'description' => strval($response->description),
);
}
/**
* Resolve notification parameters
*
* @param array $parameters
* @return array
*/
public function resolveNotification($parameters)
{
$required = array(
"authorizationcode",
"cardcountry",
"cardexpirydate",
"customfield",
"maskedpan",
"merchantorderid",
"paymentid",
"responsecode",
"result",
"rrn",
"securitytoken",
"threedsecure"
);
$missing = array();
foreach ($required as $key) {
if (array_key_exists($key, $parameters) === false) {
$missing[] = $key;
}
}
if (empty($missing) === false) {
throw new \Exception('Required fields are missing: ' . implode(', ', $missing));
}
return $parameters;
}
/**
* Generate notification response
*
* @param string $url
* @return Response
*/
public function generateNotificationResponse($url)
{
return new Response($url);
}
}