2023-12-04 08:14:52 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
2023-12-06 08:27:18 +01:00
|
|
|
namespace App\Http\Requests\Nordigen;
|
2023-12-04 08:14:52 +01:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2023-12-09 15:13:00 +01:00
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\Company;
|
2023-12-09 09:27:59 +01:00
|
|
|
use Cache;
|
2023-12-04 08:14:52 +01:00
|
|
|
|
2023-12-08 18:48:48 +01:00
|
|
|
class ConnectNordigenBankIntegrationRequest extends Request
|
2023-12-04 08:14:52 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
];
|
|
|
|
}
|
2023-12-09 09:27:59 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-12-26 04:31:03 +01:00
|
|
|
$context = $this->getTokenContent();
|
2023-12-09 09:27:59 +01:00
|
|
|
|
2023-12-26 04:31:03 +01:00
|
|
|
$input["redirect"] = isset($context["is_react"]) && $context['is_react'] ? config('ninja.react_url') . "/#/settings/bank_accounts" : config('ninja.app_url');
|
2023-12-09 09:27:59 +01:00
|
|
|
|
2023-12-26 04:31:03 +01:00
|
|
|
$this->replace($input);
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-12-09 09:27:59 +01:00
|
|
|
}
|
2023-12-09 15:13:00 +01:00
|
|
|
public function getTokenContent()
|
|
|
|
{
|
|
|
|
if ($this->state) {
|
|
|
|
$this->token = $this->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = Cache::get($this->token);
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCompany()
|
|
|
|
{
|
|
|
|
MultiDB::findAndSetDbByCompanyKey($this->getTokenContent()['company_key']);
|
|
|
|
|
|
|
|
return Company::where('company_key', $this->getTokenContent()['company_key'])->firstOrFail();
|
|
|
|
}
|
2023-12-04 08:14:52 +01:00
|
|
|
}
|