2018-04-18 11:43:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Console;
|
|
|
|
|
|
|
|
use Asika\SimpleConsole\Console;
|
2018-08-20 22:15:39 +02:00
|
|
|
use Friendica\BaseObject;
|
2018-07-07 23:46:30 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-10-29 18:44:39 +01:00
|
|
|
use Friendica\Core\Installer;
|
2018-05-13 12:50:53 +02:00
|
|
|
use Friendica\Core\Theme;
|
2019-04-13 21:46:06 +02:00
|
|
|
use Friendica\Util\BasePath;
|
|
|
|
use Friendica\Util\BaseURL;
|
2019-03-24 12:54:26 +01:00
|
|
|
use Friendica\Util\Config\ConfigFileLoader;
|
2018-07-07 23:46:30 +02:00
|
|
|
use RuntimeException;
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
class AutomaticInstallation extends Console
|
|
|
|
{
|
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
return <<<HELP
|
|
|
|
Installation - Install Friendica automatically
|
|
|
|
Synopsis
|
2018-08-20 22:15:39 +02:00
|
|
|
bin/console autoinstall [-h|--help|-?] [-v] [-a] [-f]
|
2018-07-07 23:46:30 +02:00
|
|
|
|
2018-04-19 10:21:41 +02:00
|
|
|
Description
|
2018-11-25 07:44:09 +01:00
|
|
|
Installs Friendica with data based on the local.config.php file or environment variables
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-08-20 22:15:39 +02:00
|
|
|
Notes
|
2018-04-18 11:43:23 +02:00
|
|
|
Not checking .htaccess/URL-Rewrite during CLI installation.
|
|
|
|
|
|
|
|
Options
|
2018-10-05 19:42:08 +02:00
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
-a All setup checks are required (except .htaccess)
|
2018-11-25 07:44:09 +01:00
|
|
|
-f|--file <config> prepared config file (e.g. "config/local.config.php" itself) which will override every other config option - except the environment variables)
|
2019-04-13 22:06:05 +02:00
|
|
|
-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|--url <url> The full base URL of Friendica - f.e. 'https://friendica.local/sub' (env FRIENDICA_URL)
|
|
|
|
-B|--phppath <php_path> The path of the PHP binary (env FRIENDICA_PHP_PATH)
|
|
|
|
-b|--basepath <base_path> The basepath of Friendica(env FRIENDICA_BASE_PATH)
|
|
|
|
-t|--tz <timezone> The timezone of Friendica (env FRIENDICA_TZ)
|
|
|
|
-L|--lang <language> The language of Friendica (env FRIENDICA_LANG)
|
2018-08-20 22:15:39 +02:00
|
|
|
|
|
|
|
Environment variables
|
2018-08-27 06:15:55 +02:00
|
|
|
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
|
2019-04-13 21:46:06 +02:00
|
|
|
FRIENDICA_URL The full base URL of Friendica - f.e. 'https://friendica.local/sub'
|
2019-03-26 22:04:31 +01:00
|
|
|
FRIENDICA_PHP_PATH The path of the PHP binary - leave empty for auto detection
|
|
|
|
FRIENDICA_BASE_PATH The basepath of Friendica - leave empty for auto detection
|
2018-08-27 06:15:55 +02:00
|
|
|
FRIENDICA_ADMIN_MAIL The admin email address of Friendica (this email will be used for admin access)
|
2018-08-20 22:15:39 +02:00
|
|
|
FRIENDICA_TZ The timezone of Friendica
|
|
|
|
FRIENDICA_LANG The langauge of Friendica
|
|
|
|
|
|
|
|
Examples
|
2018-11-25 07:44:09 +01:00
|
|
|
bin/console autoinstall -f 'input.config.php
|
|
|
|
Installs Friendica with the prepared 'input.config.php' file
|
2018-08-20 22:15:39 +02:00
|
|
|
|
|
|
|
bin/console autoinstall --savedb
|
2018-11-25 07:44:09 +01:00
|
|
|
Installs Friendica with environment variables and saves them to the 'config/local.config.php' file
|
2018-08-20 22:15:39 +02:00
|
|
|
|
|
|
|
bin/console autoinstall -h localhost -p 3365 -U user -P passwort1234 -d friendica
|
2018-08-27 06:15:55 +02:00
|
|
|
Installs Friendica with a local mysql database with credentials
|
2018-04-18 11:43:23 +02:00
|
|
|
HELP;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function doExecute()
|
|
|
|
{
|
|
|
|
// Initialise the app
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("Initializing setup...\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-08-27 06:15:55 +02:00
|
|
|
$a = BaseObject::getApp();
|
|
|
|
|
2018-10-29 18:44:39 +01:00
|
|
|
$installer = new Installer();
|
2018-10-08 02:15:27 +02:00
|
|
|
|
2019-03-14 10:00:05 +01:00
|
|
|
$configCache = $a->getConfigCache();
|
2019-04-13 21:46:06 +02:00
|
|
|
$installer->setUpCache($configCache, BasePath::create($a->getBasePath(), $_SERVER));
|
2019-03-14 10:00:05 +01:00
|
|
|
|
2018-10-30 11:30:19 +01:00
|
|
|
$this->out(" Complete!\n\n");
|
|
|
|
|
|
|
|
// Check Environment
|
|
|
|
$this->out("Checking environment...\n");
|
|
|
|
|
|
|
|
$installer->resetChecks();
|
|
|
|
|
2019-03-14 10:00:05 +01:00
|
|
|
if (!$this->runBasicChecks($installer, $configCache)) {
|
2018-10-30 11:30:19 +01:00
|
|
|
$errorMessage = $this->extractErrors($installer->getChecks());
|
|
|
|
throw new RuntimeException($errorMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->out(" Complete!\n\n");
|
|
|
|
|
2018-08-20 22:15:39 +02:00
|
|
|
// if a config file is set,
|
|
|
|
$config_file = $this->getOption(['f', 'file']);
|
|
|
|
|
|
|
|
if (!empty($config_file)) {
|
2018-11-25 07:44:09 +01:00
|
|
|
if ($config_file != 'config' . DIRECTORY_SEPARATOR . 'local.config.php') {
|
2018-08-20 22:15:39 +02:00
|
|
|
// Copy config file
|
|
|
|
$this->out("Copying config file...\n");
|
2018-11-25 07:44:09 +01:00
|
|
|
if (!copy($a->getBasePath() . DIRECTORY_SEPARATOR . $config_file, $a->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.config.php')) {
|
2019-03-26 22:04:31 +01:00
|
|
|
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");
|
2018-08-20 22:15:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-14 10:00:05 +01:00
|
|
|
//reload the config cache
|
2019-03-24 12:54:26 +01:00
|
|
|
$loader = new ConfigFileLoader($a->getBasePath(), $a->getMode());
|
|
|
|
$loader->setupCache($configCache);
|
2019-03-14 10:00:05 +01:00
|
|
|
|
2018-08-20 22:15:39 +02:00
|
|
|
} else {
|
|
|
|
// Creating config file
|
|
|
|
$this->out("Creating config file...\n");
|
|
|
|
|
|
|
|
$save_db = $this->getOption(['s', 'savedb'], false);
|
|
|
|
|
2019-03-14 10:00:05 +01:00
|
|
|
$db_host = $this->getOption(['H', 'dbhost'], ($save_db) ? (getenv('MYSQL_HOST')) : Installer::DEFAULT_HOST);
|
2018-08-20 22:15:39 +02:00
|
|
|
$db_port = $this->getOption(['p', 'dbport'], ($save_db) ? getenv('MYSQL_PORT') : null);
|
2019-03-14 10:00:05 +01:00
|
|
|
$configCache->set('database', 'hostname', $db_host . (!empty($db_port) ? ':' . $db_port : ''));
|
|
|
|
$configCache->set('database', 'database',
|
|
|
|
$this->getOption(['d', 'dbdata'],
|
|
|
|
($save_db) ? getenv('MYSQL_DATABASE') : ''));
|
|
|
|
$configCache->set('database', 'username',
|
|
|
|
$this->getOption(['U', 'dbuser'],
|
|
|
|
($save_db) ? getenv('MYSQL_USER') . getenv('MYSQL_USERNAME') : ''));
|
|
|
|
$configCache->set('database', 'password',
|
|
|
|
$this->getOption(['P', 'dbpass'],
|
|
|
|
($save_db) ? getenv('MYSQL_PASSWORD') : ''));
|
2018-11-30 15:06:22 +01:00
|
|
|
$php_path = $this->getOption(['b', 'phppath'], !empty('FRIENDICA_PHP_PATH') ? getenv('FRIENDICA_PHP_PATH') : null);
|
2019-03-14 10:00:05 +01:00
|
|
|
if (!empty($php_path)) {
|
|
|
|
$configCache->set('config', 'php_path', $php_path);
|
2019-03-26 22:04:31 +01:00
|
|
|
} else {
|
|
|
|
$configCache->set('config', 'php_path', $installer->getPHPPath());
|
2019-03-14 10:00:05 +01:00
|
|
|
}
|
2019-03-26 22:04:31 +01:00
|
|
|
|
2019-03-14 10:00:05 +01:00
|
|
|
$configCache->set('config', 'admin_email',
|
|
|
|
$this->getOption(['A', 'admin'],
|
|
|
|
!empty(getenv('FRIENDICA_ADMIN_MAIL')) ? getenv('FRIENDICA_ADMIN_MAIL') : ''));
|
|
|
|
$configCache->set('system', 'default_timezone',
|
|
|
|
$this->getOption(['T', 'tz'],
|
|
|
|
!empty(getenv('FRIENDICA_TZ')) ? getenv('FRIENDICA_TZ') : Installer::DEFAULT_TZ));
|
|
|
|
$configCache->set('system', 'language',
|
|
|
|
$this->getOption(['L', 'lang'],
|
|
|
|
!empty(getenv('FRIENDICA_LANG')) ? getenv('FRIENDICA_LANG') : Installer::DEFAULT_LANG));
|
|
|
|
|
2019-03-26 22:04:31 +01:00
|
|
|
$basepath = $this->getOption(['b', 'basepath'], !empty(getenv('FRIENDICA_BASE_PATH')) ? getenv('FRIENDICA_BASE_PATH') : null);
|
|
|
|
if (!empty($basepath)) {
|
|
|
|
$configCache->set('system', 'basepath', $basepath);
|
|
|
|
}
|
|
|
|
$php_path = $this->getOption(['B', 'phppath'], !empty(getenv('FRIENDICA_PHP_PATH')) ? getenv('FRIENDICA_PHP_PATH') : null);
|
|
|
|
if (!empty($php_path)) {
|
|
|
|
$configCache->set('config', 'php_path', $php_path);
|
|
|
|
}
|
|
|
|
|
2019-04-13 21:46:06 +02:00
|
|
|
$url = $this->getOption(['U', 'url'], !empty(getenv('FRIENDICA_URL')) ? getenv('FRIENDICA_URL') : null);
|
2018-08-20 22:15:39 +02:00
|
|
|
|
2019-04-13 21:46:06 +02:00
|
|
|
if (empty($url)) {
|
|
|
|
$this->out('The Friendica URL has to be set during CLI installation.');
|
2019-03-26 22:04:31 +01:00
|
|
|
return 1;
|
2019-04-13 21:46:06 +02:00
|
|
|
} else {
|
|
|
|
$baseUrl = new BaseURL($a->getConfig(), []);
|
|
|
|
$baseUrl->saveByURL($url);
|
2018-10-30 11:30:19 +01:00
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:31 +01:00
|
|
|
$installer->createConfig($configCache);
|
2018-08-20 22:15:39 +02:00
|
|
|
}
|
2018-04-23 22:56:59 +02:00
|
|
|
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out(" Complete!\n\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
// Check database connection
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("Checking database...\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-10-29 18:44:39 +01:00
|
|
|
$installer->resetChecks();
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2019-03-26 22:04:31 +01:00
|
|
|
if (!$installer->checkDB($configCache, $a->getProfiler())) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$errorMessage = $this->extractErrors($installer->getChecks());
|
2018-07-07 23:46:30 +02:00
|
|
|
throw new RuntimeException($errorMessage);
|
2018-04-18 11:43:23 +02:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out(" Complete!\n\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
// Install database
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("Inserting data into database...\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-10-29 18:44:39 +01:00
|
|
|
$installer->resetChecks();
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2019-02-03 22:46:50 +01:00
|
|
|
if (!$installer->installDatabase($a->getBasePath())) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$errorMessage = $this->extractErrors($installer->getChecks());
|
|
|
|
throw new RuntimeException($errorMessage);
|
2018-04-18 11:43:23 +02:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out(" Complete!\n\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-05-13 12:50:53 +02:00
|
|
|
// Install theme
|
|
|
|
$this->out("Installing theme\n");
|
2018-07-07 23:46:30 +02:00
|
|
|
if (!empty(Config::get('system', 'theme'))) {
|
|
|
|
Theme::install(Config::get('system', 'theme'));
|
2018-05-13 12:50:53 +02:00
|
|
|
$this->out(" Complete\n\n");
|
|
|
|
} else {
|
2018-11-25 07:44:09 +01:00
|
|
|
$this->out(" Theme setting is empty. Please check the file 'config/local.config.php'\n\n");
|
2018-05-13 12:50:53 +02:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("\nInstallation is finished\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-14 10:00:05 +01:00
|
|
|
* @param Installer $installer The Installer instance
|
|
|
|
* @param Config\Cache\IConfigCache $configCache The config cache
|
2018-10-29 18:44:39 +01:00
|
|
|
*
|
|
|
|
* @return bool true if checks were successfully, otherwise false
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-04-18 11:43:23 +02:00
|
|
|
*/
|
2019-03-14 10:00:05 +01:00
|
|
|
private function runBasicChecks(Installer $installer, Config\Cache\IConfigCache $configCache)
|
2018-04-18 11:43:23 +02:00
|
|
|
{
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = true;
|
|
|
|
|
2018-10-30 11:30:19 +01:00
|
|
|
$installer->resetChecks();
|
|
|
|
if (!$installer->checkFunctions()) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = false;
|
|
|
|
}
|
2018-10-30 11:30:19 +01:00
|
|
|
if (!$installer->checkImagick()) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = false;
|
|
|
|
}
|
2018-10-30 11:30:19 +01:00
|
|
|
if (!$installer->checkLocalIni()) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = false;
|
|
|
|
}
|
2018-10-30 11:30:19 +01:00
|
|
|
if (!$installer->checkSmarty3()) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = false;
|
|
|
|
}
|
2018-10-30 11:30:19 +01:00
|
|
|
if (!$installer->checkKeys()) {
|
2018-10-29 18:44:39 +01:00
|
|
|
$checked = false;
|
|
|
|
}
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2019-03-26 22:04:31 +01:00
|
|
|
$php_path = $configCache->get('config', 'php_path');
|
2018-10-30 11:30:19 +01:00
|
|
|
|
|
|
|
if (!$installer->checkPHP($php_path, true)) {
|
|
|
|
$checked = false;
|
2018-04-18 11:43:23 +02:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out(" NOTICE: Not checking .htaccess/URL-Rewrite during CLI installation.\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-10-29 18:44:39 +01:00
|
|
|
return $checked;
|
2018-04-18 11:43:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $results
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-04-18 14:30:42 +02:00
|
|
|
private function extractErrors($results)
|
2018-04-18 11:43:23 +02:00
|
|
|
{
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
}
|