Payment.php
4.97 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
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
<?php
namespace Razorpay\Api;
use Requests;
class Payment extends Entity
{
/**
* @param $id Payment id
*/
public function fetch($id)
{
return parent::fetch($id);
}
public function all($options = array())
{
if(isset($options['X-Razorpay-Account'])){
Request::addHeader('X-Razorpay-Account', $options['X-Razorpay-Account']);
unset($options['X-Razorpay-Account']);
}
return parent::all($options);
}
/**
* Patches given payment with new attributes
*
* @param array $attributes
*
* @return Payment
*/
public function edit($attributes = array())
{
$url = $this->getEntityUrl() . $this->id;
return $this->request(Requests::PATCH, $url, $attributes);
}
/**
* @param $id Payment id
*/
public function refund($attributes = array())
{
$refund = new Refund;
$attributes = array_merge($attributes, array('payment_id' => $this->id));
return $refund->create($attributes);
}
/**
* @param $id Payment id
*/
public function capture($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/capture';
return $this->request('POST', $relativeUrl, $attributes);
}
public function transfer($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/transfers';
return $this->request('POST', $relativeUrl, $attributes);
}
public function refunds()
{
$refund = new Refund;
$options = array('payment_id' => $this->id);
return $refund->all($options);
}
public function transfers()
{
$transfer = new Transfer();
$transfer->payment_id = $this->id;
return $transfer->all();
}
public function bankTransfer()
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/bank_transfer';
return $this->request('GET', $relativeUrl);
}
public function fetchMultipleRefund($options = array())
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/refunds';
return $this->request('GET', $relativeUrl, $options);
}
public function fetchRefund($refundId)
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/refunds/'.$refundId;
return $this->request('GET', $relativeUrl);
}
public function createRecurring($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . 'create/recurring';
return $this->request('POST', $relativeUrl, $attributes);
}
/**
* fetch Card Details
*
* @param id $id
*
* @return card
*/
public function fetchCardDetails()
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/card';
return $this->request('GET', $relativeUrl);
}
/**
* fetchPaymentDowntime
*
*/
public function fetchPaymentDowntime()
{
$relativeUrl = $this->getEntityUrl() . 'downtimes';
return $this->request('GET', $relativeUrl);
}
/**
* fetch Payment Downtime Id
*
* @param id $id
*
* @return card
*/
public function fetchPaymentDowntimeById($id)
{
$relativeUrl = $this->getEntityUrl() . 'downtimes' . $id;
return $this->request('GET', $relativeUrl);
}
/**
* create Payment Json
*
* @param array $attributes
*/
public function createPaymentJson($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . 'create/json';
return $this->request('POST', $relativeUrl, $attributes);
}
/**
* Submit otp
*
* @param id $id
*
* @param array $attributes
*/
public function otpSubmit($attributes = array())
{
$relativeUrl = $this->getEntityUrl(). $this->id . '/otp/submit';
return $this->request('POST', $relativeUrl, $attributes);
}
/**
* Generate otp
*
* @param id $id
*
* @param array $attributes
*/
public function otpGenerate($id)
{
$relativeUrl = $this->getEntityUrl(). $id . '/otp_generate';
return $this->request('POST', $relativeUrl);
}
/**
* Resend otp
*
* @param id $id
*
* @param array $attributes
*/
public function otpResend()
{
$relativeUrl = $this->getEntityUrl(). $this->id . '/otp/resend';
return $this->request('POST', $relativeUrl);
}
public function createUpi($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . 'create/upi';
return $this->request('POST', $relativeUrl, $attributes);
}
public function validateVpa($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . 'validate/vpa';
return $this->request('POST', $relativeUrl, $attributes);
}
public function fetchPaymentMethods()
{
$relativeUrl = 'methods';
return $this->request('GET', $relativeUrl);
}
}