91 lines
2.2 KiB
PHP
91 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Nextcloud - Related Resources
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2022
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\Service;
|
|
|
|
use OCA\RelatedResources\AppInfo\Application;
|
|
use OCA\RelatedResources\Tools\Traits\TArrayTools;
|
|
use OCP\IConfig;
|
|
|
|
class ConfigService {
|
|
use TArrayTools;
|
|
|
|
private IConfig $config;
|
|
|
|
public const RESULT_MAX = 'result_max';
|
|
|
|
private static $defaults = [
|
|
self::RESULT_MAX => 7
|
|
];
|
|
|
|
public function __construct(IConfig $config) {
|
|
$this->config = $config;
|
|
}
|
|
|
|
public function unsetAppConfig(): void {
|
|
$this->config->deleteAppValues(Application::APP_ID);
|
|
}
|
|
|
|
public function setAppValue(string $key, string $value): void {
|
|
$this->config->setAppValue(Application::APP_ID, $key, $value);
|
|
}
|
|
|
|
public function getAppValue(string $key): string {
|
|
if (($value = $this->config->getAppValue(Application::APP_ID, $key, '')) !== '') {
|
|
return $value;
|
|
}
|
|
|
|
if (($value = $this->config->getSystemValue(Application::APP_ID . '.' . $key, '')) !== '') {
|
|
return $value;
|
|
}
|
|
|
|
return $this->get($key, self::$defaults);
|
|
}
|
|
|
|
/**
|
|
* @param string $key
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getAppValueInt(string $key): int {
|
|
return (int)$this->getAppValue($key);
|
|
}
|
|
|
|
/**
|
|
* @param string $key
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getAppValueBool(string $key): bool {
|
|
return ($this->getAppValueInt($key) === 1);
|
|
}
|
|
}
|