2018-04-18 11:43:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Console;
|
|
|
|
|
|
|
|
use Asika\SimpleConsole\Console;
|
|
|
|
use Friendica\App;
|
2018-08-20 22:15:39 +02:00
|
|
|
use Friendica\BaseObject;
|
2018-07-07 23:46:30 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-04-23 22:56:59 +02:00
|
|
|
use Friendica\Core\Install;
|
2018-05-13 12:50:53 +02:00
|
|
|
use Friendica\Core\Theme;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-07 23:46:30 +02:00
|
|
|
use RuntimeException;
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
require_once 'mod/install.php';
|
2018-04-29 18:11:24 +02:00
|
|
|
require_once 'include/dba.php';
|
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-08-20 22:15:39 +02:00
|
|
|
Installs Friendica with data based on the local.ini.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-08-20 22:15:39 +02:00
|
|
|
-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)
|
2018-08-27 06:15:55 +02:00
|
|
|
-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)
|
2018-08-20 22:15:39 +02:00
|
|
|
-b|--phppath <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
|
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
|
2018-08-20 22:15:39 +02:00
|
|
|
FRIENDICA_PHP_PATH The path of the PHP binary
|
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
|
|
|
|
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
|
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-08-20 22:15:39 +02:00
|
|
|
// if a config file is set,
|
|
|
|
$config_file = $this->getOption(['f', 'file']);
|
|
|
|
|
|
|
|
if (!empty($config_file)) {
|
2018-08-27 06:15:55 +02:00
|
|
|
if ($config_file != 'config' . DIRECTORY_SEPARATOR . 'local.ini.php') {
|
2018-08-20 22:15:39 +02:00
|
|
|
// Copy config file
|
|
|
|
$this->out("Copying config file...\n");
|
2018-08-27 06:15:55 +02:00
|
|
|
if (!copy($a->basepath . DIRECTORY_SEPARATOR . $config_file, $a->basepath . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.ini.php')) {
|
|
|
|
throw new RuntimeException("ERROR: Saving config file failed. Please copy '$config_file' to '$a->basepath" . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "local.ini.php' manually.\n");
|
2018-08-20 22:15:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$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);
|
|
|
|
|
2018-08-27 06:15:55 +02:00
|
|
|
$db_host = $this->getOption(['H', 'dbhost'], ($save_db) ? getenv('MYSQL_HOST') : '');
|
2018-08-20 22:15:39 +02:00
|
|
|
$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') : '');
|
|
|
|
$php_path = $this->getOption(['b', 'phppath'], (!empty('FRIENDICA_PHP_PATH')) ? getenv('FRIENDICA_PHP_PATH') : '');
|
|
|
|
$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') : '');
|
|
|
|
|
|
|
|
Install::createConfig(
|
|
|
|
$php_path,
|
2018-08-27 06:15:55 +02:00
|
|
|
((!empty($db_port)) ? $db_host . ':' . $db_port : $db_host),
|
2018-08-20 22:15:39 +02:00
|
|
|
$db_user,
|
|
|
|
$db_pass,
|
|
|
|
$db_data,
|
|
|
|
$php_path,
|
|
|
|
$tz,
|
|
|
|
$lang,
|
|
|
|
$admin_mail
|
|
|
|
);
|
|
|
|
}
|
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 basic setup
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("Checking basic setup...\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
$checkResults = [];
|
|
|
|
$checkResults['basic'] = $this->runBasicChecks($a);
|
|
|
|
$errorMessage = $this->extractErrors($checkResults['basic']);
|
|
|
|
|
|
|
|
if ($errorMessage !== '') {
|
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
|
|
|
|
|
|
|
// Check database connection
|
2018-04-18 14:30:42 +02:00
|
|
|
$this->out("Checking database...\n");
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
$checkResults['db'] = array();
|
|
|
|
$checkResults['db'][] = $this->runDatabaseCheck($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
$errorMessage = $this->extractErrors($checkResults['db']);
|
|
|
|
|
|
|
|
if ($errorMessage !== '') {
|
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-04-29 18:11:24 +02:00
|
|
|
$checkResults['data'] = Install::installDatabaseStructure();
|
2018-04-18 11:43:23 +02:00
|
|
|
|
|
|
|
if ($checkResults['data'] !== '') {
|
2018-07-07 23:46:30 +02:00
|
|
|
throw new RuntimeException("ERROR: DB Database creation error. Is the DB empty?\n");
|
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-08-20 22:15:39 +02:00
|
|
|
$this->out(" Theme setting is empty. Please check the file 'config/local.ini.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param App $app
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-04-18 14:30:42 +02:00
|
|
|
private function runBasicChecks($app)
|
2018-04-18 11:43:23 +02:00
|
|
|
{
|
|
|
|
$checks = [];
|
|
|
|
|
2018-04-23 22:56:59 +02:00
|
|
|
Install::checkFunctions($checks);
|
2018-04-29 18:11:24 +02:00
|
|
|
Install::checkImagick($checks);
|
2018-06-28 05:06:23 +02:00
|
|
|
Install::checkLocalIni($checks);
|
2018-04-23 22:56:59 +02:00
|
|
|
Install::checkSmarty3($checks);
|
|
|
|
Install::checkKeys($checks);
|
2018-04-18 11:43:23 +02:00
|
|
|
|
2018-07-07 23:46:30 +02:00
|
|
|
if (!empty(Config::get('config', 'php_path'))) {
|
|
|
|
Install::checkPHP(Config::get('config', 'php_path'), $checks);
|
2018-04-18 11:43:23 +02:00
|
|
|
} else {
|
2018-07-07 23:46:30 +02:00
|
|
|
throw new RuntimeException(" ERROR: The php_path is not set in the config.\n");
|
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
|
|
|
|
|
|
|
return $checks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $db_host
|
|
|
|
* @param $db_user
|
|
|
|
* @param $db_pass
|
|
|
|
* @param $db_data
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-04-18 14:30:42 +02:00
|
|
|
private function runDatabaseCheck($db_host, $db_user, $db_pass, $db_data)
|
2018-04-18 11:43:23 +02:00
|
|
|
{
|
|
|
|
$result = array(
|
|
|
|
'title' => 'MySQL Connection',
|
|
|
|
'required' => true,
|
|
|
|
'status' => true,
|
|
|
|
'help' => '',
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
if (!DBA::connect($db_host, $db_user, $db_pass, $db_data)) {
|
2018-04-18 11:43:23 +02:00
|
|
|
$result['status'] = false;
|
|
|
|
$result['help'] = 'Failed, please check your MySQL settings and credentials.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
}
|