firefly-iii/app/Support/FireflyConfig.php

166 lines
4.3 KiB
PHP
Raw Normal View History

<?php
/**
* FireflyConfig.php
2020-02-16 06:56:52 -06:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* 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.
2017-10-21 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* 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.
2017-10-21 01:40:00 -05:00
*
* 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 FireflyIII\Support;
use Cache;
2018-07-14 08:21:05 -05:00
use Exception;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Models\Configuration;
2020-06-06 05:14:55 -05:00
use Illuminate\Database\QueryException;
/**
2017-11-15 05:25:49 -06:00
* Class FireflyConfig.
2021-03-21 03:15:40 -05:00
*
2019-07-31 09:53:09 -05:00
* @codeCoverageIgnore
*/
class FireflyConfig
{
/**
2018-07-14 08:21:05 -05:00
* @param string $name
*/
2018-07-14 08:21:05 -05:00
public function delete(string $name): void
{
2016-10-07 04:40:03 -05:00
$fullName = 'ff-config-' . $name;
if (Cache::has($fullName)) {
Cache::forget($fullName);
}
2018-07-14 08:21:05 -05:00
try {
Configuration::where('name', $name)->forceDelete();
2021-04-06 10:00:16 -05:00
} catch (Exception $e) { // @phpstan-ignore-line
// @ignoreException
2018-07-14 08:21:05 -05:00
}
}
/**
2021-04-06 10:00:16 -05:00
* @param string $name
* @param bool|string|int|null $default
*
* @return Configuration|null
2021-03-21 03:15:40 -05:00
* @throws FireflyException
*/
2018-07-26 22:03:37 -05:00
public function get(string $name, $default = null): ?Configuration
{
$fullName = 'ff-config-' . $name;
if (Cache::has($fullName)) {
return Cache::get($fullName);
}
2020-06-06 05:14:55 -05:00
try {
2021-04-06 10:00:16 -05:00
/** @var Configuration|null $config */
2020-06-06 05:14:55 -05:00
$config = Configuration::where('name', $name)->first(['id', 'name', 'data']);
2022-03-29 08:00:29 -05:00
} catch (QueryException|Exception $e) { // @phpstan-ignore-line
throw new FireflyException(sprintf('Could not poll the database: %s', $e->getMessage()));
2020-06-06 05:14:55 -05:00
}
2021-04-06 10:00:16 -05:00
if (null !== $config) {
Cache::forever($fullName, $config);
return $config;
}
// no preference found and default is null:
2017-11-15 05:25:49 -06:00
if (null === $default) {
return null;
}
2018-03-07 14:01:46 -06:00
return $this->set($name, $default);
}
/**
* @param string $name
* @param mixed $value
*
* @return Configuration
*/
public function set(string $name, $value): Configuration
{
try {
$config = Configuration::whereName($name)->whereNull('deleted_at')->first();
2022-03-29 08:00:29 -05:00
} catch (QueryException|Exception $e) { // @phpstan-ignore-line
$item = new Configuration;
$item->name = $name;
$item->data = $value;
return $item;
}
if (null === $config) {
$item = new Configuration;
$item->name = $name;
$item->data = $value;
$item->save();
Cache::forget('ff-config-' . $name);
return $item;
}
$config->data = $value;
$config->save();
Cache::forget('ff-config-' . $name);
return $config;
}
2018-03-07 14:01:46 -06:00
/**
2018-07-14 08:21:05 -05:00
* @param string $name
2021-03-21 03:15:40 -05:00
* @param mixed $default
2018-03-07 14:01:46 -06:00
*
2021-05-24 01:57:02 -05:00
* @return Configuration|null
2018-03-07 14:01:46 -06:00
*/
2018-07-14 08:21:05 -05:00
public function getFresh(string $name, $default = null): ?Configuration
2018-03-07 14:01:46 -06:00
{
2021-03-13 05:01:01 -06:00
2018-03-07 14:01:46 -06:00
$config = Configuration::where('name', $name)->first(['id', 'name', 'data']);
if ($config) {
return $config;
}
// no preference found and default is null:
if (null === $default) {
return null;
}
return $this->set($name, $default);
}
/**
2018-07-14 08:21:05 -05:00
* @param string $name
*
* @return bool
*/
public function has(string $name): bool
{
return Configuration::where('name', $name)->count() === 1;
}
/**
2021-04-06 10:00:16 -05:00
* @param string $name
* @param mixed $value
*
* @return Configuration
*/
public function put(string $name, $value): Configuration
{
return $this->set($name, $value);
}
}