]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Maintenance.php
spelling: unable
[friendica.git] / src / Console / Maintenance.php
index dd20a727edb4618fab3e1d590f1dd312797abcd9..076b89db828279fc8bc7d0b7c97370b5af777747 100644 (file)
@@ -1,14 +1,31 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @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 <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Console;
 
 use Friendica\App;
-use Friendica\Core\Config\IConfig;
+use Friendica\Core\Config\Capability\IManageConfigValues;
 
 /**
  * Sets maintenance mode for this node
- *
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class Maintenance extends \Asika\SimpleConsole\Console
 {
@@ -19,7 +36,7 @@ class Maintenance extends \Asika\SimpleConsole\Console
         */
        private $appMode;
        /**
-        * @var IConfig
+        * @var IManageConfigValues
         */
        private $config;
 
@@ -52,7 +69,7 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, IConfig $config, $argv = null)
+       public function __construct(App\Mode $appMode, IManageConfigValues $config, $argv = null)
        {
                parent::__construct($argv);
 
@@ -60,7 +77,7 @@ HELP;
                $this->config = $config;
        }
 
-       protected function doExecute()
+       protected function doExecute(): int
        {
                if ($this->getOption('v')) {
                        $this->out('Class: ' . __CLASS__);
@@ -83,16 +100,20 @@ HELP;
 
                $enabled = intval($this->getArgument(0));
 
-               $this->config->set('system', 'maintenance', $enabled);
+               $transactionConfig = $this->config->beginTransaction();
+
+               $transactionConfig->set('system', 'maintenance', $enabled);
 
                $reason = $this->getArgument(1);
 
                if ($enabled && $this->getArgument(1)) {
-                       $this->config->set('system', 'maintenance_reason', $this->getArgument(1));
+                       $transactionConfig->set('system', 'maintenance_reason', $this->getArgument(1));
                } else {
-                       $this->config->set('system', 'maintenance_reason', '');
+                       $transactionConfig->delete('system', 'maintenance_reason');
                }
 
+               $transactionConfig->commit();
+
                if ($enabled) {
                        $mode_str = "maintenance mode";
                } else {