3 * @file src/Core/Install.php
5 namespace Friendica\Core;
9 use Friendica\Core\Config\Cache\ConfigCache;
10 use Friendica\Database\Database;
11 use Friendica\Database\DBStructure;
12 use Friendica\Util\Images;
13 use Friendica\Util\Network;
14 use Friendica\Util\Strings;
17 * Contains methods for installation purpose of Friendica
21 // Default values for the install page
22 const DEFAULT_LANG = 'en';
23 const DEFAULT_TZ = 'America/Los_Angeles';
24 const DEFAULT_HOST = 'localhost';
27 * @var array the check outcomes
32 * @var string The path to the PHP binary
34 private $phppath = null;
37 * Returns all checks made
39 * @return array the checks
41 public function getChecks()
47 * Returns the PHP path
49 * @return string the PHP Path
50 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
52 public function getPHPPath()
54 // if not set, determine the PHP path
55 if (!isset($this->phppath)) {
60 return $this->phppath;
66 public function resetChecks()
72 * Install constructor.
75 public function __construct()
81 * Checks the current installation environment. There are optional and mandatory checks.
83 * @param string $baseurl The baseurl of Friendica
84 * @param string $phpath Optional path to the PHP binary
86 * @return bool if the check succeed
87 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
89 public function checkEnvironment($baseurl, $phpath = null)
94 if (!$this->checkPHP($phpath)) {
99 if (!$this->checkFunctions()) {
103 if (!$this->checkImagick()) {
107 if (!$this->checkLocalIni()) {
111 if (!$this->checkSmarty3()) {
115 if (!$this->checkKeys()) {
119 if (!$this->checkHtAccess($baseurl)) {
127 * Executes the installation of Friendica in the given environment.
128 * - Creates `config/local.config.php`
129 * - Installs Database Structure
131 * @param ConfigCache $configCache The config cache with all config relevant information
133 * @return bool true if the config was created, otherwise false
134 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
136 public function createConfig(ConfigCache $configCache)
138 $basepath = $configCache->get('system', 'basepath');
140 $tpl = Renderer::getMarkupTemplate('local.config.tpl');
141 $txt = Renderer::replaceMacros($tpl, [
142 '$dbhost' => $configCache->get('database', 'hostname'),
143 '$dbuser' => $configCache->get('database', 'username'),
144 '$dbpass' => $configCache->get('database', 'password'),
145 '$dbdata' => $configCache->get('database', 'database'),
147 '$phpath' => $configCache->get('config', 'php_path'),
148 '$adminmail' => $configCache->get('config', 'admin_email'),
149 '$hostname' => $configCache->get('config', 'hostname'),
151 '$urlpath' => $configCache->get('system', 'urlpath'),
152 '$baseurl' => $configCache->get('system', 'url'),
153 '$sslpolicy' => $configCache->get('system', 'ssl_policy'),
154 '$basepath' => $basepath,
155 '$timezone' => $configCache->get('system', 'default_timezone'),
156 '$language' => $configCache->get('system', 'language'),
159 $result = file_put_contents($basepath . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.config.php', $txt);
162 $this->addCheck(L10n::t('The database configuration file "config/local.config.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'), false, false, htmlentities($txt, ENT_COMPAT, 'UTF-8'));
169 * Installs the DB-Scheme for Friendica
171 * @param string $basePath The base path of this application
173 * @return bool true if the installation was successful, otherwise false
176 public function installDatabase($basePath)
178 $result = DBStructure::update($basePath, false, true, true);
181 $txt = L10n::t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
182 $txt .= L10n::t('Please see the file "INSTALL.txt".');
184 $this->addCheck($txt, false, true, htmlentities($result, ENT_COMPAT, 'UTF-8'));
193 * Adds new checks to the array $checks
195 * @param string $title The title of the current check
196 * @param bool $status 1 = check passed, 0 = check not passed
197 * @param bool $required 1 = check is mandatory, 0 = check is optional
198 * @param string $help A help-string for the current check
199 * @param string $error_msg Optional. A error message, if the current check failed
201 private function addCheck($title, $status, $required, $help, $error_msg = "")
203 array_push($this->checks, [
206 'required' => $required,
208 'error_msg' => $error_msg,
215 * Checks the PHP environment.
217 * - Checks if a PHP binary is available
218 * - Checks if it is the CLI version
219 * - Checks if "register_argc_argv" is enabled
221 * @param string $phppath Optional. The Path to the PHP-Binary
222 * @param bool $required Optional. If set to true, the PHP-Binary has to exist (Default false)
224 * @return bool false if something required failed
225 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
227 public function checkPHP($phppath = null, $required = false)
231 if (!isset($phppath)) {
235 $passed = file_exists($phppath);
237 $phppath = trim(shell_exec('which ' . $phppath));
238 $passed = strlen($phppath);
243 $help .= L10n::t('Could not find a command line version of PHP in the web server PATH.') . EOL;
244 $help .= L10n::t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . EOL;
246 $tpl = Renderer::getMarkupTemplate('field_input.tpl');
247 /// @todo Separate backend Installer class and presentation layer/view
248 $help .= Renderer::replaceMacros($tpl, [
249 '$field' => ['config-php_path', L10n::t('PHP executable path'), $phppath, L10n::t('Enter full path to php executable. You can leave this blank to continue the installation.')],
254 $this->addCheck(L10n::t('Command line PHP') . ($passed ? " (<tt>$phppath</tt>)" : ""), $passed, false, $help);
257 $cmd = "$phppath -v";
258 $result = trim(shell_exec($cmd));
259 $passed2 = (strpos($result, "(cli)") !== false);
260 list($result) = explode("\n", $result);
263 $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL;
264 $help .= L10n::t('Found PHP version: ') . "<tt>$result</tt>";
266 $this->addCheck(L10n::t('PHP cli binary'), $passed2, true, $help);
268 // return if it was required
273 $str = Strings::getRandomName(8);
274 $cmd = "$phppath bin/testargs.php $str";
275 $result = trim(shell_exec($cmd));
276 $passed3 = $result == $str;
279 $help .= L10n::t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;
280 $help .= L10n::t('This is required for message delivery to work.');
282 $this->phppath = $phppath;
285 $this->addCheck(L10n::t('PHP register_argc_argv'), $passed3, true, $help);
288 // passed2 & passed3 are required if first check passed
289 return $passed2 && $passed3;
295 * Checks the OpenSSL Environment
297 * - Checks, if the command "openssl_pkey_new" is available
299 * @return bool false if something required failed
301 public function checkKeys()
307 if (function_exists('openssl_pkey_new')) {
308 $res = openssl_pkey_new([
309 'digest_alg' => 'sha1',
310 'private_key_bits' => 4096,
311 'encrypt_key' => false
317 $help .= L10n::t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;
318 $help .= L10n::t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".');
321 $this->addCheck(L10n::t('Generate encryption keys'), $res, true, $help);
327 * PHP basic function check
329 * @param string $name The name of the function
330 * @param string $title The (localized) title of the function
331 * @param string $help The (localized) help of the function
332 * @param boolean $required If true, this check is required
334 * @return bool false, if the check failed
336 private function checkFunction($name, $title, $help, $required)
340 if (!function_exists($name)) {
344 $this->addCheck($title, $status, $required, $currHelp);
346 return $status || (!$status && !$required);
350 * PHP functions Check
352 * Checks the following PHP functions
363 * @return bool false if something required failed
365 public function checkFunctions()
371 if (function_exists('apache_get_modules')) {
372 if (!in_array('mod_rewrite', apache_get_modules())) {
373 $help = L10n::t('Error: Apache webserver mod-rewrite module is required but not installed.');
378 $this->addCheck(L10n::t('Apache mod_rewrite module'), $status, true, $help);
382 if (!function_exists('mysqli_connect') && !class_exists('pdo')) {
384 $help = L10n::t('Error: PDO or MySQLi PHP module required but not installed.');
387 if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', \PDO::getAvailableDrivers())) {
389 $help = L10n::t('Error: The MySQL driver for PDO is not installed.');
393 $this->addCheck(L10n::t('PDO or MySQLi PHP module'), $status, true, $help);
395 // check for XML DOM Documents being able to be generated
400 } catch (Exception $e) {
401 $help = L10n::t('Error, XML PHP module required but not installed.');
405 $this->addCheck(L10n::t('XML PHP module'), $status, true, $help);
407 $status = $this->checkFunction('curl_init',
408 L10n::t('libCurl PHP module'),
409 L10n::t('Error: libCURL PHP module required but not installed.'),
412 $returnVal = $returnVal ? $status : false;
414 $status = $this->checkFunction('imagecreatefromjpeg',
415 L10n::t('GD graphics PHP module'),
416 L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.'),
419 $returnVal = $returnVal ? $status : false;
421 $status = $this->checkFunction('openssl_public_encrypt',
422 L10n::t('OpenSSL PHP module'),
423 L10n::t('Error: openssl PHP module required but not installed.'),
426 $returnVal = $returnVal ? $status : false;
428 $status = $this->checkFunction('mb_strlen',
429 L10n::t('mb_string PHP module'),
430 L10n::t('Error: mb_string PHP module required but not installed.'),
433 $returnVal = $returnVal ? $status : false;
435 $status = $this->checkFunction('iconv_strlen',
436 L10n::t('iconv PHP module'),
437 L10n::t('Error: iconv PHP module required but not installed.'),
440 $returnVal = $returnVal ? $status : false;
442 $status = $this->checkFunction('posix_kill',
443 L10n::t('POSIX PHP module'),
444 L10n::t('Error: POSIX PHP module required but not installed.'),
447 $returnVal = $returnVal ? $status : false;
449 $status = $this->checkFunction('json_encode',
450 L10n::t('JSON PHP module'),
451 L10n::t('Error: JSON PHP module required but not installed.'),
454 $returnVal = $returnVal ? $status : false;
456 $status = $this->checkFunction('finfo_open',
457 L10n::t('File Information PHP module'),
458 L10n::t('Error: File Information PHP module required but not installed.'),
461 $returnVal = $returnVal ? $status : false;
467 * "config/local.config.php" - Check
469 * Checks if it's possible to create the "config/local.config.php"
471 * @return bool false if something required failed
473 public function checkLocalIni()
477 if ((file_exists('config/local.config.php') && !is_writable('config/local.config.php')) ||
478 (!file_exists('config/local.config.php') && !is_writable('.'))) {
481 $help = L10n::t('The web installer needs to be able to create a file called "local.config.php" in the "config" folder of your web server and it is unable to do so.') . EOL;
482 $help .= L10n::t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.') . EOL;
483 $help .= L10n::t('At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica "config" folder.') . EOL;
484 $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.') . EOL;
487 $this->addCheck(L10n::t('config/local.config.php is writable'), $status, false, $help);
489 // Local INI File is not required
494 * Smarty3 Template Check
496 * Checks, if the directory of Smarty3 is writable
498 * @return bool false if something required failed
500 public function checkSmarty3()
504 if (!is_writable('view/smarty3')) {
507 $help = L10n::t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . EOL;
508 $help .= L10n::t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder.') . EOL;
509 $help .= L10n::t("Please ensure that the user that your web server runs as \x28e.g. www-data\x29 has write access to this folder.") . EOL;
510 $help .= L10n::t("Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files \x28.tpl\x29 that it contains.") . EOL;
513 $this->addCheck(L10n::t('view/smarty3 is writable'), $status, true, $help);
519 * ".htaccess" - Check
521 * Checks, if "url_rewrite" is enabled in the ".htaccess" file
523 * @param string $baseurl The baseurl of the app
524 * @return bool false if something required failed
525 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
527 public function checkHtAccess($baseurl)
532 if (function_exists('curl_init')) {
533 $fetchResult = Network::fetchUrlFull($baseurl . "/install/testrewrite");
535 $url = Strings::normaliseLink($baseurl . "/install/testrewrite");
536 if ($fetchResult->getReturnCode() != 204) {
537 $fetchResult = Network::fetchUrlFull($url);
540 if ($fetchResult->getReturnCode() != 204) {
542 $help = L10n::t('Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess.');
544 $error_msg['head'] = L10n::t('Error message from Curl when fetching');
545 $error_msg['url'] = $fetchResult->getRedirectUrl();
546 $error_msg['msg'] = $fetchResult->getError();
549 $this->addCheck(L10n::t('Url rewrite is working'), $status, true, $help, $error_msg);
551 // cannot check modrewrite if libcurl is not installed
552 /// @TODO Maybe issue warning here?
561 * Checks, if the imagick module is available
563 * @return bool false if something required failed
565 public function checkImagick()
570 if (class_exists('Imagick')) {
572 $supported = Images::supportedTypes();
573 if (array_key_exists('image/gif', $supported)) {
578 $this->addCheck(L10n::t('ImageMagick PHP extension is not installed'), $imagick, false, "");
580 $this->addCheck(L10n::t('ImageMagick PHP extension is installed'), $imagick, false, "");
582 $this->addCheck(L10n::t('ImageMagick supports GIF'), $gif, false, "");
586 // Imagick is not required
591 * Checking the Database connection and if it is available for the current installation
593 * @param Database $dba
595 * @return bool true if the check was successful, otherwise false
598 public function checkDB(Database $dba)
602 if ($dba->isConnected()) {
603 if (DBStructure::existsTable('user')) {
604 $this->addCheck(L10n::t('Database already in use.'), false, true, '');
609 $this->addCheck(L10n::t('Could not connect to database.'), false, true, '');
618 * Setup the default cache for a new installation
620 * @param ConfigCache $configCache The configuration cache
621 * @param string $basePath The determined basepath
623 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
625 public function setUpCache(ConfigCache $configCache, $basePath)
627 $configCache->set('config', 'php_path' , $this->getPHPPath());
628 $configCache->set('system', 'basepath' , $basePath);