mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 14:04:35 -04:00
introduce nordigen bank_selection ui
This commit is contained in:
parent
c138f2f211
commit
f3dfdc4d80
@ -15,7 +15,6 @@ use App\Helpers\Bank\Nordigen\Nordigen;
|
|||||||
use App\Http\Controllers\BaseController;
|
use App\Http\Controllers\BaseController;
|
||||||
use App\Http\Requests\Nordigen\ConfirmNordigenBankIntegrationRequest;
|
use App\Http\Requests\Nordigen\ConfirmNordigenBankIntegrationRequest;
|
||||||
use App\Http\Requests\Nordigen\ConnectNordigenBankIntegrationRequest;
|
use App\Http\Requests\Nordigen\ConnectNordigenBankIntegrationRequest;
|
||||||
use App\Http\Requests\Yodlee\YodleeAuthRequest;
|
|
||||||
use App\Jobs\Bank\ProcessBankTransactionsNordigen;
|
use App\Jobs\Bank\ProcessBankTransactionsNordigen;
|
||||||
use App\Models\BankIntegration;
|
use App\Models\BankIntegration;
|
||||||
use App\Models\Company;
|
use App\Models\Company;
|
||||||
@ -26,163 +25,39 @@ use Nordigen\NordigenPHP\Exceptions\NordigenExceptions\NordigenException;
|
|||||||
|
|
||||||
class NordigenController extends BaseController
|
class NordigenController extends BaseController
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* Process Nordigen Institutions GETTER.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @OA\Post(
|
|
||||||
* path="/api/v1/nordigen/institutions",
|
|
||||||
* operationId="nordigenRefreshWebhook",
|
|
||||||
* tags={"nordigen"},
|
|
||||||
* summary="Getting available institutions from nordigen",
|
|
||||||
* description="Used to determine the available institutions for sending and creating a new connect-link",
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
||||||
* @OA\Response(
|
|
||||||
* response=200,
|
|
||||||
* description="",
|
|
||||||
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
|
||||||
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
||||||
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/Credit"),
|
|
||||||
* ),
|
|
||||||
* @OA\Response(
|
|
||||||
* response=422,
|
|
||||||
* description="Validation error",
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
||||||
*
|
|
||||||
* ),
|
|
||||||
* @OA\Response(
|
|
||||||
* response="default",
|
|
||||||
* description="Unexpected Error",
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
||||||
* ),
|
|
||||||
* )
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
{
|
|
||||||
"event":{
|
|
||||||
"info":"REFRESH.PROCESS_COMPLETED",
|
|
||||||
"loginName":"fri21",
|
|
||||||
"data":{
|
|
||||||
"providerAccount":[
|
|
||||||
{
|
|
||||||
"id":10995860,
|
|
||||||
"providerId":16441,
|
|
||||||
"isManual":false,
|
|
||||||
"createdDate":"2017-12-22T05:47:35Z",
|
|
||||||
"aggregationSource":"USER",
|
|
||||||
"status":"SUCCESS",
|
|
||||||
"requestId":"NSyMGo+R4dktywIu3hBIkc3PgWA=",
|
|
||||||
"dataset":[
|
|
||||||
{
|
|
||||||
"name":"BASIC_AGG_DATA",
|
|
||||||
"additionalStatus":"AVAILABLE_DATA_RETRIEVED",
|
|
||||||
"updateEligibility":"ALLOW_UPDATE",
|
|
||||||
"lastUpdated":"2017-12-22T05:48:16Z",
|
|
||||||
"lastUpdateAttempt":"2017-12-22T05:48:16Z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
public function institutions(Request $request)
|
|
||||||
{
|
|
||||||
$account = auth()->user()->account;
|
|
||||||
|
|
||||||
if (!$account->bank_integration_nordigen_secret_id || !$account->bank_integration_nordigen_secret_key)
|
|
||||||
return response()->json(['message' => 'Not yet authenticated with Nordigen Bank Integration service'], 400);
|
|
||||||
|
|
||||||
$nordigen = new Nordigen($account->bank_integration_nordigen_secret_id, $account->bank_integration_nordigen_secret_key);
|
|
||||||
return response()->json($nordigen->getInstitutions());
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Creates a new requisition (oAuth like connection of bank-account)
|
|
||||||
*
|
|
||||||
* @param ConnectNordigenBankIntegrationRequest $request
|
|
||||||
*
|
|
||||||
* @OA\Post(
|
|
||||||
* path="/api/v1/nordigen/institutions",
|
|
||||||
* operationId="nordigenRefreshWebhook",
|
|
||||||
* tags={"nordigen"},
|
|
||||||
* summary="Getting available institutions from nordigen",
|
|
||||||
* description="Used to determine the available institutions for sending and creating a new connect-link",
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
||||||
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
||||||
* @OA\Response(
|
|
||||||
* response=200,
|
|
||||||
* description="",
|
|
||||||
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
|
||||||
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
||||||
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/Credit"),
|
|
||||||
* ),
|
|
||||||
* @OA\Response(
|
|
||||||
* response=422,
|
|
||||||
* description="Validation error",
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
||||||
*
|
|
||||||
* ),
|
|
||||||
* @OA\Response(
|
|
||||||
* response="default",
|
|
||||||
* description="Unexpected Error",
|
|
||||||
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
||||||
* ),
|
|
||||||
* )
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* TODO
|
|
||||||
{
|
|
||||||
"event":{
|
|
||||||
"info":"REFRESH.PROCESS_COMPLETED",
|
|
||||||
"loginName":"fri21",
|
|
||||||
"data":{
|
|
||||||
"providerAccount":[
|
|
||||||
{
|
|
||||||
"id":10995860,
|
|
||||||
"providerId":16441,
|
|
||||||
"isManual":false,
|
|
||||||
"createdDate":"2017-12-22T05:47:35Z",
|
|
||||||
"aggregationSource":"USER",
|
|
||||||
"status":"SUCCESS",
|
|
||||||
"requestId":"NSyMGo+R4dktywIu3hBIkc3PgWA=",
|
|
||||||
"dataset":[
|
|
||||||
{
|
|
||||||
"name":"BASIC_AGG_DATA",
|
|
||||||
"additionalStatus":"AVAILABLE_DATA_RETRIEVED",
|
|
||||||
"updateEligibility":"ALLOW_UPDATE",
|
|
||||||
"lastUpdated":"2017-12-22T05:48:16Z",
|
|
||||||
"lastUpdateAttempt":"2017-12-22T05:48:16Z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
public function connect(ConnectNordigenBankIntegrationRequest $request)
|
public function connect(ConnectNordigenBankIntegrationRequest $request)
|
||||||
{
|
{
|
||||||
$data = $request->all();
|
$data = $request->all();
|
||||||
|
$context = $request->getTokenContent();
|
||||||
$context = Cache::get($data["one_time_token"]);
|
|
||||||
|
|
||||||
if (!$context || $context["context"] != "nordigen" || array_key_exists("requisitionId", $context))
|
if (!$context || $context["context"] != "nordigen" || array_key_exists("requisitionId", $context))
|
||||||
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=one-time-token-invalid");
|
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=token-invalid");
|
||||||
|
|
||||||
$company = Company::where('company_key', $context["company_key"])->first();
|
$company = $request->getCompany();
|
||||||
$account = $company->account;
|
|
||||||
|
|
||||||
if (!$account->bank_integration_nordigen_secret_id || !$account->bank_integration_nordigen_secret_key)
|
if (!$company->account->bank_integration_nordigen_secret_id || !$company->account->bank_integration_nordigen_secret_key)
|
||||||
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=account-config-invalid");
|
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=account-config-invalid");
|
||||||
|
|
||||||
$nordigen = new Nordigen($account->bank_integration_nordigen_secret_id, $account->bank_integration_nordigen_secret_key);
|
$nordigen = new Nordigen($company->account->bank_integration_nordigen_secret_id, $company->account->bank_integration_nordigen_secret_key);
|
||||||
|
|
||||||
|
// show bank_selection_screen, when institution_id is not present
|
||||||
|
if (!array_key_exists("institution_id", $data)) {
|
||||||
|
$data = [
|
||||||
|
'token' => $request->token,
|
||||||
|
'context' => $context,
|
||||||
|
'institutions' => $nordigen->getInstitutions(),
|
||||||
|
'company' => $company,
|
||||||
|
'account' => $company->account,
|
||||||
|
'redirect' => config('ninja.app_url') . '/nordigen/connect',
|
||||||
|
];
|
||||||
|
|
||||||
|
return view('bank.nordigen.connect', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
// redirect to requisition flow
|
||||||
try {
|
try {
|
||||||
$requisition = $nordigen->createRequisition(config('ninja.app_url') . '/api/v1/nordigen/confirm', $data['institution_id'], "1");
|
$requisition = $nordigen->createRequisition(config('ninja.app_url') . '/api/v1/nordigen/confirm', $data['institution_id'], $request->token);
|
||||||
} catch (NordigenException $e) { // TODO: property_exists returns null in these cases... => why => therefore we just get unknown error everytime $responseBody is typeof GuzzleHttp\Psr7\Stream
|
} catch (NordigenException $e) { // TODO: property_exists returns null in these cases... => why => therefore we just get unknown error everytime $responseBody is typeof GuzzleHttp\Psr7\Stream
|
||||||
Log::error($e);
|
Log::error($e);
|
||||||
$responseBody = $e->getResponse()->getBody();
|
$responseBody = $e->getResponse()->getBody();
|
||||||
@ -190,8 +65,8 @@ class NordigenController extends BaseController
|
|||||||
|
|
||||||
if (property_exists($responseBody, "institution_id")) // provided institution_id was wrong
|
if (property_exists($responseBody, "institution_id")) // provided institution_id was wrong
|
||||||
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=institution-invalid");
|
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=institution-invalid");
|
||||||
else if (property_exists($responseBody, "reference")) // this error can occur, when a reference was used double or is invalid => therefor we suggest the frontend to use another one-time-token
|
else if (property_exists($responseBody, "reference")) // this error can occur, when a reference was used double or is invalid => therefor we suggest the frontend to use another token
|
||||||
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=one-time-token-invalid");
|
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=token-invalid");
|
||||||
else
|
else
|
||||||
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=unknown");
|
return response()->redirectTo($data["redirect"] . "?action=nordigen_connect&status=failed&reason=unknown");
|
||||||
}
|
}
|
||||||
@ -200,7 +75,7 @@ class NordigenController extends BaseController
|
|||||||
if (array_key_exists("redirect", $data))
|
if (array_key_exists("redirect", $data))
|
||||||
$context["redirect"] = $data["redirect"];
|
$context["redirect"] = $data["redirect"];
|
||||||
$context["requisitionId"] = $requisition["id"];
|
$context["requisitionId"] = $requisition["id"];
|
||||||
Cache::put($data["one_time_token"], $context, 3600);
|
Cache::put($request->token, $context, 3600);
|
||||||
|
|
||||||
return response()->redirectTo($requisition["link"]);
|
return response()->redirectTo($requisition["link"]);
|
||||||
}
|
}
|
||||||
@ -360,4 +235,79 @@ class NordigenController extends BaseController
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process Nordigen Institutions GETTER.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @OA\Post(
|
||||||
|
* path="/api/v1/nordigen/institutions",
|
||||||
|
* operationId="nordigenRefreshWebhook",
|
||||||
|
* tags={"nordigen"},
|
||||||
|
* summary="Getting available institutions from nordigen",
|
||||||
|
* description="Used to determine the available institutions for sending and creating a new connect-link",
|
||||||
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
||||||
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
||||||
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
||||||
|
* @OA\Response(
|
||||||
|
* response=200,
|
||||||
|
* description="",
|
||||||
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
||||||
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
||||||
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
||||||
|
* @OA\JsonContent(ref="#/components/schemas/Credit"),
|
||||||
|
* ),
|
||||||
|
* @OA\Response(
|
||||||
|
* response=422,
|
||||||
|
* description="Validation error",
|
||||||
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
||||||
|
*
|
||||||
|
* ),
|
||||||
|
* @OA\Response(
|
||||||
|
* response="default",
|
||||||
|
* description="Unexpected Error",
|
||||||
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
||||||
|
* ),
|
||||||
|
* )
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
{
|
||||||
|
"event":{
|
||||||
|
"info":"REFRESH.PROCESS_COMPLETED",
|
||||||
|
"loginName":"fri21",
|
||||||
|
"data":{
|
||||||
|
"providerAccount":[
|
||||||
|
{
|
||||||
|
"id":10995860,
|
||||||
|
"providerId":16441,
|
||||||
|
"isManual":false,
|
||||||
|
"createdDate":"2017-12-22T05:47:35Z",
|
||||||
|
"aggregationSource":"USER",
|
||||||
|
"status":"SUCCESS",
|
||||||
|
"requestId":"NSyMGo+R4dktywIu3hBIkc3PgWA=",
|
||||||
|
"dataset":[
|
||||||
|
{
|
||||||
|
"name":"BASIC_AGG_DATA",
|
||||||
|
"additionalStatus":"AVAILABLE_DATA_RETRIEVED",
|
||||||
|
"updateEligibility":"ALLOW_UPDATE",
|
||||||
|
"lastUpdated":"2017-12-22T05:48:16Z",
|
||||||
|
"lastUpdateAttempt":"2017-12-22T05:48:16Z"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
public function institutions(Request $request)
|
||||||
|
{
|
||||||
|
$account = auth()->user()->account;
|
||||||
|
|
||||||
|
if (!$account->bank_integration_nordigen_secret_id || !$account->bank_integration_nordigen_secret_key)
|
||||||
|
return response()->json(['message' => 'Not yet authenticated with Nordigen Bank Integration service'], 400);
|
||||||
|
|
||||||
|
$nordigen = new Nordigen($account->bank_integration_nordigen_secret_id, $account->bank_integration_nordigen_secret_key);
|
||||||
|
return response()->json($nordigen->getInstitutions());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,9 @@
|
|||||||
namespace App\Http\Requests\Nordigen;
|
namespace App\Http\Requests\Nordigen;
|
||||||
|
|
||||||
use App\Http\Requests\Request;
|
use App\Http\Requests\Request;
|
||||||
|
use App\Libraries\MultiDB;
|
||||||
|
use App\Models\Company;
|
||||||
|
use App\Models\User;
|
||||||
use Cache;
|
use Cache;
|
||||||
use Log;
|
use Log;
|
||||||
|
|
||||||
@ -35,8 +38,7 @@ class ConnectNordigenBankIntegrationRequest extends Request
|
|||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'institution_id' => 'required|string',
|
'institution_id' => 'string',
|
||||||
'one_time_token' => 'required|string', // One Time Token
|
|
||||||
'redirect' => 'string', // TODO: @turbo124 @todo validate, that this is a url without / at the end
|
'redirect' => 'string', // TODO: @turbo124 @todo validate, that this is a url without / at the end
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -47,17 +49,42 @@ class ConnectNordigenBankIntegrationRequest extends Request
|
|||||||
$input = $this->all();
|
$input = $this->all();
|
||||||
|
|
||||||
if (!array_key_exists('redirect', $input)) {
|
if (!array_key_exists('redirect', $input)) {
|
||||||
$context = Cache::get($input['one_time_token']);
|
$context = $this->getTokenContent();
|
||||||
|
|
||||||
if (array_key_exists('is_react', $context))
|
if ($context && array_key_exists('is_react', $context))
|
||||||
$input["redirect"] = $context["is_react"] ? config("ninja.react_url") : config("ninja.app_url");
|
$input["redirect"] = $context["is_react"] ? config("ninja.react_url") : config("ninja.app_url");
|
||||||
else
|
else
|
||||||
$input["redirect"] = config("ninja.app_url");
|
$input["redirect"] = config("ninja.app_url");
|
||||||
|
|
||||||
Log::info($input);
|
|
||||||
|
|
||||||
$this->replace($input);
|
$this->replace($input);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public function getTokenContent()
|
||||||
|
{
|
||||||
|
if ($this->state) {
|
||||||
|
$this->token = $this->state;
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = Cache::get($this->token);
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getContact()
|
||||||
|
{
|
||||||
|
MultiDB::findAndSetDbByCompanyKey($this->getTokenContent()['company_key']);
|
||||||
|
|
||||||
|
return User::findOrFail($this->getTokenContent()['user_id']);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCompany()
|
||||||
|
{
|
||||||
|
|
||||||
|
MultiDB::findAndSetDbByCompanyKey($this->getTokenContent()['company_key']);
|
||||||
|
|
||||||
|
return Company::where('company_key', $this->getTokenContent()['company_key'])->firstOrFail();
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
67
resources/views/bank/nordigen/connect.blade.php
Normal file
67
resources/views/bank/nordigen/connect.blade.php
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
@extends('layouts.ninja')
|
||||||
|
@section('meta_title', ctrans('texts.new_bank_account'))
|
||||||
|
|
||||||
|
@push('head')
|
||||||
|
|
||||||
|
<link href="https://unpkg.com/nordigen-bank-ui@1.5.2/package/src/selector.min.css" rel="stylesheet" />
|
||||||
|
|
||||||
|
@endpush
|
||||||
|
|
||||||
|
@section('body')
|
||||||
|
|
||||||
|
<div id="institution-content-wrapper"></div>
|
||||||
|
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@push('footer')
|
||||||
|
|
||||||
|
<script type='text/javascript' src='https://unpkg.com/nordigen-bank-ui@1.5.2/package/src/selector.min.js'></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
// Pass your redirect link after user has been authorized in institution
|
||||||
|
const config = {
|
||||||
|
// Text that will be displayed on the left side under the logo. Text is limited to 100 characters, and rest will be truncated.
|
||||||
|
text: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean mavdvd",
|
||||||
|
// Logo URL that will be shown below the modal form.
|
||||||
|
logoUrl: "{{ $account && !$account->isPaid() ? asset('images/invoiceninja-black-logo-2.png') : (isset($company) && !is_null($company) ? $company->present()->logo() : '') }}",
|
||||||
|
// Will display country list with corresponding institutions. When `countryFilter` is set to `false`, only list of institutions will be shown.
|
||||||
|
countryFilter: false,
|
||||||
|
// style configs
|
||||||
|
styles: {
|
||||||
|
// Primary
|
||||||
|
// Link to google font
|
||||||
|
fontFamily: 'https://fonts.googleapis.com/css2?family=Roboto&display=swap', // @todo replace to match german law: not use google fonts and use local instead
|
||||||
|
fontSize: '15',
|
||||||
|
backgroundColor: '#F2F2F2',
|
||||||
|
textColor: '#222',
|
||||||
|
headingColor: '#222',
|
||||||
|
linkColor: '#8d9090',
|
||||||
|
// Modal
|
||||||
|
modalTextColor: '#1B2021',
|
||||||
|
modalBackgroundColor: '#fff',
|
||||||
|
// Button
|
||||||
|
buttonColor: '#3A53EE',
|
||||||
|
buttonTextColor: '#fff'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
new institutionSelector(@json($institutions), 'institution-modal-content', config);
|
||||||
|
|
||||||
|
const institutionList = Array.from(document.querySelectorAll('.ob-list-institution > a'));
|
||||||
|
|
||||||
|
institutionList.forEach((institution) => {
|
||||||
|
institution.addEventListener('click', (e) => {
|
||||||
|
e.preventDefault()
|
||||||
|
const institutionId = institution.getAttribute('data-institution');
|
||||||
|
const url = new URL(window.location.href);
|
||||||
|
url.searchParams.set('institution_id', institutionId);
|
||||||
|
window.location.href = url.href;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
@endpush
|
@ -378,7 +378,6 @@ Route::post('api/v1/yodlee/refresh_updates', [YodleeController::class, 'refreshU
|
|||||||
Route::post('api/v1/yodlee/balance', [YodleeController::class, 'balanceWebhook'])->middleware('throttle:100,1');
|
Route::post('api/v1/yodlee/balance', [YodleeController::class, 'balanceWebhook'])->middleware('throttle:100,1');
|
||||||
|
|
||||||
Route::get('api/v1/nordigen/institutions', [NordigenController::class, 'institutions'])->middleware('throttle:100,1')->middleware('token_auth')->name('nordigen_institutions');
|
Route::get('api/v1/nordigen/institutions', [NordigenController::class, 'institutions'])->middleware('throttle:100,1')->middleware('token_auth')->name('nordigen_institutions');
|
||||||
Route::any('api/v1/nordigen/connect', [NordigenController::class, 'connect'])->middleware('throttle:100,1')->name('nordigen_connect');
|
|
||||||
Route::any('api/v1/nordigen/confirm', [NordigenController::class, 'confirm'])->middleware('throttle:100,1')->name('nordigen_callback');
|
Route::any('api/v1/nordigen/confirm', [NordigenController::class, 'confirm'])->middleware('throttle:100,1')->name('nordigen_callback');
|
||||||
|
|
||||||
Route::fallback([BaseController::class, 'notFound']);
|
Route::fallback([BaseController::class, 'notFound']);
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
use App\Http\Controllers\Auth\ForgotPasswordController;
|
use App\Http\Controllers\Auth\ForgotPasswordController;
|
||||||
use App\Http\Controllers\Auth\LoginController;
|
use App\Http\Controllers\Auth\LoginController;
|
||||||
use App\Http\Controllers\Auth\ResetPasswordController;
|
use App\Http\Controllers\Auth\ResetPasswordController;
|
||||||
|
use App\Http\Controllers\Bank\NordigenController;
|
||||||
use App\Http\Controllers\Bank\YodleeController;
|
use App\Http\Controllers\Bank\YodleeController;
|
||||||
use App\Http\Controllers\BaseController;
|
use App\Http\Controllers\BaseController;
|
||||||
use App\Http\Controllers\ClientPortal\ApplePayDomainController;
|
use App\Http\Controllers\ClientPortal\ApplePayDomainController;
|
||||||
@ -18,7 +19,7 @@ use Illuminate\Support\Facades\Route;
|
|||||||
//Auth::routes(['password.reset' => false]);
|
//Auth::routes(['password.reset' => false]);
|
||||||
|
|
||||||
Route::get('/', [BaseController::class, 'flutterRoute'])->middleware('guest');
|
Route::get('/', [BaseController::class, 'flutterRoute'])->middleware('guest');
|
||||||
// Route::get('self-update', [SelfUpdateController::class, 'update'])->middleware('guest');
|
// Route::get('self-update', [SelfUpdateController::class, 'update'])->middleware('guest');
|
||||||
|
|
||||||
Route::get('setup', [SetupController::class, 'index'])->middleware('guest');
|
Route::get('setup', [SetupController::class, 'index'])->middleware('guest');
|
||||||
Route::post('setup', [SetupController::class, 'doSetup'])->middleware('guest');
|
Route::post('setup', [SetupController::class, 'doSetup'])->middleware('guest');
|
||||||
@ -54,8 +55,9 @@ Route::get('stripe/signup/{token}', [StripeConnectController::class, 'initialize
|
|||||||
Route::get('stripe/completed', [StripeConnectController::class, 'completed'])->name('stripe_connect.return');
|
Route::get('stripe/completed', [StripeConnectController::class, 'completed'])->name('stripe_connect.return');
|
||||||
|
|
||||||
Route::get('yodlee/onboard/{token}', [YodleeController::class, 'auth'])->name('yodlee.auth');
|
Route::get('yodlee/onboard/{token}', [YodleeController::class, 'auth'])->name('yodlee.auth');
|
||||||
|
Route::get('nordigen/connect/{token}', [NordigenController::class, 'connect'])->name('nordigen.connect');
|
||||||
|
|
||||||
Route::get('checkout/3ds_redirect/{company_key}/{company_gateway_id}/{hash}', [Checkout3dsController::class, 'index'])->middleware('domain_db')->name('checkout.3ds_redirect');
|
Route::get('checkout/3ds_redirect/{company_key}/{company_gateway_id}/{hash}', [Checkout3dsController::class, 'index'])->middleware('domain_db')->name('checkout.3ds_redirect');
|
||||||
Route::get('mollie/3ds_redirect/{company_key}/{company_gateway_id}/{hash}', [Mollie3dsController::class, 'index'])->middleware('domain_db')->name('mollie.3ds_redirect');
|
Route::get('mollie/3ds_redirect/{company_key}/{company_gateway_id}/{hash}', [Mollie3dsController::class, 'index'])->middleware('domain_db')->name('mollie.3ds_redirect');
|
||||||
Route::get('gocardless/ibp_redirect/{company_key}/{company_gateway_id}/{hash}', [GoCardlessController::class, 'ibpRedirect'])->middleware('domain_db')->name('gocardless.ibp_redirect');
|
Route::get('gocardless/ibp_redirect/{company_key}/{company_gateway_id}/{hash}', [GoCardlessController::class, 'ibpRedirect'])->middleware('domain_db')->name('gocardless.ibp_redirect');
|
||||||
Route::get('.well-known/apple-developer-merchantid-domain-association', [ApplePayDomainController::class, 'showAppleMerchantId']);
|
Route::get('.well-known/apple-developer-merchantid-domain-association', [ApplePayDomainController::class, 'showAppleMerchantId']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user