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-20 16:42:29 +01:00
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\Company;
|
|
|
|
use Cache;
|
2023-12-04 08:14:52 +01:00
|
|
|
|
2023-12-08 18:48:48 +01:00
|
|
|
class ConfirmNordigenBankIntegrationRequest 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-08 18:42:06 +01:00
|
|
|
'ref' => 'required|string', // nordigen redirects only with the ref-property
|
2023-12-15 14:45:52 +01:00
|
|
|
'lang' => 'string',
|
2023-12-04 08:14:52 +01:00
|
|
|
];
|
|
|
|
}
|
2023-12-20 16:42:29 +01:00
|
|
|
public function getTokenContent()
|
|
|
|
{
|
2023-12-20 17:58:06 +01:00
|
|
|
$input = $this->all();
|
2023-12-20 16:42:29 +01:00
|
|
|
|
2023-12-20 17:58:06 +01:00
|
|
|
$data = Cache::get($input['ref']);
|
2023-12-20 16:42:29 +01:00
|
|
|
|
|
|
|
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
|
|
|
}
|