-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBunqLib.php
506 lines (455 loc) · 15.3 KB
/
BunqLib.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<?php
namespace bunq\tinker;
use bunq\Context\ApiContext;
use bunq\Context\BunqContext;
use bunq\Exception\BunqException;
use bunq\Exception\ForbiddenException;
use bunq\Http\Pagination;
use bunq\Model\Generated\Endpoint\Card;
use bunq\Model\Generated\Endpoint\MonetaryAccountBank;
use bunq\Model\Generated\Endpoint\Payment;
use bunq\Model\Generated\Endpoint\RequestInquiry;
use bunq\Model\Generated\Endpoint\UserCompany;
use bunq\Model\Generated\Endpoint\UserLight;
use bunq\Model\Generated\Endpoint\UserPerson;
use bunq\Model\Generated\Object\Amount;
use bunq\Model\Generated\Object\LabelMonetaryAccount;
use bunq\Model\Generated\Object\NotificationFilter;
use bunq\Model\Generated\Object\Pointer;
use bunq\Util\BunqEnumApiEnvironmentType;
use bunq\Util\InstallationUtil;
/**
* Some simple helper methods to get you started in seconds.
*/
class BunqLib
{
/**
* Error constants.
*/
const ERROR_USER_TYPE_UNEXPECTED = 'User of type "%s" is unexpected';
const ERROR_COULD_NOT_DETERMINE_ALIAS_OF_TYPE_IBAN = 'Could not find alias with type IBAN for monetary account "%s';
const ERROR_COULD_NOT_DETERMINE_RECIPIENT_TYPE = 'Could not determine recipient type of "%s".';
/**
* Config file name constants.
*/
const CONFIG_FILE_NAME_SANDBOX = 'bunq-sandbox.conf';
const CONFIG_FILE_NAME_PRODUCTION = 'bunq-production.conf';
/**
* The first index of an array.
*/
const INDEX_FIRST = 0;
/**
* Type/category constants.
*/
const CURRENCY_TYPE_EUR = 'EUR';
const POINTER_TYPE_EMAIL = 'EMAIL';
const POINTER_TYPE_PHONE_NUMBER = 'PHONE_NUMBER';
const POINTER_TYPE_IBAN = 'IBAN';
const CARD_PIN_ASSIGNMENT_PRIMARY = 'PRIMARY';
const NOTIFICATION_DELIVERY_METHOD_URL = 'URL';
const NOTIFICATION_CATEGORY_MUTATION = 'MUTATION';
/**
* Status constants.
*/
const MONETARY_ACCOUNT_STATUS_ACTIVE = 'ACTIVE';
/**
* Regex constants.
*/
const PREG_MATCH_SUCCESS = 1;
const REGEX_E164_PHONE = '/^\+\d{3,15}$/';
/**
* Spending money request constants.
*/
const REQUEST_SPENDING_MONEY_DESCRIPTION = "Requesting some spending money.";
const REQUEST_SPENDING_MONEY_RECIPIENT = "sugardaddy@bunq.com";
const REQUEST_SPENDING_MONEY_AMOUNT = "500.0";
const REQUEST_SPENDING_MONEY_WAIT_TIME_SECONDS = 1;
/**
* Zero balance constant.
*/
const BALANCE_ZERO = 0.0;
/**
* @var UserCompany|UserPerson|UserLight
*/
protected $user;
/**
* @var BunqEnumApiEnvironmentType
*/
protected $environment;
/**
* @param BunqEnumApiEnvironmentType $bunqEnumApiEnvironmentType
*/
public function __construct(BunqEnumApiEnvironmentType $bunqEnumApiEnvironmentType)
{
$this->environment = $bunqEnumApiEnvironmentType;
$this->setupContext();
$this->setupCurrentUser();
$this->requestSpendingMoneyIfNeeded();
}
/**
* Restores the context from the saved file during creation.
*
* @param bool $resetConfigIfNeeded
*
* @throws BunqException
* @throws ForbiddenException
*/
private function setupContext(bool $resetConfigIfNeeded = true)
{
if (is_file($this->determineBunqConfFileName())) {
// Config is already present
} elseif (BunqEnumApiEnvironmentType::SANDBOX()->equals($this->environment)) {
InstallationUtil::automaticInstall($this->environment, $this->determineBunqConfFileName());
}
try {
$apiContext = ApiContext::restore($this->determineBunqConfFileName());
$apiContext->ensureSessionActive();
$apiContext->save($this->determineBunqConfFileName());
BunqContext::loadApiContext($apiContext);
} catch (ForbiddenException $forbiddenException) {
if ($resetConfigIfNeeded) {
$this->handleForbiddenException($forbiddenException);
} else {
throw $forbiddenException;
}
}
}
/**
* @return string
*/
private function determineBunqConfFileName(): string
{
if ($this->environment->equals(BunqEnumApiEnvironmentType::PRODUCTION())) {
return self::CONFIG_FILE_NAME_PRODUCTION;
} else {
return self::CONFIG_FILE_NAME_SANDBOX;
}
}
/**
* Retrieves the user that belongs to the API key.
*
* @throws BunqException
*/
private function setupCurrentUser()
{
if (BunqContext::getUserContext()->isOnlyUserCompanySet()) {
$this->user = BunqContext::getUserContext()->getUserCompany();
} elseif (BunqContext::getUserContext()->isOnlyUserPersonSet()) {
$this->user = BunqContext::getUserContext()->getUserPerson();
} else {
throw new BunqException(vsprintf(self::ERROR_USER_TYPE_UNEXPECTED, [get_class($this->user)]));
}
}
/**
* @param ForbiddenException $forbiddenException
*
* @throws ForbiddenException
*/
private function handleForbiddenException(ForbiddenException $forbiddenException)
{
if (BunqEnumApiEnvironmentType::SANDBOX()->equals($this->environment)) {
unlink($this->determineBunqConfFileName());
$this->setupContext(false);
} else {
throw $forbiddenException;
}
}
/**
* @param LabelMonetaryAccount $bankAccountPublicInformation
* @param MonetaryAccountBank[] $allMonetaryAccountBank
*
* @return MonetaryAccountBank|null
*/
public static function getBankAccountFromPublicInformation(
LabelMonetaryAccount $bankAccountPublicInformation,
array $allMonetaryAccountBank
) {
$monetaryAccountLabelIban = $bankAccountPublicInformation->getIban();
foreach ($allMonetaryAccountBank as $monetaryAccount) {
$monetaryAccountIban =
static::getIbanAliasForBankAccount(
$monetaryAccount
)->getValue();
if ($monetaryAccountIban === $monetaryAccountLabelIban) {
return $monetaryAccount;
}
}
return null;
}
/**
* @param MonetaryAccountBank $bankAccount
*
* @return Pointer
* @throws BunqException
*/
public static function getIbanAliasForBankAccount(MonetaryAccountBank $bankAccount): Pointer
{
foreach ($bankAccount->getAlias() as $alias) {
if ($alias->getType() === self::POINTER_TYPE_IBAN) {
return $alias;
}
}
throw new BunqException(
vsprintf(self::ERROR_COULD_NOT_DETERMINE_ALIAS_OF_TYPE_IBAN, [$bankAccount->getDescription()])
);
}
/**
* Saves the API context back to the file.
*/
public function updateContext()
{
BunqContext::getApiContext()->save($this->determineBunqConfFileName());
}
/**
* @param int $count
*
* @return MonetaryAccountBank[]
*/
public function getAllActiveBankAccount(int $count = 10): array
{
$pagination = new Pagination();
$pagination->setCount($count);
$allMonetaryAccount = MonetaryAccountBank::listing(
[],
$pagination->getUrlParamsCountOnly()
)->getValue();
$allActiveMonetaryAccount = [];
foreach ($allMonetaryAccount as $monetaryAccount) {
if ($monetaryAccount->getStatus() === self::MONETARY_ACCOUNT_STATUS_ACTIVE) {
$allActiveMonetaryAccount[] = $monetaryAccount;
}
}
return $allActiveMonetaryAccount;
}
/**
* @param string $description
* @param MonetaryAccountBank $monetaryAccount
*/
public function updateBankAccountDescription(string $description, MonetaryAccountBank $monetaryAccount)
{
MonetaryAccountBank::update(
$monetaryAccount->getId(),
$description
);
}
/**
* @param string $amount
* @param string $recipientValueString
* @param string $description
* @param MonetaryAccountBank $monetaryAccount
* @param string|null $recipientNameString
*
* @return int
* @throws BunqException
*/
public function makePayment(
string $amount,
string $recipientValueString,
string $description,
MonetaryAccountBank $monetaryAccount,
string $recipientNameString = null
): int {
// Create a new payment and retrieve it's id.
return Payment::create(
new Amount($amount, self::CURRENCY_TYPE_EUR),
$this->determinePointerFromRecipient($recipientValueString, $recipientNameString),
$description,
$monetaryAccount->getId()
)->getValue();
}
/**
* @param string $recipientValueString
* @param string|null $recipientName
*
* @return Pointer
* @throws BunqException
*/
public function determinePointerFromRecipient(string $recipientValueString, string $recipientName = null): Pointer
{
if (filter_var($recipientValueString, FILTER_VALIDATE_EMAIL)) {
$pointer = new Pointer(self::POINTER_TYPE_EMAIL, $recipientValueString);
} elseif (preg_match(self::REGEX_E164_PHONE, $recipientValueString) === self::PREG_MATCH_SUCCESS) {
$pointer = new Pointer(self::POINTER_TYPE_PHONE_NUMBER, $recipientValueString);
} elseif (!is_null($recipientName)) {
$pointer = new Pointer(self::POINTER_TYPE_IBAN, $recipientValueString, $recipientName);
} else {
throw new BunqException(vsprintf(self::ERROR_COULD_NOT_DETERMINE_RECIPIENT_TYPE, [$recipientValueString]));
}
return $pointer;
}
/**
* @param MonetaryAccountBank $monetaryAccount
* @param int $count
*
* @return Payment[]
*/
public function getAllPayment(MonetaryAccountBank $monetaryAccount, int $count): array
{
$pagination = new Pagination();
$pagination->setCount($count);
return Payment::listing(
$monetaryAccount->getId(),
$pagination->getUrlParamsCountOnly()
)->getValue();
}
/**
* @param string $amount
* @param string $recipientValueString
* @param string $description
* @param MonetaryAccountBank $monetaryAccount
* @param string|null $recipientNameString
*
* @return int
* @throws BunqException
*/
public function makeRequest(
string $amount,
string $recipientValueString,
string $description,
MonetaryAccountBank $monetaryAccount,
string $recipientNameString = null
): int {
// Create a new request and retrieve it's id.
return RequestInquiry::create(
new Amount($amount, self::CURRENCY_TYPE_EUR),
$this->determinePointerFromRecipient($recipientValueString, $recipientNameString),
$description,
true,
$monetaryAccount->getId()
)->getValue();
}
/**
* @param MonetaryAccountBank $monetaryAccount
* @param int $count
*
* @return RequestInquiry[]
*/
public function getAllRequest(MonetaryAccountBank $monetaryAccount, int $count): array
{
$paginationCountOnly = new Pagination();
$paginationCountOnly->setCount($count);
return RequestInquiry::listing(
$monetaryAccount->getId(),
$paginationCountOnly->getUrlParamsCountOnly()
)->getValue();
}
/**
* @param int $count
*
* @return Card[]
*/
public function getAllCard(int $count = 10): array
{
$pagination = new Pagination();
$pagination->setCount($count);
return Card::listing(
[],
$pagination->getUrlParamsCountOnly()
)->getValue();
}
/**
* @param Card $card
* @param MonetaryAccountBank $monetaryAccount
*/
public function linkCardToBankAccount(Card $card, MonetaryAccountBank $monetaryAccount)
{
Card::update(
$card->getId(),
null, /* pinCode */
null, /* activationCode */
null, /* status */
null, /* limit */
null, /* magStripePermission */
null, /* countryPermission */
$monetaryAccount->getId()
);
}
// HELPERS
/**
* @param string $callbackUrl
*/
public function addCallbackUrl(string $callbackUrl)
{
// Get the existing filters to not override the current filters.
$allCurrentNotificationFilter = $this->user->getNotificationFilters();
$allUpdatedNotificationFilter = [];
foreach ($allCurrentNotificationFilter as $notificationFilter) {
if ($notificationFilter->getNotificationTarget() !== $callbackUrl) {
$allUpdatedNotificationFilter[] = $notificationFilter;
}
}
$allUpdatedNotificationFilter[] = new NotificationFilter(
self::NOTIFICATION_DELIVERY_METHOD_URL,
$callbackUrl,
self::NOTIFICATION_CATEGORY_MUTATION
);
UserPerson::update(
null, /* firstName */
null, /* middleName */
null, /* lastName */
null, /* publicNickName */
null, /* addressMain */
null, /* addressPostal */
null, /* avatarUuid */
null, /* taxResident */
null, /* documentType */
null, /* documentNumber */
null, /* documentCountryOfIssuance */
null, /* documentFrontAttachmentId */
null, /* documentBackAttachmentId */
null, /* dataOfBirth */
null, /* placeOfBirth */
null, /* countryOfBirth */
null, /* nationality */
null, /* language */
null, /* region */
null, /* gender */
null, /* status */
null, /* subStatus */
null, /* legalGuardianAlias */
null, /* sessionTimeout */
null, /* CardIds */
null, /* cardLimits */
null, /* dailyLimitWithoutConfirmationLogin */
$allUpdatedNotificationFilter
);
}
/**
* @return Pointer[]
*/
public function getAllUserAlias(): array
{
return $this->getCurrentUser()->getAlias();
}
/**
* @return UserCompany|UserLight|UserPerson
*/
public function getCurrentUser()
{
return $this->user;
}
/**
* Requests money if the balance of the primary MA is equal to or less than zero.
*/
private function requestSpendingMoneyIfNeeded()
{
if ($this->shouldRequestSpendingMoney()) {
RequestInquiry::create(
new Amount(self::REQUEST_SPENDING_MONEY_AMOUNT, self::CURRENCY_TYPE_EUR),
new Pointer(self::POINTER_TYPE_EMAIL, self::REQUEST_SPENDING_MONEY_RECIPIENT),
self::REQUEST_SPENDING_MONEY_DESCRIPTION,
false
);
sleep(self::REQUEST_SPENDING_MONEY_WAIT_TIME_SECONDS);
}
}
/**
* @return bool
*/
private function shouldRequestSpendingMoney(): bool
{
return BunqEnumApiEnvironmentType::SANDBOX()->equals($this->environment)
&& (floatval(BunqContext::getUserContext()->getPrimaryMonetaryAccount()->getBalance()->getValue())
<= self::BALANCE_ZERO);
}
}