You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

123 lines
3.4 KiB

<?php
/*
* SecretManager.php
* Copyright (c) 2021 james@firefly-iii.org
*
* This file is part of the Firefly III Data Importer
* (https://github.com/firefly-iii/data-importer).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace App\Services\Nordigen\Authentication;
use Illuminate\Support\Facades\Log;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
/**
* Class SecretManager
*/
class SecretManager
{
public const string NORDIGEN_ID = 'nordigen_id';
public const string NORDIGEN_KEY = 'nordigen_key';
/**
* Will return the Nordigen ID. From a cookie if its there, otherwise from configuration.
*/
public static function getId(): string
{
if (!self::hasId()) {
Log::debug('No Nordigen ID in hasId() session, will return config variable.');
return (string) config('nordigen.id');
}
try {
$id = (string) session()->get(self::NORDIGEN_ID);
} catch (ContainerExceptionInterface|NotFoundExceptionInterface) {
$id = '(super invalid)';
}
return $id;
}
/**
* Will verify if the user has a Nordigen ID (in a cookie)
*/
private static function hasId(): bool
{
try {
$id = (string) session()->get(self::NORDIGEN_ID);
} catch (ContainerExceptionInterface|NotFoundExceptionInterface) {
$id = '';
}
return '' !== $id;
}
/**
* Will return the Nordigen ID. From a cookie if its there, otherwise from configuration.
*/
public static function getKey(): string
{
if (!self::hasKey()) {
Log::debug('No Nordigen key in hasKey() session, will return config variable.');
return (string) config('nordigen.key');
}
try {
$key = (string) session()->get(self::NORDIGEN_KEY);
} catch (ContainerExceptionInterface|NotFoundExceptionInterface) {
$key = '(super invalid key)';
}
return $key;
}
/**
* Will verify if the user has a Nordigen Key (in a cookie)
*/
private static function hasKey(): bool
{
try {
$key = (string) session()->get(self::NORDIGEN_KEY);
} catch (ContainerExceptionInterface|NotFoundExceptionInterface) {
$key = '';
}
return '' !== $key;
}
/**
* Store access token in a cookie.
*/
public static function saveId(string $identifier): void
{
session()->put(self::NORDIGEN_ID, $identifier);
}
/**
* Store access token in a cookie.
*/
public static function saveKey(string $key): void
{
session()->put(self::NORDIGEN_KEY, $key);
}
}