3 * @file src/Core/Install.php
5 namespace Friendica\Core;
9 use Friendica\Core\Config\Cache\IConfigCache;
10 use Friendica\Database\DBStructure;
11 use Friendica\Factory\DBFactory;
12 use Friendica\Object\Image;
13 use Friendica\Util\Logger\VoidLogger;
14 use Friendica\Util\Network;
15 use Friendica\Util\Profiler;
16 use Friendica\Util\Strings;
19 * Contains methods for installation purpose of Friendica
23 // Default values for the install page
24 const DEFAULT_LANG = 'en';
25 const DEFAULT_TZ = 'America/Los_Angeles';
26 const DEFAULT_HOST = 'localhost';
29 * @var array the check outcomes
34 * @var string The path to the PHP binary
36 private $phppath = null;
39 * Returns all checks made
41 * @return array the checks
43 public function getChecks()
49 * Returns the PHP path
51 * @return string the PHP Path
52 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
54 public function getPHPPath()
56 // if not set, determine the PHP path
57 if (!isset($this->phppath)) {
62 return $this->phppath;
68 public function resetChecks()
74 * Install constructor.
77 public function __construct()
83 * Checks the current installation environment. There are optional and mandatory checks.
85 * @param string $baseurl The baseurl of Friendica
86 * @param string $phpath Optional path to the PHP binary
88 * @return bool if the check succeed
89 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
91 public function checkEnvironment($baseurl, $phpath = null)
96 if (!$this->checkPHP($phpath)) {
101 if (!$this->checkFunctions()) {
105 if (!$this->checkImagick()) {
109 if (!$this->checkLocalIni()) {
113 if (!$this->checkSmarty3()) {
117 if (!$this->checkKeys()) {
121 if (!$this->checkHtAccess($baseurl)) {
129 * Executes the installation of Friendica in the given environment.
130 * - Creates `config/local.config.php`
131 * - Installs Database Structure
133 * @param IConfigCache $configCache The config cache with all config relevant information
135 * @return bool true if the config was created, otherwise false
136 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
138 public function createConfig(IConfigCache $configCache)
140 $basepath = $configCache->get('system', 'basepath');
142 $tpl = Renderer::getMarkupTemplate('local.config.tpl');
143 $txt = Renderer::replaceMacros($tpl, [
144 '$dbhost' => $configCache->get('database', 'hostname'),
145 '$dbuser' => $configCache->get('database', 'username'),
146 '$dbpass' => $configCache->get('database', 'password'),
147 '$dbdata' => $configCache->get('database', 'database'),
149 '$phpath' => $configCache->get('config', 'php_path'),
150 '$adminmail' => $configCache->get('config', 'admin_email'),
151 '$hostname' => $configCache->get('config', 'hostname'),
153 '$urlpath' => $configCache->get('system', 'urlpath'),
154 '$baseurl' => $configCache->get('system', 'url'),
155 '$sslpolicy' => $configCache->get('system', 'ssl_policy'),
156 '$basepath' => $basepath,
157 '$timezone' => $configCache->get('system', 'default_timezone'),
158 '$language' => $configCache->get('system', 'language'),
161 $result = file_put_contents($basepath . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.config.php', $txt);
164 $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'));
171 * Installs the DB-Scheme for Friendica
173 * @param string $basePath The base path of this application
175 * @return bool true if the installation was successful, otherwise false
178 public function installDatabase($basePath)
180 $result = DBStructure::update($basePath, false, true, true);
183 $txt = L10n::t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
184 $txt .= L10n::t('Please see the file "INSTALL.txt".');
186 $this->addCheck($txt, false, true, htmlentities($result, ENT_COMPAT, 'UTF-8'));
195 * Adds new checks to the array $checks
197 * @param string $title The title of the current check
198 * @param bool $status 1 = check passed, 0 = check not passed
199 * @param bool $required 1 = check is mandatory, 0 = check is optional
200 * @param string $help A help-string for the current check
201 * @param string $error_msg Optional. A error message, if the current check failed
203 private function addCheck($title, $status, $required, $help, $error_msg = "")
205 array_push($this->checks, [
208 'required' => $required,
210 'error_msg' => $error_msg,
217 * Checks the PHP environment.
219 * - Checks if a PHP binary is available
220 * - Checks if it is the CLI version
221 * - Checks if "register_argc_argv" is enabled
223 * @param string $phppath Optional. The Path to the PHP-Binary
224 * @param bool $required Optional. If set to true, the PHP-Binary has to exist (Default false)
226 * @return bool false if something required failed
227 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
229 public function checkPHP($phppath = null, $required = false)
233 if (!isset($phppath)) {
237 $passed = file_exists($phppath);
239 $phppath = trim(shell_exec('which ' . $phppath));
240 $passed = strlen($phppath);
245 $help .= L10n::t('Could not find a command line version of PHP in the web server PATH.') . EOL;
246 $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;
248 $tpl = Renderer::getMarkupTemplate('field_input.tpl');
249 /// @todo Separate backend Installer class and presentation layer/view
250 $help .= Renderer::replaceMacros($tpl, [
251 '$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.')],
256 $this->addCheck(L10n::t('Command line PHP') . ($passed ? " (<tt>$phppath</tt>)" : ""), $passed, false, $help);
259 $cmd = "$phppath -v";
260 $result = trim(shell_exec($cmd));
261 $passed2 = (strpos($result, "(cli)") !== false);
262 list($result) = explode("\n", $result);
265 $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL;
266 $help .= L10n::t('Found PHP version: ') . "<tt>$result</tt>";
268 $this->addCheck(L10n::t('PHP cli binary'), $passed2, true, $help);
270 // return if it was required
275 $str = Strings::getRandomName(8);
276 $cmd = "$phppath bin/testargs.php $str";
277 $result = trim(shell_exec($cmd));
278 $passed3 = $result == $str;
281 $help .= L10n::t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;
282 $help .= L10n::t('This is required for message delivery to work.');
284 $this->phppath = $phppath;
287 $this->addCheck(L10n::t('PHP register_argc_argv'), $passed3, true, $help);
290 // passed2 & passed3 are required if first check passed
291 return $passed2 && $passed3;
297 * Checks the OpenSSL Environment
299 * - Checks, if the command "openssl_pkey_new" is available
301 * @return bool false if something required failed
303 public function checkKeys()
309 if (function_exists('openssl_pkey_new')) {
310 $res = openssl_pkey_new([
311 'digest_alg' => 'sha1',
312 'private_key_bits' => 4096,
313 'encrypt_key' => false
319 $help .= L10n::t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;
320 $help .= L10n::t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".');
323 $this->addCheck(L10n::t('Generate encryption keys'), $res, true, $help);
329 * PHP basic function check
331 * @param string $name The name of the function
332 * @param string $title The (localized) title of the function
333 * @param string $help The (localized) help of the function
334 * @param boolean $required If true, this check is required
336 * @return bool false, if the check failed
338 private function checkFunction($name, $title, $help, $required)
342 if (!function_exists($name)) {
346 $this->addCheck($title, $status, $required, $currHelp);
348 return $status || (!$status && !$required);
352 * PHP functions Check
354 * Checks the following PHP functions
365 * @return bool false if something required failed
367 public function checkFunctions()
373 if (function_exists('apache_get_modules')) {
374 if (!in_array('mod_rewrite', apache_get_modules())) {
375 $help = L10n::t('Error: Apache webserver mod-rewrite module is required but not installed.');
380 $this->addCheck(L10n::t('Apache mod_rewrite module'), $status, true, $help);
384 if (!function_exists('mysqli_connect') && !class_exists('pdo')) {
386 $help = L10n::t('Error: PDO or MySQLi PHP module required but not installed.');
389 if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', \PDO::getAvailableDrivers())) {
391 $help = L10n::t('Error: The MySQL driver for PDO is not installed.');
395 $this->addCheck(L10n::t('PDO or MySQLi PHP module'), $status, true, $help);
397 // check for XML DOM Documents being able to be generated
402 } catch (Exception $e) {
403 $help = L10n::t('Error, XML PHP module required but not installed.');
407 $this->addCheck(L10n::t('XML PHP module'), $status, true, $help);
409 $status = $this->checkFunction('curl_init',
410 L10n::t('libCurl PHP module'),
411 L10n::t('Error: libCURL PHP module required but not installed.'),
414 $returnVal = $returnVal ? $status : false;
416 $status = $this->checkFunction('imagecreatefromjpeg',
417 L10n::t('GD graphics PHP module'),
418 L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.'),
421 $returnVal = $returnVal ? $status : false;
423 $status = $this->checkFunction('openssl_public_encrypt',
424 L10n::t('OpenSSL PHP module'),
425 L10n::t('Error: openssl PHP module required but not installed.'),
428 $returnVal = $returnVal ? $status : false;
430 $status = $this->checkFunction('mb_strlen',
431 L10n::t('mb_string PHP module'),
432 L10n::t('Error: mb_string PHP module required but not installed.'),
435 $returnVal = $returnVal ? $status : false;
437 $status = $this->checkFunction('iconv_strlen',
438 L10n::t('iconv PHP module'),
439 L10n::t('Error: iconv PHP module required but not installed.'),
442 $returnVal = $returnVal ? $status : false;
444 $status = $this->checkFunction('posix_kill',
445 L10n::t('POSIX PHP module'),
446 L10n::t('Error: POSIX PHP module required but not installed.'),
449 $returnVal = $returnVal ? $status : false;
451 $status = $this->checkFunction('json_encode',
452 L10n::t('JSON PHP module'),
453 L10n::t('Error: JSON PHP module required but not installed.'),
456 $returnVal = $returnVal ? $status : false;
458 $status = $this->checkFunction('finfo_open',
459 L10n::t('File Information PHP module'),
460 L10n::t('Error: File Information PHP module required but not installed.'),
463 $returnVal = $returnVal ? $status : false;
469 * "config/local.config.php" - Check
471 * Checks if it's possible to create the "config/local.config.php"
473 * @return bool false if something required failed
475 public function checkLocalIni()
479 if ((file_exists('config/local.config.php') && !is_writable('config/local.config.php')) ||
480 (!file_exists('config/local.config.php') && !is_writable('.'))) {
483 $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;
484 $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;
485 $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;
486 $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.') . EOL;
489 $this->addCheck(L10n::t('config/local.config.php is writable'), $status, false, $help);
491 // Local INI File is not required
496 * Smarty3 Template Check
498 * Checks, if the directory of Smarty3 is writable
500 * @return bool false if something required failed
502 public function checkSmarty3()
506 if (!is_writable('view/smarty3')) {
509 $help = L10n::t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . EOL;
510 $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;
511 $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;
512 $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;
515 $this->addCheck(L10n::t('view/smarty3 is writable'), $status, true, $help);
521 * ".htaccess" - Check
523 * Checks, if "url_rewrite" is enabled in the ".htaccess" file
525 * @param string $baseurl The baseurl of the app
526 * @return bool false if something required failed
527 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
529 public function checkHtAccess($baseurl)
534 if (function_exists('curl_init')) {
535 $fetchResult = Network::fetchUrlFull($baseurl . "/install/testrewrite");
537 $url = Strings::normaliseLink($baseurl . "/install/testrewrite");
538 if ($fetchResult->getReturnCode() != 204) {
539 $fetchResult = Network::fetchUrlFull($url);
542 if ($fetchResult->getReturnCode() != 204) {
544 $help = L10n::t('Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess.');
546 $error_msg['head'] = L10n::t('Error message from Curl when fetching');
547 $error_msg['url'] = $fetchResult->getRedirectUrl();
548 $error_msg['msg'] = $fetchResult->getError();
551 $this->addCheck(L10n::t('Url rewrite is working'), $status, true, $help, $error_msg);
553 // cannot check modrewrite if libcurl is not installed
554 /// @TODO Maybe issue warning here?
563 * Checks, if the imagick module is available
565 * @return bool false if something required failed
567 public function checkImagick()
572 if (class_exists('Imagick')) {
574 $supported = Image::supportedTypes();
575 if (array_key_exists('image/gif', $supported)) {
580 $this->addCheck(L10n::t('ImageMagick PHP extension is not installed'), $imagick, false, "");
582 $this->addCheck(L10n::t('ImageMagick PHP extension is installed'), $imagick, false, "");
584 $this->addCheck(L10n::t('ImageMagick supports GIF'), $gif, false, "");
588 // Imagick is not required
593 * Checking the Database connection and if it is available for the current installation
595 * @param IConfigCache $configCache The configuration cache
596 * @param Profiler $profiler The profiler of this app
598 * @return bool true if the check was successful, otherwise false
601 public function checkDB(IConfigCache $configCache, Profiler $profiler)
603 $database = DBFactory::init($configCache, $profiler, [], new VoidLogger());
605 if ($database->connected()) {
606 if (DBStructure::existsTable('user')) {
607 $this->addCheck(L10n::t('Database already in use.'), false, true, '');
612 $this->addCheck(L10n::t('Could not connect to database.'), false, true, '');
621 * Setup the default cache for a new installation
623 * @param IConfigCache $configCache The configuration cache
624 * @param string $basePath The determined basepath
626 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
628 public function setUpCache(IConfigCache $configCache, $basePath)
630 $configCache->set('config', 'php_path' , $this->getPHPPath());
631 $configCache->set('system', 'basepath' , $basePath);