-
Notifications
You must be signed in to change notification settings - Fork 22
/
Customer.php
119 lines (106 loc) · 2.5 KB
/
Customer.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
<?php
namespace Dinkbit\ConektaCashier;
use Conekta_Customer;
class Customer extends Conekta_Customer
{
/**
* The subscription being managed by Conekta Cashier.
*
* @var \Conekta_Subscription
*/
public $subscription;
/**
* {@inheritdoc}
*/
public static function retrieve($id, $apiKey = null)
{
return self::_scpFind(get_called_class(), $id, $apiKey);
}
/**
* Get the current subscription ID.
*
* @return string|null
*/
public function getConektaSubscription()
{
return $this->subscription ? $this->subscription->id : null;
}
/**
* Find a subscription by ID.
*
* @param string $id
*
* @return \Conekta_Subscription|null
*/
public function findSubscription($id)
{
if ($this->subscription->id == $id) {
return $this->subscription;
}
}
/**
* Create the current subscription with the given data.
*
* @param array $params
*
* @return void
*/
protected function _createSubscription(array $params)
{
return $this->subscription = $this->createSubscription($params);
}
/**
* Update the current subscription with the given data.
*
* @param array $params
*
* @return \Conekta_Subscription
*/
public function updateSubscription($params = null)
{
if (is_null($this->subscription) || $this->subscription->status == 'canceled') {
return $this->_createSubscription($params);
}
return $this->_updateSubscription($params);
}
/**
* Update the current subscription with the given data.
*
* @param $params
*
* @return void
*/
public function _updateSubscription($params = null)
{
return $this->subscription = $this->subscription->update($params);
}
/**
* Cancel the current subscription.
*
* @param array $params
*
* @return void
*/
public function cancelSubscription($params = null)
{
return $this->subscription->cancel($params);
}
/**
* Pause the current subscription.
*
* @return void
*/
public function pauseSubscription()
{
return $this->subscription = $this->subscription->pause();
}
/**
* Resume the current subscription.
*
* @return void
*/
public function resumeSubscription()
{
return $this->subscription = $this->subscription->resume();
}
}