]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Install.php
API: Fixed the bookmarking
[friendica.git] / src / Module / Install.php
index fe4a19d4b697a2c8026f69bee7535832f86e7c43..09025ff493dfb4e865b52ac17813ef3b5c99e71e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -31,7 +31,9 @@ use Friendica\Core\Theme;
 use Friendica\DI;
 use Friendica\Network\HTTPException;
 use Friendica\Util\BasePath;
+use Friendica\Util\Profiler;
 use Friendica\Util\Temporal;
+use Psr\Log\LoggerInterface;
 
 class Install extends BaseModule
 {
@@ -65,21 +67,18 @@ class Install extends BaseModule
         * @var Core\Installer The installer
         */
        private $installer;
-       
+
        /** @var App */
        protected $app;
        /** @var App\Mode */
        protected $mode;
-       /** @var App\BaseURL */
-       protected $baseUrl;
 
-       public function __construct(App $app, App\Mode $mode, App\BaseURL $baseUrl, App\Arguments $args, Core\Installer $installer, L10n $l10n, array $parameters = [])
+       public function __construct(App $app, App\Mode $mode, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, Core\Installer $installer, array $server, array $parameters = [])
        {
-               parent::__construct($l10n, $parameters);
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
 
                $this->app       = $app;
                $this->mode      = $mode;
-               $this->baseUrl   = $baseUrl;
                $this->installer = $installer;
 
                if (!$this->mode->isInstall()) {
@@ -105,7 +104,7 @@ class Install extends BaseModule
                $this->currentWizardStep = ($_POST['pass'] ?? '') ?: self::SYSTEM_CHECK;
        }
 
-       public function post()
+       protected function post(array $request = [])
        {
                $configCache = $this->app->getConfigCache();
 
@@ -187,13 +186,13 @@ class Install extends BaseModule
                }
        }
 
-       public function content(): string
+       protected function content(array $request = []): string
        {
                $configCache = $this->app->getConfigCache();
 
                $output = '';
 
-               $install_title = $this->l10n->t('Friendica Communications Server - Setup');
+               $install_title = $this->t('Friendica Communications Server - Setup');
 
                switch ($this->currentWizardStep) {
                        case self::SYSTEM_CHECK:
@@ -204,53 +203,53 @@ class Install extends BaseModule
                                $tpl    = Renderer::getMarkupTemplate('install_checks.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
                                        '$title'       => $install_title,
-                                       '$pass'        => $this->l10n->t('System check'),
-                                       '$required'    => $this->l10n->t('Required'),
-                                       '$requirement_not_satisfied' => $this->l10n->t('Requirement not satisfied'),
-                                       '$optional_requirement_not_satisfied' => $this->l10n->t('Optional requirement not satisfied'),
-                                       '$ok'          => $this->l10n->t('OK'),
+                                       '$pass'        => $this->t('System check'),
+                                       '$required'    => $this->t('Required'),
+                                       '$requirement_not_satisfied' => $this->t('Requirement not satisfied'),
+                                       '$optional_requirement_not_satisfied' => $this->t('Optional requirement not satisfied'),
+                                       '$ok'          => $this->t('OK'),
                                        '$checks'      => $this->installer->getChecks(),
                                        '$passed'      => $status,
-                                       '$see_install' => $this->l10n->t('Please see the file "doc/INSTALL.md".'),
-                                       '$next'        => $this->l10n->t('Next'),
-                                       '$reload'      => $this->l10n->t('Check again'),
+                                       '$see_install' => $this->t('Please see the file "doc/INSTALL.md".'),
+                                       '$next'        => $this->t('Next'),
+                                       '$reload'      => $this->t('Check again'),
                                        '$php_path'    => $php_path,
                                ]);
                                break;
 
                        case self::BASE_CONFIG:
                                $ssl_choices = [
-                                       App\BaseURL::SSL_POLICY_NONE     => $this->l10n->t("No SSL policy, links will track page SSL state"),
-                                       App\BaseURL::SSL_POLICY_FULL     => $this->l10n->t("Force all links to use SSL"),
-                                       App\BaseURL::SSL_POLICY_SELFSIGN => $this->l10n->t("Self-signed certificate, use SSL for local links only \x28discouraged\x29")
+                                       App\BaseURL::SSL_POLICY_NONE     => $this->t("No SSL policy, links will track page SSL state"),
+                                       App\BaseURL::SSL_POLICY_FULL     => $this->t("Force all links to use SSL"),
+                                       App\BaseURL::SSL_POLICY_SELFSIGN => $this->t("Self-signed certificate, use SSL for local links only \x28discouraged\x29")
                                ];
 
                                $tpl    = Renderer::getMarkupTemplate('install_base.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
                                        '$title'      => $install_title,
-                                       '$pass'       => $this->l10n->t('Base settings'),
+                                       '$pass'       => $this->t('Base settings'),
                                        '$ssl_policy' => ['system-ssl_policy',
-                                               $this->l10n->t("SSL link policy"),
+                                               $this->t("SSL link policy"),
                                                $configCache->get('system', 'ssl_policy'),
-                                               $this->l10n->t("Determines whether generated links should be forced to use SSL"),
+                                               $this->t("Determines whether generated links should be forced to use SSL"),
                                                $ssl_choices],
                                        '$hostname'   => ['config-hostname',
-                                               $this->l10n->t('Host name'),
+                                               $this->t('Host name'),
                                                $configCache->get('config', 'hostname'),
-                                               $this->l10n->t('Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'),
-                                               $this->l10n->t('Required')],
+                                               $this->t('Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'),
+                                               $this->t('Required')],
                                        '$basepath'   => ['system-basepath',
-                                               $this->l10n->t("Base path to installation"),
+                                               $this->t("Base path to installation"),
                                                $configCache->get('system', 'basepath'),
-                                               $this->l10n->t("If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."),
-                                               $this->l10n->t('Required')],
+                                               $this->t("If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."),
+                                               $this->t('Required')],
                                        '$urlpath'    => ['system-urlpath',
-                                               $this->l10n->t('Sub path of the URL'),
+                                               $this->t('Sub path of the URL'),
                                                $configCache->get('system', 'urlpath'),
-                                               $this->l10n->t('Overwrite this field in case the sub path determination isn\'t right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path.'),
+                                               $this->t('Overwrite this field in case the sub path determination isn\'t right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path.'),
                                                ''],
                                        '$php_path'   => $configCache->get('config', 'php_path'),
-                                       '$submit'     => $this->l10n->t('Submit'),
+                                       '$submit'     => $this->t('Submit'),
                                ]);
                                break;
 
