]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/AutomaticInstallation.php
Merge pull request #10403 from annando/doc-structure
[friendica.git] / src / Console / AutomaticInstallation.php
index d594b2605e19375d25c8a1b577fcdfaff03782bc..b3addbc288d2e36939d2c68cd174cdbddf963385 100644 (file)
@@ -1,19 +1,48 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, 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 Asika\SimpleConsole\Console;
-use Friendica\BaseObject;
-use Friendica\Core\Config;
+use Friendica\App;
+use Friendica\App\BaseURL;
+use Friendica\Core\Config\IConfig;
+use Friendica\Core\Config\Cache;
 use Friendica\Core\Installer;
 use Friendica\Core\Theme;
+use Friendica\Database\Database;
 use Friendica\Util\BasePath;
-use Friendica\Util\BaseURL;
-use Friendica\Util\ConfigFileLoader;
 use RuntimeException;
 
 class AutomaticInstallation extends Console
 {
+       /** @var App\Mode */
+       private $appMode;
+       /** @var Cache */
+       private $configCache;
+       /** @var IConfig */
+       private $config;
+       /** @var Database */
+       private $dba;
+
        protected function getHelp()
        {
                return <<<HELP
@@ -69,23 +98,32 @@ Examples
 HELP;
        }
 
+       public function __construct(App\Mode $appMode, Cache $configCache, IConfig $config, Database $dba, array $argv = null)
+       {
+               parent::__construct($argv);
+
+               $this->appMode     = $appMode;
+               $this->configCache = $configCache;
+               $this->config      = $config;
+               $this->dba         = $dba;
+       }
+
        protected function doExecute()
        {
                // Initialise the app
-               $this->out("Initializing setup...\n");
-
-               $a = BaseObject::getApp();
+               $this->out("Initializing setup...");
 
                $installer = new Installer();
 
-               $configCache = $a->getConfigCache();
-               $basepath = new BasePath($a->getBasePath());
+               $configCache  = $this->configCache;
+               $basePathConf = $configCache->get('system', 'basepath');
+               $basepath     = new BasePath($basePathConf);
                $installer->setUpCache($configCache, $basepath->getPath());
 
-               $this->out(" Complete!\n\n");
+               $this->out(" Complete!\n");
 
                // Check Environment
-               $this->out("Checking environment...\n");
+               $this->out("Checking environment...");
 
                $installer->resetChecks();
 
@@ -94,27 +132,26 @@ HELP;
                        throw new RuntimeException($errorMessage);
                }
 
-               $this->out(" Complete!\n\n");
+               $this->out(" Complete!\n");
 
                // if a config file is set,
                $config_file = $this->getOption(['f', 'file']);
 
                if (!empty($config_file)) {
-                       if ($config_file != 'config' . DIRECTORY_SEPARATOR . 'local.config.php') {
-                               // Copy config file
-                               $this->out("Copying config file...\n");
-                               if (!copy($a->getBasePath() . DIRECTORY_SEPARATOR . $config_file, $a->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.config.php')) {
-                                       throw new RuntimeException("ERROR: Saving config file failed. Please copy '$config_file' to '" . $a->getBasePath() . "'" . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "local.config.php' manually.\n");
-                               }
+                       $this->out("Loading config file '$config_file'...");
+                       if (!file_exists($config_file)) {
+                               throw new RuntimeException("ERROR: Config file does not exist.");
                        }
 
-                       //reload the config cache
-                       $loader = new ConfigFileLoader($a->getBasePath(), $a->getMode());
-                       $loader->setupCache($configCache);
-
+                       //append config file to the config cache
+                       $config = include($config_file);
+                       if (!is_array($config)) {
+                               throw new Exception('Error loading config file ' . $config_file);
+                       }
+                       $configCache->load($config, Cache::SOURCE_FILE);
                } else {
                        // Creating config file
-                       $this->out("Creating config file...\n");
+                       $this->out("Creating config file...");
 
                        $save_db = $this->getOption(['s', 'savedb'], false);
 
@@ -159,66 +196,74 @@ HELP;
                                $this->out('The Friendica URL has to be set during CLI installation.');
                                return 1;
                        } else {
-                               $baseUrl = new BaseURL($a->getConfig(), []);
+                               $baseUrl = new BaseURL($this->config, []);
                                $baseUrl->saveByURL($url);
                        }
 
                        $installer->createConfig($configCache);
                }
 
-               $this->out(" Complete!\n\n");
+               $this->out(" Complete!\n");
 
                // Check database connection
-               $this->out("Checking database...\n");
+               $this->out("Checking database...");
 
                $installer->resetChecks();
 
-               if (!$installer->checkDB($configCache, $a->getProfiler())) {
+               if (!$installer->checkDB($this->dba)) {
                        $errorMessage = $this->extractErrors($installer->getChecks());
                        throw new RuntimeException($errorMessage);
                }
 
-               $this->out(" Complete!\n\n");
+               $this->out(" Complete!\n");
 
                // Install database
                $this->out("Inserting data into database...\n");
 
                $installer->resetChecks();
 
-               if (!$installer->installDatabase($a->getBasePath())) {
+               if (!$installer->installDatabase($basePathConf)) {
                        $errorMessage = $this->extractErrors($installer->getChecks());
                        throw new RuntimeException($errorMessage);
                }
 
-               $this->out(" Complete!\n\n");
+               if (!empty($config_file) && $config_file != 'config' . DIRECTORY_SEPARATOR . 'local.config.php') {
+                       // Copy config file
+                       $this->out("Copying config file...");
+                       if (!copy($config_file, $basePathConf . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.config.php')) {
+                               throw new RuntimeException("ERROR: Saving config file failed. Please copy '$config_file' to '" . $basePathConf . "'" . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "local.config.php' manually.\n");
+                       }
+               }
+
+               $this->out(" Complete!\n");
 
                // Install theme
-               $this->out("Installing theme\n");
-               if (!empty(Config::get('system', 'theme'))) {
-                       Theme::install(Config::get('system', 'theme'));
-                       $this->out(" Complete\n\n");
+               $this->out("Installing theme");
+               if (!empty($this->config->get('system', 'theme'))) {
+                       Theme::install($this->config->get('system', 'theme'));
+                       $this->out(" Complete\n");
                } else {
-                       $this->out(" Theme setting is empty. Please check the file 'config/local.config.php'\n\n");
+                       $this->out(" Theme setting is empty. Please check the file 'config/local.config.php'\n");
                }
 
-               $this->out("\nInstallation is finished\n");
+               $this->out("\nInstallation is finished");
 
                return 0;
        }
 
        /**
-        * @param Installer                 $installer   The Installer instance
-        * @param Config\Cache\ConfigCache $configCache The config cache
+        * @param Installer $installer   The Installer instance
+        * @param Cache     $configCache The config cache
         *
         * @return bool true if checks were successfully, otherwise false
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       private function runBasicChecks(Installer $installer, Config\Cache\ConfigCache $configCache)
+       private function runBasicChecks(Installer $installer, Cache $configCache)
        {
                $checked = true;
 
                $installer->resetChecks();
-               if (!$installer->checkFunctions())              {
+               if (!$installer->checkFunctions()) {
                        $checked = false;
                }
                if (!$installer->checkImagick()) {
@@ -247,11 +292,12 @@ HELP;
 
        /**
         * @param array $results
+        *
         * @return string
         */
        private function extractErrors($results)
        {
-               $errorMessage = '';
+               $errorMessage      = '';
                $allChecksRequired = $this->getOption('a') !== null;
 
                foreach ($results as $result) {