forked from PoolPort/PoolPort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortAbstract.php
469 lines (399 loc) · 12.5 KB
/
PortAbstract.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<?php
namespace PoolPort;
use Ramsey\Uuid\Uuid;
abstract class PortAbstract
{
/**
* Status code for status field in poolport_transactions table
*/
const TRANSACTION_INIT = 0;
/**
* Status code for status field in poolport_transactions table
*/
const TRANSACTION_SUCCEED = 1;
/**
* Transaction succeed text for put in log
*/
const TRANSACTION_SUCCEED_TEXT = 'پرداخت با موفقیت انجام شد.';
/**
* Status code for status field in poolport_transactions table
*/
const TRANSACTION_FAILED = 2;
/**
* Status code for status field in poolport_transactions table
*/
const TRANSACTION_PENDING = 3;
/**
* Transaction id
*
* @var null|int
*/
protected $transactionId = null;
/**
* Transaction row in database
*/
protected $transaction = null;
/**
* Customer card number
*
* @var string
*/
protected $cardNumber = '';
/**
* @var Config
*/
protected $config;
/**
* @var DataBaseManager
*/
protected $db;
/**
* Port id
*
* @var int
*/
protected $portId;
/**
* Reference id
*
* @var string
*/
protected $refId;
/**
* Amount in Rial
*
* @var int
*/
protected $amount;
/**
* Tracking code payment
*
* @var string
*/
protected $trackingCode;
/**
* Initialize of class
*
* @param Config $config
* @param DataBaseManager $db
* @param int $portId
*/
public function __construct(Config $config, DataBaseManager $db, $portId)
{
$this->config = $config;
$this->portId = $portId;
$this->db = $db;
}
/**
* Get port id, $this->portId
*
* @return int
*/
public function portId()
{
return $this->portId;
}
/**
* Return card number
*
* @return string
*/
public function cardNumber()
{
return $this->cardNumber;
}
/**
* Return tracking code
*/
public function trackingCode()
{
return $this->trackingCode;
}
/**
* Get transaction id
*
* @return int|null
*/
public function transactionId()
{
return $this->transactionId;
}
/**
* Return reference id
*/
public function refId()
{
return $this->refId;
}
/**
* Return result of payment
* If result is done, return true, otherwise throws an related exception
*
* This method must be implements in child class
*
* @param object $transaction row of transaction in database
*
* @return $this
*/
public function verify($transaction)
{
$this->transaction = $transaction;
$this->transactionId = intval($transaction->id);
$this->amount = intval($transaction->price);
$this->refId = $transaction->ref_id;
}
/**
* Insert new transaction to poolport_transactions table
*
* @return int last inserted id
*/
protected function newTransaction()
{
$dbh = $this->db->getDBH();
$date = new \DateTime;
$date = $date->getTimestamp();
$status = self::TRANSACTION_INIT;
$stmt = $dbh->prepare("INSERT INTO poolport_transactions (port_id, price, status, last_change_date)
VALUES (:port_id, :price, :status, :last_change_date)");
$stmt->bindParam(':port_id', $this->portId);
$stmt->bindParam(':price', $this->amount);
$stmt->bindParam(':status', $status);
$stmt->bindParam(':last_change_date', $date);
$stmt->execute();
$this->transactionId = $dbh->lastInsertId();
return $this->transactionId;
}
/**
* Commit transaction
* Set status field to success status
*
* @return bool
*/
protected function transactionSucceed()
{
$dbh = $this->db->getDBH();
$statement = $dbh->prepare('UPDATE poolport_transactions
SET `status` = :status,
`cardNumber` = :cardNumber,
`last_change_date` = :last_change_date,
`payment_date` = :payment_date,
`tracking_code` = :tracking_code
WHERE id = :transactionId');
$time = new \DateTime();
return $statement->execute([
':transactionId' => $this->transactionId,
':status' => self::TRANSACTION_SUCCEED,
':last_change_date' => $time->getTimestamp(),
':payment_date' => $time->getTimestamp(),
':tracking_code' => $this->trackingCode,
':cardNumber' => $this->cardNumber
]);
}
/**
* Failed transaction
* Set status field to error status
*
* @return bool
*/
protected function transactionFailed()
{
$dbh = $this->db->getDBH();
$statement = $dbh->prepare('UPDATE poolport_transactions
SET `status` = :status,
`last_change_date` = :change_date
WHERE id = :transactionId');
$time = new \DateTime();
return $statement->execute([
':transactionId' => $this->transactionId,
':status' => self::TRANSACTION_FAILED,
':change_date' => $time->getTimestamp()
]);
}
/**
* Pending transaction
* Set status pending to error status
*
* @param $transactionId int|null If this param not send, use class transactionId parameter
*
* @return bool
*/
public function transactionPending($transactionId = null)
{
$transactionId = $transactionId == null ? $this->transactionId : $transactionId;
$dbh = $this->db->getDBH();
$statement = $dbh->prepare('UPDATE poolport_transactions
SET `status` = :status,
`last_change_date` = :change_date
WHERE id = :transactionId');
$time = new \DateTime();
return $statement->execute([
':transactionId' => $transactionId,
':status' => self::TRANSACTION_PENDING,
':change_date' => $time->getTimestamp()
]);
}
/**
* Update transaction refId
*
* @return void
*/
protected function transactionSetRefId()
{
$dbh = $this->db->getDBH();
$stmt = $dbh->prepare("UPDATE poolport_transactions
SET ref_id = :ref_id
WHERE id = :id");
$stmt->execute([
':ref_id' => $this->refId,
':id' => $this->transactionId
]);
}
/**
* New log
*
* @param string|int $statusCode
* @param string $statusMessage
*/
protected function newLog($statusCode, $statusMessage)
{
$dbh = $this->db->getDBH();
$date = new \DateTime;
$date = $date->getTimestamp();
$stmt = $dbh->prepare("INSERT INTO poolport_status_log (transaction_id, result_code, result_message, log_date)
VALUES (:transaction_id, :result_code, :result_message, :log_date)");
$stmt->bindParam(':transaction_id', $this->transactionId);
$stmt->bindParam(':result_code', $statusCode);
$stmt->bindParam(':result_message', $statusMessage);
$stmt->bindParam(':log_date', $date);
$stmt->execute();
}
/**
* Reset a config per request in poolport.php configuration file
*
* @param string $key
* @param mixed $value
*
* @return $this
*/
public function setConfig($key, $value)
{
$this->config->set($key, $value);
return $this;
}
/**
* Set all ports call back url
*
* @param string $url
*
* @return $this
*/
public function setGlobalCallbackUrl($url)
{
$this->config->set('zarinpal.callback-url', $url);
$this->config->set('mellat.callback-url', $url);
$this->config->set('payline.callback-url', $url);
$this->config->set('sadad.callback-url', $url);
$this->config->set('jahanpay.callback-url', $url);
$this->config->set('parsian.callback-url', $url);
$this->config->set('pasargad.callback-url', $url);
$this->config->set('saderat.callback-url', $url);
$this->config->set('irankish.callback-url', $url);
$this->config->set('simulator.callback-url', $url);
$this->config->set('saman.callback-url', $url);
$this->config->set('pay.callback-url', $url);
$this->config->set('jibit.callback-url', $url);
$this->config->set('ap.callback-url', $url);
$this->config->set('bitpay.callback-url', $url);
$this->config->set('idpay.callback-url', $url);
$this->config->set('payping.callback-url', $url);
$this->config->set('vandar.callback-url', $url);
$this->config->set('pna.callback-url', $url);
return $this;
}
/**
* Set user-mobile config for all ports that support this feature
*
* @param string $mobile In format 09xxxxxxxxx
*
* @return $this
*/
public function setGlobalUserMobile($mobile)
{
// Convert 09xxxxxxxxx format to 989xxxxxxxxx format for spesific ports
$withPrefixFormat = '989'.substr($mobile, 2);
$this->config->set('mellat.user-mobile', $withPrefixFormat);
$this->config->set('irankish.user-mobile', $withPrefixFormat);
$this->config->set('sadad.user-mobile', $mobile);
$this->config->set('jibit.user-mobile', $mobile);
$this->config->set('ap.user-mobile', $mobile);
$this->config->set('idpay.user-mobile', $mobile);
$this->config->set('payping.user-mobile', $mobile);
$this->config->set('zarinpal.user-mobile', $mobile);
$this->config->set('vandar.user-mobile', $mobile);
$this->config->set('saman.user-mobile', $mobile);
$this->config->set('parsian.user-mobile', $mobile);
$this->config->set('pna.user-mobile', $mobile);
return $this;
}
/**
* @var string $url
*
* @return string redirect url
*/
protected function buildRedirectUrl($url)
{
$uniqueId = $this->createAUniqueId();
$uniqueKey = $this->createAUniqueKey();
$verifyKey = $this->createVerifyKey($uniqueId, $uniqueKey);
$this->setUniqeid($uniqueId, $uniqueKey, $verifyKey, $this->transactionId());
$query = http_build_query(["u" => $uniqueId]);
$questionMark = strpos($url, '?');
if (!$questionMark)
return "$url?$query";
else {
return substr($url, 0, $questionMark + 1).$query."&".substr($url, $questionMark + 1);
}
}
private function createAUniqueId()
{
$dbh = $this->db->getDBH();
do {
$uuid = Uuid::uuid4();
$stmt = $dbh->prepare("SELECT `id` from `poolport_transactions`
WHERE `unique_id` = :uuid
LIMIT 1
");
$stmt->bindParam(':uuid', $uuid);
$stmt->execute();
$found = count($stmt->fetchAll()) > 0;
} while($found);
return $uuid;
}
private function createAUniqueKey()
{
return uniqid("", true);
}
private function createVerifyKey($uniqueId, $uniqueKey)
{
return password_hash($uniqueId.$uniqueKey, PASSWORD_BCRYPT);
}
public static function checkVerifyKey($transaction)
{
return password_verify($transaction->unique_id.$transaction->unique_key, $transaction->verify_key);
}
protected function setUniqeid($uniqeid, $uniqueKey, $verifyKey, $transactionId)
{
$dbh = $this->db->getDBH();
$stmt = $dbh->prepare("UPDATE poolport_transactions
SET unique_id = :unique_id,
unique_key = :unique_key,
verify_key = :verify_key
WHERE id = :id");
$stmt->execute([
':unique_id' => $uniqeid,
':unique_key' => $uniqueKey,
':verify_key' => $verifyKey,
':id' => $transactionId
]);
}
}