-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimplePayment.php
401 lines (346 loc) · 8.35 KB
/
SimplePayment.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
<?php
namespace ThePay\ApiClient\Model;
use DateTime;
use Exception;
use ThePay\ApiClient\Utils\Json;
/**
* Class SimplePayment
*
* @package ThePay\ApiClient\Model
*/
class SimplePayment
{
/**
* Unique ID of the payment
* @var string
*/
private $uid;
/**
* @var string
*/
private $projectId;
/**
* Payment status (e.g. paid)
* @var string
*/
private $state;
/**
* Currency code (e.g. CZK)
* @var string
*/
private $currency;
/**
* @var int
*/
private $amount;
/**
* @var DateTime
*/
private $createdAt;
/**
* @var DateTime|null
*/
private $finishedAt;
/**
* Payment method code
* @var string|null
*/
private $paymentMethod;
/**
* @var string
*/
private $orderId;
/**
* @var DateTime
*/
private $validTo;
/**
* @var int
*/
private $fee;
/**
* @var string|null
*/
private $description;
/**
* @var string|null
*/
private $description_for_merchant;
/**
* @var string empty if subscription payment
*/
private $payUrl;
/**
* @var string empty if subscription payment
*/
private $detailUrl;
/**
* @var Customer|null
*/
private $customer;
/**
* Information about bank account if available
* @var BankAccount|null
*/
private $offsetAccount;
/**
* @var string
*/
private $offsetAccountStatus;
/**
* @var \Datetime|null
*/
private $offsetAccountDeterminedAt;
/**
* @var array<PaymentEvent>
*/
private $paymentEvents = [];
private ?PaymentCard $card = null;
/**
* @param string|array<string, mixed> $values Json in string or associative array
* @throws Exception
*/
public function __construct($values)
{
$data = is_array($values) ? $values : Json::decode($values, true);
$this->uid = $data['uid'];
$this->projectId = $data['project_id'];
$this->state = $data['state'];
$this->currency = $data['currency'];
$this->amount = $data['amount'];
$this->createdAt = new DateTime($data['created_at']);
$this->finishedAt = $data['finished_at'] !== null ? new DateTime($data['finished_at']) : null;
$this->paymentMethod = $data['payment_method'];
$this->validTo = new DateTime($data['valid_to']);
$this->fee = $data['fee'];
$this->description = $data['description'];
$this->description_for_merchant = isset($data['description_for_merchant']) ? $data['description_for_merchant'] : null;
$this->payUrl = $data['pay_url'];
$this->detailUrl = $data['detail_url'];
$this->orderId = $data['order_id'];
$this->offsetAccount = $data['offset_account_status'] === 'loaded' ? new BankAccount($data['offset_account']) : null;
$this->offsetAccountStatus = $data['offset_account_status'];
$this->customer = $data['customer'] ? new Customer($data['customer']) : null;
$this->offsetAccountDeterminedAt = $data['offset_account_determined_at'] !== null ? new \DateTime($data['offset_account_determined_at']) : null;
if (count($data['events']) > 0) {
foreach ($data['events'] as $eventData) {
$this->paymentEvents[] = new PaymentEvent($eventData);
}
}
if (($data['card'] ?? null) !== null) {
$this->card = new PaymentCard($data['card']);
}
}
/**
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* @return string
*/
public function getProjectId()
{
return $this->projectId;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @return string
*/
public function getCurrency()
{
return $this->currency;
}
/**
* @return int
*/
public function getAmount()
{
return $this->amount;
}
/**
* @return DateTime
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* @return DateTime|null
*/
public function getFinishedAt()
{
return $this->finishedAt;
}
/**
* @return string
*/
public function getPaymentMethod()
{
return $this->paymentMethod;
}
/**
* @return DateTime
*/
public function getValidTo()
{
return $this->validTo;
}
/**
* @return int
*/
public function getFee()
{
return $this->fee;
}
/**
* @return string|null
*/
public function getDescription()
{
return $this->description;
}
/**
* @return string|null
*/
public function getDescriptionForMerchant()
{
return $this->description_for_merchant;
}
/**
* @return string|null
*/
public function getOrderId()
{
return $this->orderId;
}
/**
* @return BankAccount|null
*/
public function getOffsetAccount()
{
return $this->offsetAccount;
}
/**
* @return string empty if subscription payment
*/
public function getPayUrl()
{
return $this->payUrl;
}
/**
* @return string empty if subscription payment
*/
public function getDetailUrl()
{
return $this->detailUrl;
}
/**
* @return Customer
*/
public function getCustomer()
{
return $this->customer;
}
/**
* @return string
*/
public function getOffsetAccountStatus()
{
return $this->offsetAccountStatus;
}
/**
* @return Datetime|null
*/
public function getOffsetAccountDeterminedAt()
{
return $this->offsetAccountDeterminedAt;
}
/**
* @return array<PaymentEvent>
*/
public function getEvents()
{
return $this->paymentEvents;
}
/**
* @return bool
*/
public function hasErrorOnLastAttempt()
{
return $this->wasEventTypeOnLastAttempt(PaymentEvent::PAYMENT_ERROR);
}
/**
* @return bool
*/
public function wasLastAttemptCancelledByUser()
{
return $this->wasEventTypeOnLastAttempt(PaymentEvent::PAYMENT_CANCELLED);
}
public function getCard(): ?PaymentCard
{
return $this->card;
}
/**
* @return array<string, mixed>
*/
public function toArray()
{
return [
'uid' => $this->getUid(),
'projectId' => $this->getProjectId(),
'orderId' => $this->orderId,
'state' => $this->getState(),
'currency' => $this->getCurrency(),
'amount' => $this->getAmount(),
'createdAt' => $this->getCreatedAt(),
'finishedAt' => $this->getFinishedAt(),
'validTo' => $this->validTo,
'fee' => $this->fee,
'description' => $this->description,
'description_for_merchant' => $this->description_for_merchant,
'paymentMethod' => $this->getPaymentMethod(),
'payUrl' => $this->payUrl,
'detailUrl' => $this->detailUrl,
'customer' => $this->customer ? $this->customer->toArray() : null,
'bankAccount' => $this->offsetAccount ? $this->offsetAccount->toArray() : null,
'offsetAccountStatus' => $this->offsetAccountStatus,
'offsetAccountDeterminedAt' => $this->offsetAccountDeterminedAt,
'events' => $this->paymentEvents,
'card' => $this->card ? $this->getCard()->toArray() : null,
];
}
/**
* @return bool Returns true if the payment was paid
*/
public function wasPaid()
{
return in_array($this->getState(), ['paid', 'partially_refunded', 'refunded'])
&& $this->getFinishedAt() != null;
}
/**
* @param string $eventType
* @return bool
*/
private function wasEventTypeOnLastAttempt($eventType)
{
$events = array_reverse($this->getEvents());
foreach ($events as $event) {
if ($event->getType() === PaymentEvent::METHOD_SELECTION) {
break;
}
if ($event->getType() === $eventType) {
return true;
}
}
return false;
}
}