summaryrefslogtreecommitdiffstats
path: root/lib/Config/LegacyConfig.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Config/LegacyConfig.php')
-rw-r--r--lib/Config/LegacyConfig.php83
1 files changed, 0 insertions, 83 deletions
diff --git a/lib/Config/LegacyConfig.php b/lib/Config/LegacyConfig.php
deleted file mode 100644
index b0d78f9f1..000000000
--- a/lib/Config/LegacyConfig.php
+++ /dev/null
@@ -1,83 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright 2012 Alessandro Cosentino
- * @copyright 2012-2014 Bernhard Posselt
- */
-
-namespace OCA\News\Config;
-
-use OCP\Files\Folder;
-use Psr\Log\LoggerInterface;
-
-class LegacyConfig
-{
-
- private $logger;
- private $fileSystem;
-
- public $autoPurgeMinimumInterval; // seconds, used to define how
- // long deleted folders and feeds
- // should still be kept for an
- // undo actions
- public $autoPurgeCount; // number of allowed unread articles per feed
- public $maxRedirects; // seconds
- public $feedFetcherTimeout; // seconds
- public $useCronUpdates; // turn off updates run by the cron
- public $maxSize;
- public $exploreUrl;
- public $updateInterval;
-
- public function __construct(
- ?Folder $fileSystem,
- LoggerInterface $logger
- ) {
- $this->fileSystem = $fileSystem;
- $this->logger = $logger;
-
- $this->autoPurgeMinimumInterval = 60;
- $this->autoPurgeCount = 200;
- $this->maxRedirects = 10;
- $this->maxSize = 100 * 1024 * 1024; // 100Mb
- $this->feedFetcherTimeout = 60;
- $this->useCronUpdates = true;
- $this->exploreUrl = '';
- $this->updateInterval = 3600;
- }
-
- /**
- * @param false $createIfNotExists
- *
- * @return void
- */
- public function read($configPath, bool $createIfNotExists = false)
- {
- if ($this->fileSystem === null) {
- return;
- }
- $content = $this->fileSystem->get($configPath)->getContent();
- $configValues = parse_ini_string($content);
-
- if ($configValues === false || count($configValues) === 0) {
- $this->logger->warning('Configuration invalid. Ignoring values.');
- } else {
- foreach ($configValues as $key => $value) {
- if (property_exists($this, $key)) {
- settype($value, gettype($this->$key)); //@phpstan-ignore-line
- $this->$key = $value; //@phpstan-ignore-line
- } else {
- $this->logger->warning(
- 'Configuration value "' . $key .
- '" does not exist. Ignored value.'
- );
- }
- }
- }
- }
-}