1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Helpers/Bank/Yodlee/Transformer/AccountTransformer.php

113 lines
3.2 KiB
PHP
Raw Normal View History

2022-08-05 06:25:06 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-08-05 06:25:06 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Helpers\Bank\Yodlee\Transformer;
2022-08-08 04:46:41 +02:00
use App\Helpers\Bank\AccountTransformerInterface;
2023-02-16 02:36:09 +01:00
2022-08-05 06:25:06 +02:00
/**
2022-08-08 01:15:31 +02:00
[0] => stdClass Object
(
[CONTAINER] => bank
[providerAccountId] => 11308693
[accountName] => My CD - 8878
[accountStatus] => ACTIVE
[accountNumber] => xxxx8878
[aggregationSource] => USER
[isAsset] => 1
[balance] => stdClass Object
(
[currency] => USD
[amount] => 49778.07
)
2022-08-05 06:25:06 +02:00
2022-08-08 01:15:31 +02:00
[id] => 12331861
[includeInNetWorth] => 1
[providerId] => 18769
[providerName] => Dag Site Captcha
2023-02-16 02:36:09 +01:00
[isManual] =>
2022-08-08 01:15:31 +02:00
[currentBalance] => stdClass Object
(
[currency] => USD
[amount] => 49778.07
)
2022-08-05 06:25:06 +02:00
2022-08-08 01:15:31 +02:00
[accountType] => CD
[displayedName] => LORETTA
[createdDate] => 2022-07-28T06:55:33Z
[lastUpdated] => 2022-07-28T06:56:09Z
[dataset] => Array
(
[0] => stdClass Object
(
[name] => BASIC_AGG_DATA
[additionalStatus] => AVAILABLE_DATA_RETRIEVED
[updateEligibility] => ALLOW_UPDATE
[lastUpdated] => 2022-07-28T06:55:50Z
[lastUpdateAttempt] => 2022-07-28T06:55:50Z
)
2022-08-05 06:25:06 +02:00
2022-08-08 01:15:31 +02:00
)
2022-08-05 06:25:06 +02:00
2022-08-08 01:15:31 +02:00
)
2022-08-05 06:25:06 +02:00
)
*/
2022-08-10 03:56:46 +02:00
2022-08-08 04:46:41 +02:00
class AccountTransformer implements AccountTransformerInterface
2022-08-05 06:25:06 +02:00
{
2022-08-08 04:46:41 +02:00
public function transform($yodlee_account)
{
2022-08-08 01:15:31 +02:00
$data = [];
2023-02-16 02:36:09 +01:00
if (!property_exists($yodlee_account, 'account')) {
2022-08-11 06:19:35 +02:00
return $data;
2023-02-16 02:36:09 +01:00
}
2022-08-11 04:39:43 +02:00
2023-02-16 02:36:09 +01:00
foreach ($yodlee_account->account as $account) {
2022-08-08 01:15:31 +02:00
$data[] = $this->transformAccount($account);
}
return $data;
}
public function transformAccount($account)
2022-08-05 06:25:06 +02:00
{
$current_balance = 0;
$account_currency = '';
if(property_exists($account, 'currentBalance')) {
$current_balance = $account->currentBalance->amount ?? 0;
$account_currency = $account->currentBalance->currency ?? '';
}
elseif(property_exists($account, 'balance')){
$current_balance = $account->balance->amount ?? 0;
$account_currency = $account->balance->currency ?? '';
}
2022-08-05 06:25:06 +02:00
return [
2022-08-08 01:15:31 +02:00
'id' => $account->id,
'account_type' => $account->CONTAINER,
// 'account_name' => $account->accountName,
'account_name' => property_exists($account, 'accountName') ? $account->accountName : $account->nickname,
2022-08-08 01:15:31 +02:00
'account_status' => $account->accountStatus,
2022-11-06 09:03:27 +01:00
'account_number' => property_exists($account, 'accountNumber') ? '**** ' . substr($account?->accountNumber, -7) : '',
2022-08-10 03:56:46 +02:00
'provider_account_id' => $account->providerAccountId,
'provider_id' => $account->providerId,
'provider_name' => $account->providerName,
2022-08-11 06:19:35 +02:00
'nickname' => property_exists($account, 'nickname') ? $account->nickname : '',
'current_balance' => $current_balance,
'account_currency' => $account_currency,
2022-08-05 06:25:06 +02:00
];
}
}