90 lines
2.0 KiB
PHP
90 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Requests\Nordigen;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Libraries\MultiDB;
|
|
use App\Models\Company;
|
|
use Cache;
|
|
|
|
class ConnectNordigenBankIntegrationRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
public function prepareForValidation(): void
|
|
{
|
|
$input = $this->all();
|
|
|
|
$context = $this->getTokenContent();
|
|
|
|
if (isset($context['institution_id'])) {
|
|
$input['institution_id'] = $context['institution_id'];
|
|
}
|
|
|
|
if(isset($context['bank_account_id'])){
|
|
$input['bank_account_id'] = $context['bank_account_id'];
|
|
}
|
|
|
|
$input['redirect'] = ($context['is_react'] ?? false)
|
|
? config('ninja.react_url') . '/#/settings/bank_accounts'
|
|
: config('ninja.app_url');
|
|
|
|
$this->replace($input);
|
|
}
|
|
|
|
/**
|
|
* @return array{
|
|
* user_id: int,
|
|
* company_key: string,
|
|
* context: string,
|
|
* is_react: bool,
|
|
* institution_id: string,
|
|
* requisitionId?: string
|
|
* }
|
|
*/
|
|
public function getTokenContent(): ?array
|
|
{
|
|
if ($this->state) {
|
|
$this->token = $this->state;
|
|
}
|
|
|
|
$data = Cache::get($this->token);
|
|
|
|
return $data;
|
|
}
|
|
|
|
public function getCompany(): Company
|
|
{
|
|
$key = $this->getTokenContent()['company_key'];
|
|
|
|
MultiDB::findAndSetDbByCompanyKey($key);
|
|
|
|
return Company::where('company_key', $key)->firstOrFail();
|
|
}
|
|
}
|