out("Initializing setup...\n"); $a = get_app(); $db_host = ''; $db_user = ''; $db_pass = ''; $db_data = ''; $config_file = $this->getOption('f', 'htconfig.php'); $this->out("Using config $config_file...\n"); require_once $config_file; Install::setInstallMode(); $this->out(" Complete!\n\n"); // Check basic setup $this->out("Checking basic setup...\n"); $checkResults = []; $checkResults['basic'] = $this->runBasicChecks($a); $errorMessage = $this->extractErrors($checkResults['basic']); if ($errorMessage !== '') { throw new \RuntimeException($errorMessage); } $this->out(" Complete!\n\n"); // Check database connection $this->out("Checking database...\n"); $checkResults['db'] = array(); $checkResults['db'][] = $this->runDatabaseCheck($db_host, $db_user, $db_pass, $db_data); $errorMessage = $this->extractErrors($checkResults['db']); if ($errorMessage !== '') { throw new \RuntimeException($errorMessage); } $this->out(" Complete!\n\n"); // Install database $this->out("Inserting data into database...\n"); $checkResults['data'] = Install::installDatabaseStructure(); if ($checkResults['data'] !== '') { throw new \RuntimeException("ERROR: DB Database creation error. Is the DB empty?\n"); } $this->out(" Complete!\n\n"); // Install theme $this->out("Installing theme\n"); if (!empty($a->config['system']['theme'])) { Theme::install($a->config['system']['theme']); $this->out(" Complete\n\n"); } else { $this->out(" Theme setting is empty. Please check the file htconfig.php\n\n"); } // Copy config file $this->out("Saving config file...\n"); if ($config_file != '.htconfig.php' && !copy($config_file, '.htconfig.php')) { throw new \RuntimeException("ERROR: Saving config file failed. Please copy '$config_file' to '.htconfig.php' manually.\n"); } $this->out(" Complete!\n\n"); $this->out("\nInstallation is finished\n"); return 0; } /** * @param App $app * @return array */ private function runBasicChecks($app) { $checks = []; Install::checkFunctions($checks); Install::checkImagick($checks); Install::checkHtConfig($checks); Install::checkSmarty3($checks); Install::checkKeys($checks); if (!empty($app->config['php_path'])) { Install::checkPHP($app->config['php_path'], $checks); } else { throw new \RuntimeException(" ERROR: The php_path is not set in the config. Please check the file .htconfig.php.\n"); } $this->out(" NOTICE: Not checking .htaccess/URL-Rewrite during CLI installation.\n"); return $checks; } /** * @param $db_host * @param $db_user * @param $db_pass * @param $db_data * @return array */ private function runDatabaseCheck($db_host, $db_user, $db_pass, $db_data) { $result = array( 'title' => 'MySQL Connection', 'required' => true, 'status' => true, 'help' => '', ); if (!dba::connect($db_host, $db_user, $db_pass, $db_data)) { $result['status'] = false; $result['help'] = 'Failed, please check your MySQL settings and credentials.'; } return $result; } /** * @param array $results * @return string */ private function extractErrors($results) { $errorMessage = ''; $allChecksRequired = $this->getOption('a') !== null; foreach ($results as $result) { if (($allChecksRequired || $result['required'] === true) && $result['status'] === false) { $errorMessage .= "--------\n"; $errorMessage .= $result['title'] . ': ' . $result['help'] . "\n"; } } return $errorMessage; } }