@@ -258,41 +257,41 @@ class Install extends BaseModule
                                $tpl    = Renderer::getMarkupTemplate('install_db.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
                                        '$title'      => $install_title,
-                                       '$pass'       => $this->l10n->t('Database connection'),
-                                       '$info_01'    => $this->l10n->t('In order to install Friendica we need to know how to connect to your database.'),
-                                       '$info_02'    => $this->l10n->t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
-                                       '$info_03'    => $this->l10n->t('The database you specify below should already exist. If it does not, please create it before continuing.'),
-                                       '$required'   => $this->l10n->t('Required'),
-                                       '$requirement_not_satisfied' => $this->l10n->t('Requirement not satisfied'),
+                                       '$pass'       => $this->t('Database connection'),
+                                       '$info_01'    => $this->t('In order to install Friendica we need to know how to connect to your database.'),
+                                       '$info_02'    => $this->t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
+                                       '$info_03'    => $this->t('The database you specify below should already exist. If it does not, please create it before continuing.'),
+                                       '$required'   => $this->t('Required'),
+                                       '$requirement_not_satisfied' => $this->t('Requirement not satisfied'),
                                        '$checks'     => $this->installer->getChecks(),
                                        '$hostname'   => $configCache->get('config', 'hostname'),
                                        '$ssl_policy' => $configCache->get('system', 'ssl_policy'),
                                        '$basepath'   => $configCache->get('system', 'basepath'),
                                        '$urlpath'    => $configCache->get('system', 'urlpath'),
                                        '$dbhost'     => ['database-hostname',
-                                               $this->l10n->t('Database Server Name'),
+                                               $this->t('Database Server Name'),
                                                $configCache->get('database', 'hostname'),
                                                '',
-                                               $this->l10n->t('Required')],
+                                               $this->t('Required')],
                                        '$dbuser'     => ['database-username',
-                                               $this->l10n->t('Database Login Name'),
+                                               $this->t('Database Login Name'),
                                                $configCache->get('database', 'username'),
                                                '',
-                                               $this->l10n->t('Required'),
+                                               $this->t('Required'),
                                                'autofocus'],
                                        '$dbpass'     => ['database-password',
-                                               $this->l10n->t('Database Login Password'),
+                                               $this->t('Database Login Password'),
                                                $configCache->get('database', 'password'),
-                                               $this->l10n->t("For security reasons the password must not be empty"),
-                                               $this->l10n->t('Required')],
+                                               $this->t("For security reasons the password must not be empty"),
+                                               $this->t('Required')],
                                        '$dbdata'     => ['database-database',
-                                               $this->l10n->t('Database Name'),
+                                               $this->t('Database Name'),
                                                $configCache->get('database', 'database'),
                                                '',
-                                               $this->l10n->t('Required')],
-                                       '$lbl_10'     => $this->l10n->t('Please select a default timezone for your website'),
+                                               $this->t('Required')],
+                                       '$lbl_10'     => $this->t('Please select a default timezone for your website'),
                                        '$php_path'   => $configCache->get('config', 'php_path'),
-                                       '$submit'     => $this->l10n->t('Submit')
+                                       '$submit'     => $this->t('Submit')
                                ]);
                                break;
 
