]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Console/AutomaticInstallation.php
AutoInstall Test fix
[friendica.git] / src / Core / Console / AutomaticInstallation.php
index a847b4a1bca259d2a1787ae91313f416e4d6761e..294009ada015e5939955c550dbdc2b257de8d309 100644 (file)
@@ -3,10 +3,14 @@
 namespace Friendica\Core\Console;
 
 use Asika\SimpleConsole\Console;
-use dba;
-use Friendica\App;
+use Friendica\BaseObject;
+use Friendica\Core\Config;
+use Friendica\Core\Installer;
+use Friendica\Core\Theme;
+use Friendica\Database\DBA;
+use Friendica\Database\DBStructure;
+use RuntimeException;
 
-require_once 'mod/install.php';
 require_once 'include/dba.php';
 
 class AutomaticInstallation extends Console
@@ -16,144 +20,214 @@ class AutomaticInstallation extends Console
                return <<<HELP
 Installation - Install Friendica automatically
 Synopsis
-       bin/console install [-h|--help|-?] [-v] [-a] 
+       bin/console autoinstall [-h|--help|-?] [-v] [-a] [-f]
 
 Description
-       bin/console install
-               Installs Friendica with data based on the htconfig.php file
+    Installs Friendica with data based on the local.ini.php file or environment variables
 
-Notes:
+Notes
     Not checking .htaccess/URL-Rewrite during CLI installation.
 
 Options
