1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Http/Controllers/BankIntegrationController.php

370 lines
14 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\Http\Controllers;
2022-08-05 11:05:59 +02:00
use App\Factory\BankIntegrationFactory;
2022-11-11 00:13:11 +01:00
use App\Filters\BankIntegrationFilters;
2022-08-08 00:26:27 +02:00
use App\Helpers\Bank\Yodlee\Yodlee;
2023-12-01 14:30:33 +01:00
use App\Helpers\Bank\Nordigen\Nordigen;
2022-08-08 00:26:27 +02:00
use App\Http\Requests\BankIntegration\AdminBankIntegrationRequest;
use App\Http\Requests\BankIntegration\BulkBankIntegrationRequest;
2022-08-05 11:05:59 +02:00
use App\Http\Requests\BankIntegration\CreateBankIntegrationRequest;
use App\Http\Requests\BankIntegration\DestroyBankIntegrationRequest;
use App\Http\Requests\BankIntegration\EditBankIntegrationRequest;
use App\Http\Requests\BankIntegration\ShowBankIntegrationRequest;
use App\Http\Requests\BankIntegration\StoreBankIntegrationRequest;
use App\Http\Requests\BankIntegration\UpdateBankIntegrationRequest;
2023-12-01 14:30:33 +01:00
use App\Jobs\Bank\ProcessBankTransactionsYodlee;
use App\Jobs\Bank\ProcessBankTransactionsNordigen;
use App\Models\Account;
2022-08-05 11:05:59 +02:00
use App\Models\BankIntegration;
use App\Models\User;
2022-08-05 11:05:59 +02:00
use App\Repositories\BankIntegrationRepository;
use App\Transformers\BankIntegrationTransformer;
2022-08-11 09:05:33 +02:00
use App\Utils\Traits\MakesHash;
2023-10-26 04:57:44 +02:00
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Cache;
2022-08-05 06:25:06 +02:00
class BankIntegrationController extends BaseController
{
2022-08-11 09:05:33 +02:00
use MakesHash;
2022-08-11 09:13:40 +02:00
2022-08-05 06:25:06 +02:00
protected $entity_type = BankIntegration::class;
protected $entity_transformer = BankIntegrationTransformer::class;
2022-08-05 11:05:59 +02:00
protected $bank_integration_repo;
public function __construct(BankIntegrationRepository $bank_integration_repo)
2022-08-05 06:25:06 +02:00
{
parent::__construct();
2022-08-05 11:05:59 +02:00
$this->bank_integration_repo = $bank_integration_repo;
}
/**
2023-04-27 07:02:52 +02:00
* @param BankIntegrationFilters $filters
2023-07-26 01:27:16 +02:00
* @return Response
2022-08-05 11:05:59 +02:00
*/
2022-11-11 00:13:11 +01:00
public function index(BankIntegrationFilters $filters)
2022-08-05 11:05:59 +02:00
{
2022-11-11 00:13:11 +01:00
$bank_integrations = BankIntegration::filter($filters);
2022-08-05 11:05:59 +02:00
return $this->listResponse($bank_integrations);
}
/**
* Display the specified resource.
*
* @param ShowBankIntegrationRequest $request
* @param BankIntegration $bank_integration
* @return Response
*
*/
public function show(ShowBankIntegrationRequest $request, BankIntegration $bank_integration)
{
return $this->itemResponse($bank_integration);
2022-08-05 06:25:06 +02:00
}
2022-08-05 11:05:59 +02:00
/**
* Show the form for editing the specified resource.
*
* @param EditBankIntegrationRequest $request
* @param BankIntegration $bank_integration
* @return Response
*
*/
public function edit(EditBankIntegrationRequest $request, BankIntegration $bank_integration)
{
return $this->itemResponse($bank_integration);
}
/**
* Update the specified resource in storage.
*
* @param UpdateBankIntegrationRequest $request
* @param BankIntegration $bank_integration
* @return Response
*
*/
public function update(UpdateBankIntegrationRequest $request, BankIntegration $bank_integration)
{
//stubs for updating the model
$bank_integration = $this->bank_integration_repo->save($request->all(), $bank_integration);
return $this->itemResponse($bank_integration->fresh());
}
/**
* Show the form for creating a new resource.
*
* @param CreateBankIntegrationRequest $request
* @return Response
*
*
*/
public function create(CreateBankIntegrationRequest $request)
{
2023-04-27 05:35:25 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
$bank_integration = BankIntegrationFactory::create($user->company()->id, $user->id, $user->account_id);
2022-08-05 11:05:59 +02:00
return $this->itemResponse($bank_integration);
}
/**
* Store a newly created resource in storage.
*
* @param StoreBankIntegrationRequest $request
* @return Response
*
*/
public function store(StoreBankIntegrationRequest $request)
{
2023-04-27 05:35:25 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
2022-08-05 11:05:59 +02:00
//stub to store the model
2023-04-27 05:35:25 +02:00
$bank_integration = $this->bank_integration_repo->save($request->all(), BankIntegrationFactory::create($user->company()->id, $user->id, $user->account_id));
2022-08-05 11:05:59 +02:00
return $this->itemResponse($bank_integration);
}
/**
* Remove the specified resource from storage.
*
* @param DestroyBankIntegrationRequest $request
* @param BankIntegration $bank_integration
* @return Response
*
* @throws \Exception
*/
public function destroy(DestroyBankIntegrationRequest $request, BankIntegration $bank_integration)
{
$this->bank_integration_repo->delete($bank_integration);
return $this->itemResponse($bank_integration->fresh());
}
2022-08-08 00:26:27 +02:00
2022-08-11 09:05:33 +02:00
2022-08-11 09:13:40 +02:00
/**
2022-08-11 09:05:33 +02:00
* Perform bulk actions on the list view.
*
* @return Response
2022-08-11 09:05:33 +02:00
*
*/
public function bulk(BulkBankIntegrationRequest $request)
2022-08-11 09:05:33 +02:00
{
$action = request()->input('action');
$ids = request()->input('ids');
2023-12-01 14:30:33 +01:00
BankIntegration::withTrashed()->whereIn('id', $this->transformKeys($ids))
->company()
->cursor()
->each(function ($bank_integration, $key) use ($action) {
$this->bank_integration_repo->{$action}($bank_integration);
});
2022-08-11 09:05:33 +02:00
/* Need to understand which permission are required for the given bulk action ie. view / edit */
return $this->listResponse(BankIntegration::withTrashed()->whereIn('id', $this->transformKeys($ids))->company());
}
2022-08-08 00:26:27 +02:00
/**
2022-08-11 09:13:40 +02:00
* Return the remote list of accounts stored on the third party provider.
2022-08-08 00:26:27 +02:00
*
* @return JsonResponse
2022-08-08 00:26:27 +02:00
*/
2022-08-11 06:19:35 +02:00
public function refreshAccounts(AdminBankIntegrationRequest $request)
2022-08-08 00:26:27 +02:00
{
2023-04-27 05:35:25 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
2023-12-01 14:30:33 +01:00
2023-04-27 05:35:25 +02:00
$user_account = $user->account;
2022-08-08 00:26:27 +02:00
$this->refreshAccountsYodlee($user);
2023-12-01 14:30:33 +01:00
$this->refreshAccountsNordigen($user);
if (Cache::get("throttle_polling:{$user_account->key}"))
2023-12-01 14:30:33 +01:00
return response()->json(BankIntegration::query()->company(), 200);
// Processing transactions for each bank account
$user_account->bank_integrations->where("integration_type", BankIntegration::INTEGRATION_TYPE_YODLEE)->each(function ($bank_integration) use ($user_account) {
2023-12-01 14:30:33 +01:00
ProcessBankTransactionsYodlee::dispatch($user_account, $bank_integration);
2023-12-01 14:30:33 +01:00
});
2022-08-08 00:26:27 +02:00
$user_account->bank_integrations->where("integration_type", BankIntegration::INTEGRATION_TYPE_NORDIGEN)->each(function ($bank_integration) use ($user_account) {
2023-12-01 14:30:33 +01:00
ProcessBankTransactionsNordigen::dispatch($user_account, $bank_integration);
2023-12-01 14:30:33 +01:00
});
Cache::put("throttle_polling:{$user_account->key}", true, 300);
2023-12-01 14:30:33 +01:00
return response()->json(BankIntegration::query()->company(), 200);
}
private function refreshAccountsYodlee(User $user)
{
if (!$user->account->bank_integration_yodlee_account_id) {
2022-08-08 04:46:41 +02:00
return response()->json(['message' => 'Not yet authenticated with Bank Integration service'], 400);
2023-02-16 02:36:09 +01:00
}
2022-08-08 04:46:41 +02:00
$yodlee = new Yodlee($user->account->bank_integration_yodlee_account_id);
2022-08-08 04:46:41 +02:00
2023-12-01 14:30:33 +01:00
$accounts = $yodlee->getAccounts();
2022-08-08 04:46:41 +02:00
2023-12-01 14:30:33 +01:00
foreach ($accounts as $account) {
if ($bi = BankIntegration::withTrashed()->where("integration_type", BankIntegration::INTEGRATION_TYPE_YODLEE)->where('bank_account_id', $account['id'])->where('company_id', $user->company()->id)->first()) {
2023-10-26 04:57:44 +02:00
$bi->balance = $account['current_balance'];
$bi->currency = $account['account_currency'];
$bi->save();
} else {
2022-08-11 06:19:35 +02:00
$bank_integration = new BankIntegration();
2023-04-27 05:35:25 +02:00
$bank_integration->company_id = $user->company()->id;
$bank_integration->account_id = $user->account_id;
$bank_integration->user_id = $user->id;
2022-08-11 06:19:35 +02:00
$bank_integration->bank_account_id = $account['id'];
$bank_integration->bank_account_type = $account['account_type'];
$bank_integration->bank_account_name = $account['account_name'];
$bank_integration->bank_account_status = $account['account_status'];
$bank_integration->bank_account_number = $account['account_number'];
$bank_integration->provider_id = $account['provider_id'];
$bank_integration->provider_name = $account['provider_name'];
$bank_integration->nickname = $account['nickname'];
$bank_integration->balance = $account['current_balance'];
$bank_integration->currency = $account['account_currency'];
2023-10-24 03:50:10 +02:00
$bank_integration->auto_sync = true;
2023-12-01 14:30:33 +01:00
$bank_integration->save();
2022-08-11 06:19:35 +02:00
}
}
2023-12-01 14:30:33 +01:00
}
2022-08-11 06:19:35 +02:00
private function refreshAccountsNordigen(User $user)
{
if (!$user->account->bank_integration_nordigen_secret_id || !$user->account->bank_integration_nordigen_secret_key)
2023-12-01 14:30:33 +01:00
return response()->json(['message' => 'Not yet authenticated with Bank Integration service'], 400);
$nordigen = new Nordigen($user->account->bank_integration_nordigen_secret_id, $user->account->bank_integration_nordigen_secret_key);
$accounts = $nordigen->getAccounts(); // TODO?!
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
foreach ($accounts as $account) {
if ($bi = BankIntegration::withTrashed()->where("integration_type", BankIntegration::INTEGRATION_TYPE_NORDIGEN)->where('bank_account_id', $account['id'])->where('company_id', $user->company()->id)->first()) {
$bi->balance = $account['current_balance'];
$bi->currency = $account['account_currency'];
$bi->save();
} else {
2023-12-01 14:30:33 +01:00
$bank_integration = new BankIntegration();
$bank_integration->company_id = $user->company()->id;
$bank_integration->account_id = $user->account_id;
$bank_integration->user_id = $user->id;
2023-12-01 14:30:33 +01:00
$bank_integration->bank_account_id = $account['id'];
$bank_integration->bank_account_type = $account['account_type'];
$bank_integration->bank_account_name = $account['account_name'];
$bank_integration->bank_account_status = $account['account_status'];
$bank_integration->bank_account_number = $account['account_number'];
$bank_integration->provider_id = $account['provider_id'];
$bank_integration->provider_name = $account['provider_name'];
$bank_integration->nickname = $account['nickname'];
$bank_integration->balance = $account['current_balance'];
$bank_integration->currency = $account['account_currency'];
$bank_integration->save();
}
}
2022-08-11 06:19:35 +02:00
}
2022-08-11 06:47:08 +02:00
/**
2022-08-12 05:41:55 +02:00
* Return the remote list of accounts stored on the third party provider
* and update our local cache.
2022-08-11 06:47:08 +02:00
*
2023-07-26 01:27:16 +02:00
* @return Response | JsonResponse
2022-08-11 06:47:08 +02:00
*
*/
2022-08-11 06:19:35 +02:00
public function removeAccount(AdminBankIntegrationRequest $request, $acc_id)
{
2023-04-27 05:35:25 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
2022-08-11 06:19:35 +02:00
2023-04-27 05:35:25 +02:00
$account = $user->account;
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
$bank_integration = BankIntegration::withTrashed()->where('bank_account_id', $acc_id)->company()->firstOrFail();
if ($bank_integration->integration_type == BankIntegration::INTEGRATION_TYPE_YODLEE)
$this->removeAccountYodlee($account, $bank_integration);
else if ($bank_integration->integration_type == BankIntegration::INTEGRATION_TYPE_NORDIGEN)
$this->removeAccountNordigen($account, $bank_integration);
2023-12-01 14:30:33 +01:00
$this->bank_integration_repo->delete($bank_integration);
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
return $this->itemResponse($bank_integration->fresh());
}
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
private function removeAccountYodlee(Account $account, BankIntegration $bank_integration)
{
if (!$account->bank_integration_yodlee_account_id) {
2023-12-01 14:30:33 +01:00
return response()->json(['message' => 'Not yet authenticated with Bank Integration service'], 400);
2023-02-16 02:36:09 +01:00
}
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
$yodlee = new Yodlee($account->bank_integration_yodlee_account_id);
$yodlee->deleteAccount($bank_integration->bank_account_id);
}
2022-08-11 06:19:35 +02:00
2023-12-01 14:30:33 +01:00
private function removeAccountNordigen(Account $account, BankIntegration $bank_integration)
{
if (!$account->bank_integration_nordigen_secret_id || !$account->bank_integration_nordigen_secret_key)
2023-12-01 14:30:33 +01:00
return response()->json(['message' => 'Not yet authenticated with Bank Integration service'], 400);
2022-08-11 06:19:35 +02:00
$nordigen = new Nordigen($account->bank_integration_nordigen_secret_id, $account->bank_integration_nordigen_secret_key);
2023-12-01 14:30:33 +01:00
$nordigen->deleteAccount($bank_integration->bank_account_id);
2022-08-08 04:46:41 +02:00
}
2022-08-11 06:19:35 +02:00
2022-08-12 05:41:55 +02:00
/**
* Return the remote list of accounts stored on the third party provider
* and update our local cache.
*
* @return JsonResponse
2022-08-12 05:41:55 +02:00
*
*/
2022-08-08 04:46:41 +02:00
public function getTransactions(AdminBankIntegrationRequest $request)
{
2023-04-27 05:35:25 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
2023-12-01 14:30:33 +01:00
// Yodlee
$user->account->bank_integrations->where("integration_type", BankIntegration::INTEGRATION_TYPE_YODLEE)->each(function ($bank_integration) use ($user) {
(new ProcessBankTransactionsYodlee($user->account, $bank_integration))->handle();
2023-12-01 14:30:33 +01:00
});
// Nordigen
$user->account->bank_integrations->where("integration_type", BankIntegration::INTEGRATION_TYPE_NORDIGEN)->each(function ($bank_integration) use ($user) {
(new ProcessBankTransactionsYodlee($user->account, $bank_integration))->handle();
2022-09-15 05:49:57 +02:00
});
2022-08-08 11:07:35 +02:00
2022-08-12 05:41:55 +02:00
return response()->json(['message' => 'Fetching transactions....'], 200);
2022-08-08 00:26:27 +02:00
}
2023-12-01 14:30:33 +01:00
}