@@ -303,9 +302,9 @@ class Install extends BaseModule
                                $tpl    = Renderer::getMarkupTemplate('install_settings.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
                                        '$title'      => $install_title,
-                                       '$required'   => $this->l10n->t('Required'),
+                                       '$required'   => $this->t('Required'),
                                        '$checks'     => $this->installer->getChecks(),
-                                       '$pass'       => $this->l10n->t('Site settings'),
+                                       '$pass'       => $this->t('Site settings'),
                                        '$hostname'   => $configCache->get('config', 'hostname'),
                                        '$ssl_policy' => $configCache->get('system', 'ssl_policy'),
                                        '$basepath'   => $configCache->get('system', 'basepath'),
@@ -315,21 +314,21 @@ class Install extends BaseModule
                                        '$dbpass'     => $configCache->get('database', 'password'),
                                        '$dbdata'     => $configCache->get('database', 'database'),
                                        '$adminmail'  => ['config-admin_email',
-                                               $this->l10n->t('Site administrator email address'),
+                                               $this->t('Site administrator email address'),
                                                $configCache->get('config', 'admin_email'),
-                                               $this->l10n->t('Your account email address must match this in order to use the web admin panel.'),
-                                               $this->l10n->t('Required'), 'autofocus', 'email'],
+                                               $this->t('Your account email address must match this in order to use the web admin panel.'),
+                                               $this->t('Required'), 'autofocus', 'email'],
                                        '$timezone'   => Temporal::getTimezoneField('system-default_timezone',
-                                               $this->l10n->t('Please select a default timezone for your website'),
+                                               $this->t('Please select a default timezone for your website'),
                                                $configCache->get('system', 'default_timezone'),
                                                ''),
                                        '$language'   => ['system-language',
-                                               $this->l10n->t('System Language:'),
+                                               $this->t('System Language:'),
                                                $configCache->get('system', 'language'),
-                                               $this->l10n->t('Set the default language for your Friendica installation interface and to send emails.'),
+                                               $this->t('Set the default language for your Friendica installation interface and to send emails.'),
                                                $lang_choices],
                                        '$php_path'   => $configCache->get('config', 'php_path'),
-                                       '$submit'     => $this->l10n->t('Submit')
+                                       '$submit'     => $this->t('Submit')
                                ]);
                                break;
 
@@ -338,17 +337,17 @@ class Install extends BaseModule
 
                                if (count($this->installer->getChecks()) == 0) {
                                        $txt            = '<p style="font-size: 130%;">';
-                                       $txt            .= $this->l10n->t('Your Friendica site database has been installed.') . EOL;
+                                       $txt            .= $this->t('Your Friendica site database has been installed.') . EOL;
                                        $db_return_text .= $txt;
                                }
 
                                $tpl    = Renderer::getMarkupTemplate('install_finished.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
                                        '$title'    => $install_title,
-                                       '$required' => $this->l10n->t('Required'),
-                                       '$requirement_not_satisfied' => $this->l10n->t('Requirement not satisfied'),
+                                       '$required' => $this->t('Required'),
+                                       '$requirement_not_satisfied' => $this->t('Requirement not satisfied'),
                                        '$checks'   => $this->installer->getChecks(),
-                                       '$pass'     => $this->l10n->t('Installation finished'),
+                                       '$pass'     => $this->t('Installation finished'),
                                        '$text'     => $db_return_text . $this->whatNext(),
                                ]);
 
@@ -368,11 +367,11 @@ class Install extends BaseModule
        {
                $baseurl = $this->baseUrl->get();
                return
-                       $this->l10n->t('<h1>What next</h1>')
-                       . "<p>" . $this->l10n->t('IMPORTANT: You will need to [manually] setup a scheduled task for the worker.')
-                       . $this->l10n->t('Please see the file "doc/INSTALL.md".')
+                       $this->t('<h1>What next</h1>')
+                       . "<p>" . $this->t('IMPORTANT: You will need to [manually] setup a scheduled task for the worker.')
+                       . $this->t('Please see the file "doc/INSTALL.md".')
                        . "</p><p>"
-                       . $this->l10n->t('Go to your new Friendica node <a href="%s/register">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.', $baseurl)
+                       . $this->t('Go to your new Friendica node <a href="%s/register">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.', $baseurl)
                        . "</p>";
        }
 
@@ -385,12 +384,21 @@ class Install extends BaseModule
         * @param string                                   $key         The key of the setting
         * @param null|string                              $default     The default value
         */
-       private function checkSetting(Cache $configCache, array $post, $cat, $key, $default = null)
+       private function checkSetting(Cache $configCache, array $post, string $cat, string $key, ?string $default = null)
        {
-               $configCache->set($cat, $key,
-                       trim(($post[sprintf('%s-%s', $cat, $key)] ?? '') ?:
-                                       ($default ?? $configCache->get($cat, $key))
-                       )
-               );
+               $value = null;
+
+               if (isset($post[sprintf('%s-%s', $cat, $key)])) {
+                       $value = trim($post[sprintf('%s-%s', $cat, $key)]);
+               }
+
+               if (isset($value)) {
+                       $configCache->set($cat, $key, $value, Cache::SOURCE_ENV);
+                       return;
+               }
+
+               if (isset($default)) {
+                       $configCache->set($cat, $key, $default, Cache::SOURCE_ENV);
+               }
        }
 }