-    -h|--help|-? Show help information
-    -v           Show more debug information.
-    -a           All setup checks are required (except .htaccess)
+    -h|--help|-?            Show help information
+    -v                      Show more debug information.
+    -a                      All setup checks are required (except .htaccess)
+    -f|--file <config>      prepared config file (e.g. "config/local.ini.php" itself) which will override every other config option - except the environment variables)
+    -s|--savedb             Save the DB credentials to the file (if environment variables is used)
+    -H|--dbhost <host>      The host of the mysql/mariadb database (env MYSQL_HOST)
+    -p|--dbport <port>      The port of the mysql/mariadb database (env MYSQL_PORT)
+    -d|--dbdata <database>  The name of the mysql/mariadb database (env MYSQL_DATABASE)
+    -U|--dbuser <username>  The username of the mysql/mariadb database login (env MYSQL_USER or MYSQL_USERNAME)
+    -P|--dbpass <password>  The password of the mysql/mariadb database login (env MYSQL_PASSWORD)
+    -u|--urlpath <url_path> The URL path of Friendica - f.e. '/friendica' (env FRIENDICA_URL_PATH) 
+    -b|--phppath <php_path> The path of the PHP binary (env FRIENDICA_PHP_PATH) 
+    -A|--admin <mail>       The admin email address of Friendica (env FRIENDICA_ADMIN_MAIL)
+    -T|--tz <timezone>      The timezone of Friendica (env FRIENDICA_TZ)
+    -L|--lang <language>    The language of Friendica (env FRIENDICA_LANG)
+Environment variables
+   MYSQL_HOST                  The host of the mysql/mariadb database (mandatory if mysql and environment is used)
+   MYSQL_PORT                  The port of the mysql/mariadb database
+   MYSQL_USERNAME|MYSQL_USER   The username of the mysql/mariadb database login (MYSQL_USERNAME is for mysql, MYSQL_USER for mariadb)
+   MYSQL_PASSWORD              The password of the mysql/mariadb database login
+   MYSQL_DATABASE              The name of the mysql/mariadb database
+   FRIENDICA_URL_PATH          The URL path of Friendica (f.e. '/friendica')
+   FRIENDICA_PHP_PATH          The path of the PHP binary
+   FRIENDICA_ADMIN_MAIL        The admin email address of Friendica (this email will be used for admin access)
+   FRIENDICA_TZ                The timezone of Friendica
+   FRIENDICA_LANG              The langauge of Friendica
+   
+Examples
+       bin/console autoinstall -f 'input.ini.php
+               Installs Friendica with the prepared 'input.ini.php' file
+
+       bin/console autoinstall --savedb
+               Installs Friendica with environment variables and saves them to the 'config/local.ini.php' file
+
+       bin/console autoinstall -h localhost -p 3365 -U user -P passwort1234 -d friendica
+               Installs Friendica with a local mysql database with credentials
 HELP;
        }
 
        protected function doExecute()
        {
-               // remove die and copy config file
-               $fileContent = file_get_contents('./htconfig.php');
-               $fileContent = str_replace('die', '//die', $fileContent);
-               file_put_contents('.htautoinstall.php', $fileContent);
-
                // Initialise the app
-               $this->output("Initializing setup...\n");
+               $this->out("Initializing setup...\n");
+
+               $a = BaseObject::getApp();
 
-               $a = get_app();
-               $db_host = '';
-               $db_user = '';
-               $db_pass = '';
-               $db_data = '';
-               require_once '.htautoinstall.php';
+               $installer = new Installer();
 
-               $this->output(" Complete!\n\n");
+               $this->out(" Complete!\n\n");
 
-               // Check basic setup
-               $this->output("Checking basic setup...\n");
+               // Check Environment
+               $this->out("Checking environment...\n");
 
-               $checkResults = [];
-               $checkResults['basic'] = $this->runBasicChecks($a);
-               $errorMessage = $this->extractErrors($checkResults['basic']);
+               $installer->resetChecks();
 
-               if ($errorMessage !== '') {
-                       die($errorMessage);
+               if (!$this->runBasicChecks($installer)) {
+                       $errorMessage = $this->extractErrors($installer->getChecks());
+                       throw new RuntimeException($errorMessage);
                }
 
-               $this->output(" Complete!\n\n");
+               $this->out(" Complete!\n\n");
 
-               // Check database connection
-               $this->output("Checking database...\n");
+               // if a config file is set,
+               $config_file = $this->getOption(['f', 'file']);
+
+               if (!empty($config_file)) {
+                       if ($config_file != 'config' . DIRECTORY_SEPARATOR . 'local.ini.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.ini.php')) {
+                                       throw new RuntimeException("ERROR: Saving config file failed. Please copy '$config_file' to '" . $a->getBasePath() . "'"  . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "local.ini.php' manually.\n");
+                               }
+                       }
 
-               $checkResults['db'] = array();
-               $checkResults['db'][] = $this->runDatabaseCheck($db_host, $db_user, $db_pass, $db_data);
-               $errorMessage = $this->extractErrors($checkResults['db']);
+                       $db_host = $a->getConfigValue('database', 'hostname');
+                       $db_user = $a->getConfigValue('database', 'username');
+                       $db_pass = $a->getConfigValue('database', 'password');
+                       $db_data = $a->getConfigValue('database', 'database');
+               } else {
+                       // Creating config file
+                       $this->out("Creating config file...\n");
+
+                       $save_db = $this->getOption(['s', 'savedb'], false);
+
+                       $db_host = $this->getOption(['H', 'dbhost'], ($save_db) ? getenv('MYSQL_HOST') : '');
+                       $db_port = $this->getOption(['p', 'dbport'], ($save_db) ? getenv('MYSQL_PORT') : null);
+                       $db_data = $this->getOption(['d', 'dbdata'], ($save_db) ? getenv('MYSQL_DATABASE') : '');
+                       $db_user = $this->getOption(['U', 'dbuser'], ($save_db) ? getenv('MYSQL_USER') . getenv('MYSQL_USERNAME') : '');
+                       $db_pass = $this->getOption(['P', 'dbpass'], ($save_db) ? getenv('MYSQL_PASSWORD') : '');
+                       $url_path = $this->getOption(['u', 'urlpath'], (!empty('FRIENDICA_URL_PATH')) ? getenv('FRIENDICA_URL_PATH') : null);
+                       $php_path = $this->getOption(['b', 'phppath'], (!empty('FRIENDICA_PHP_PATH')) ? getenv('FRIENDICA_PHP_PATH') : null);
+                       $admin_mail = $this->getOption(['A', 'admin'], (!empty('FRIENDICA_ADMIN_MAIL')) ? getenv('FRIENDICA_ADMIN_MAIL') : '');
+                       $tz = $this->getOption(['T', 'tz'], (!empty('FRIENDICA_TZ')) ? getenv('FRIENDICA_TZ') : '');
+                       $lang = $this->getOption(['L', 'lang'], (!empty('FRIENDICA_LANG')) ? getenv('FRIENDICA_LANG') : '');
+
+                       if (empty($php_path)) {
+                               $php_path = $installer->getPHPPath();
+                       }
 
-               if ($errorMessage !== '') {
-                       die($errorMessage);
+                       $installer->createConfig(
+                               $php_path,
+                               $url_path,
+                               ((!empty($db_port)) ? $db_host . ':' . $db_port : $db_host),
+                               $db_user,
+                               $db_pass,
+                               $db_data,
+                               $tz,
+                               $lang,
+                               $admin_mail,
+                               $a->getBasePath()
+                       );
                }
 
-               $this->output(" Complete!\n\n");
+               $this->out(" Complete!\n\n");
 
-               // Install database
-               $this->output("Inserting data into database...\n");
+               // Check database connection
+               $this->out("Checking database...\n");
 
-               $checkResults['data'] = load_database();
+               $installer->resetChecks();
 
-               if ($checkResults['data'] !== '') {
-                       die("ERROR: DB Database creation error. Is the DB empty?\n");
+               if (!$installer->checkDB($db_host, $db_user, $db_pass, $db_data)) {
+                       $errorMessage = $this->extractErrors($installer->getChecks());
+                       throw new RuntimeException($errorMessage);
                }
 
-               $this->output(" Complete!\n\n");
+               $this->out(" Complete!\n\n");
 
-               // Copy config file
-               $this->output("Saving config file...\n");
-               if (!copy('.htautoinstall.php', '.htconfig.php')) {
-                       die("ERROR: Saving config file failed. Please copy .htautoinstall.php to .htconfig.php manually.\n");
-               }
-               $this->output(" Complete!\n\n");
-               $this->output("\nInstallation is finished\n");
+               // Install database
+               $this->out("Inserting data into database...\n");
 
-               return 0;
-       }
+               $installer->resetChecks();
 
-       /**
-        * @param App $app
-        * @return array
-        */
-       public function runBasicChecks($app)
-       {
-               $checks = [];
+               if (!$installer->installDatabase()) {
+                       $errorMessage = $this->extractErrors($installer->getChecks());
+                       throw new RuntimeException($errorMessage);
+               }
 
-               check_funcs($checks);
-               check_imagik($checks);
-               check_htconfig($checks);
-               check_smarty3($checks);
-               check_keys($checks);
+               $this->out(" Complete!\n\n");
 
-               if (!empty($app->config['php_path'])) {
-                       check_php($app->config['php_path'], $checks);
+               // Install theme
+               $this->out("Installing theme\n");
+               if (!empty(Config::get('system', 'theme'))) {
+                       Theme::install(Config::get('system', 'theme'));
+                       $this->out(" Complete\n\n");
                } else {
-                       die(" ERROR: The php_path is not set in the config. Please check the file .htconfig.php.\n");
+                       $this->out(" Theme setting is empty. Please check the file 'config/local.ini.php'\n\n");
                }
 
-               $this->output(" NOTICE: Not checking .htaccess/URL-Rewrite during CLI installation.\n");
+               $this->out("\nInstallation is finished\n");
 
-               return $checks;
+               return 0;
        }
 
        /**
-        * @param $db_host
-        * @param $db_user
-        * @param $db_pass
-        * @param $db_data
-        * @return array
+        * @param Installer $installer the Installer instance
+        *
+        * @return bool true if checks were successfully, otherwise false
         */
-       public function runDatabaseCheck($db_host, $db_user, $db_pass, $db_data)
+       private function runBasicChecks(Installer $installer)
        {
-               $result = array(
-                       'title' => 'MySQL Connection',
-                       'required' => true,
-                       'status' => true,
-                       'help' => '',
-               );
+               $checked = true;
+
+               $installer->resetChecks();
+               if (!$installer->checkFunctions())              {
+                       $checked = false;
+               }
+               if (!$installer->checkImagick()) {
+                       $checked = false;
+               }
+               if (!$installer->checkLocalIni()) {
+                       $checked = false;
+               }
+               if (!$installer->checkSmarty3()) {
+                       $checked = false;
+               }
+               if (!$installer->checkKeys()) {
+                       $checked = false;
+               }
 
+               $php_path = null;
+               if (!empty(Config::get('config', 'php_path'))) {
+                       $php_path = Config::get('config', 'php_path');
+               }
 
-               if (!dba::connect($db_host, $db_user, $db_pass, $db_data, true)) {
-                       $result['status'] = false;
-                       $result['help'] = 'Failed, please check your MySQL settings and credentials.';
+               if (!$installer->checkPHP($php_path, true)) {
+                       $checked = false;
                }
 
-               return $result;
+               $this->out(" NOTICE: Not checking .htaccess/URL-Rewrite during CLI installation.\n");
+
+               return $checked;
        }
 
        /**
         * @param array $results
         * @return string
         */
-       public function extractErrors($results)
+       private function extractErrors($results)
        {
                $errorMessage = '';
                $allChecksRequired = $this->getOption('a') !== null;
@@ -167,15 +241,4 @@ HELP;
 
                return $errorMessage;
        }
-
-       /**
-        * @param string $text
-        */
-       public function output($text)
-       {
-               $debugInfo = $this->getOption('v') !== null;
-               if ($debugInfo) {
-                       echo $text;
-               }
-       }
 }