]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/PostUpdate.php
Merge pull request #12562 from MrPetovan/bug/notices
[friendica.git] / src / Console / PostUpdate.php
index 4d7246d90bf459e85e3be374ef0ede8a187c5c08..742197e732c0fcab2f8b25f07d6ed729e118adc2 100644 (file)
@@ -1,26 +1,54 @@
 <?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\Core\Config;
+use Friendica\App;
+use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
 use Friendica\Core\L10n;
 use Friendica\Core\Update;
 
 /**
  * Performs database post updates
- *
- * License: AGPLv3 or later, same as Friendica
- *
- * @author Tobias Diekershoff <tobias.diekershoff@gmx.net>
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class PostUpdate extends \Asika\SimpleConsole\Console
 {
-        protected $helpOptions = ['h', 'help', '?'];
+       protected $helpOptions = ['h', 'help', '?'];
+
+       /**
+        * @var App\Mode
+        */
+       private $appMode;
+       /**
+        * @var IManageKeyValuePairs
+        */
+       private $keyValue;
+       /**
+        * @var L10n
+        */
+       private $l10n;
 
-        protected function getHelp()
-        {
-                $help = <<<HELP
+       protected function getHelp()
+       {
+               $help = <<<HELP
 console postupdate - Performs database post updates
 Usage
         bin/console postupdate [-h|--help|-?] [--reset <version>]
@@ -29,12 +57,21 @@ Options
     -h|--help|-?      Show help information
     --reset <version> Reset the post update version
 HELP;
-                return $help;
-        }
+               return $help;
+       }
+
+       public function __construct(App\Mode $appMode, IManageKeyValuePairs $keyValue, L10n $l10n, array $argv = null)
+       {
+               parent::__construct($argv);
+
+               $this->appMode  = $appMode;
+               $this->keyValue = $keyValue;
+               $this->l10n     = $l10n;
+       }
 
-       protected function doExecute()
+       protected function doExecute(): int
        {
-               $a = \Friendica\BaseObject::getApp();
+               $a = \Friendica\DI::app();
 
                if ($this->getOption($this->helpOptions)) {
                        $this->out($this->getHelp());
@@ -46,26 +83,26 @@ HELP;
                        $this->out($this->getHelp());
                        return 0;
                } elseif ($reset_version) {
-                       Config::set('system', 'post_update_version', $reset_version);
-                       echo L10n::t('Post update version number has been set to %s.', $reset_version) . "\n";
+                       $this->keyValue->set('post_update_version', $reset_version);
+                       echo $this->l10n->t('Post update version number has been set to %s.', $reset_version) . "\n";
                        return 0;
                }
 
-               if ($a->getMode()->isInstall()) {
+               if ($this->appMode->isInstall()) {
                        throw new \RuntimeException('Database isn\'t ready or populated yet');
                }
 
-               echo L10n::t('Check for pending update actions.') . "\n";
+               echo $this->l10n->t('Check for pending update actions.') . "\n";
                Update::run($a->getBasePath(), true, false, true, false);
-               echo L10n::t('Done.') . "\n";
+               echo $this->l10n->t('Done.') . "\n";
 
-               echo L10n::t('Execute pending post updates.') . "\n";
+               echo $this->l10n->t('Execute pending post updates.') . "\n";
 
                while (!\Friendica\Database\PostUpdate::update()) {
                        echo '.';
                }
 
-               echo "\n" . L10n::t('All pending post updates are done.') . "\n";
+               echo "\n" . $this->l10n->t('All pending post updates are done.') . "\n";
 
                return 0;
        }