-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOrangeTransactionStatus.php
More file actions
99 lines (86 loc) · 1.77 KB
/
OrangeTransactionStatus.php
File metadata and controls
99 lines (86 loc) · 1.77 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
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
<?php
namespace Bow\Payment\Gateway\IvoryCost\Orange;
use Bow\Payment\Common\PaymentStatus;
use Bow\Payment\Common\ProcessorStatusInterface;
class OrangeTransactionStatus implements ProcessorStatusInterface
{
/**
* Define the transaction status
*
* @var string
*/
private $status;
/**
* OrangeTransactionStatus constructor
*
* @param string $status
* @return void
*/
public function __construct(string $status)
{
$this->status = strtoupper($status);
}
/**
* Define if transaction fail
*
* @return bool
*/
public function isFailed()
{
return $this->status == 'FAIL';
}
/**
* Define if transaction initiated
*
* @return bool
*/
public function isInitiated()
{
return $this->status == 'INITIATED';
}
/**
* Define if transaction expired
*
* @return bool
*/
public function isExpired()
{
return $this->status == 'EXPIRED';
}
/**
* Define if transaction success
*
* @return bool
*/
public function isSuccess()
{
return $this->status == 'SUCCESS';
}
/**
* Define if transaction pending
*
* @return bool
*/
public function isPending()
{
return $this->status == 'PENDING';
}
/**
* Get payment status string
*
* @return string
*/
public function getStatus(): string
{
if ($this->isSuccess()) {
return PaymentStatus::COMPLETED;
}
if ($this->isPending()) {
return PaymentStatus::PENDING;
}
if ($this->isFailed()) {
return PaymentStatus::FAILED;
}
return PaymentStatus::UNKNOWN;
}
}