]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Install.php
Adding basepath, urlpath, hostname and ssl_policy to installation
[friendica.git] / src / Module / Install.php
index 09de23c080acb399b0a43fcd7f5e48e386408f8e..67677940f3ab7d12792cdc5bcbe756203c93d6c3 100644 (file)
@@ -4,11 +4,13 @@ namespace Friendica\Module;
 
 use Friendica\App;
 use Friendica\BaseModule;
-use Friendica\Database\DBA;
-use Friendica\Database\DBStructure;
 use Friendica\Core;
+use Friendica\Core\Config\Cache\IConfigCache;
 use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
+use Friendica\Util\BasePath;
+use Friendica\Util\BaseURL;
+use Friendica\Util\Strings;
 use Friendica\Util\Temporal;
 
 class Install extends BaseModule
@@ -18,17 +20,21 @@ class Install extends BaseModule
         */
        const SYSTEM_CHECK = 1;
        /**
-        * Step two - Database configuration
+        * Step two - Base information
         */
-       const DATABASE_CONFIG = 2;
+       const BASE_CONFIG = 2;
        /**
-        * Step three - Adapat site settings
+        * Step three - Database configuration
         */
-       const SITE_SETTINGS = 3;
+       const DATABASE_CONFIG = 3;
        /**
-        * Step four - All steps finished
+        * Step four - Adapat site settings
         */
-       const FINISHED = 4;
+       const SITE_SETTINGS = 4;
+       /**
+        * Step five - All steps finished
+        */
+       const FINISHED = 5;
 
        /**
         * @var int The current step of the wizard
@@ -51,60 +57,87 @@ class Install extends BaseModule
                        Core\System::httpExit(204);
                }
 
+               self::$installer = new Core\Installer();
+
+               // get basic installation information and save them to the config cache
+               $configCache = $a->getConfigCache();
+               self::$installer->setUpCache($configCache, BasePath::create($a->getBasePath(), $_SERVER));
+
                // We overwrite current theme css, because during install we may not have a working mod_rewrite
                // so we may not have a css at all. Here we set a static css file for the install procedure pages
                Renderer::$theme['stylesheet'] = $a->getBaseURL() . '/view/install/style.css';
 
-               self::$installer = new Core\Installer();
                self::$currentWizardStep = defaults($_POST, 'pass', self::SYSTEM_CHECK);
        }
 
        public static function post()
        {
                $a = self::getApp();
+               $configCache = $a->getConfigCache();
 
                switch (self::$currentWizardStep) {
                        case self::SYSTEM_CHECK:
+                       case self::BASE_CONFIG:
+                               self::checkSetting($configCache, $_POST, 'config', 'php_path');
+                               break;
+
                        case self::DATABASE_CONFIG:
-                               // Nothing to do in these steps
+                               self::checkSetting($configCache, $_POST, 'config', 'php_path');
+
+                               self::checkSetting($configCache, $_POST, 'config', 'hostname');
+                               self::checkSetting($configCache, $_POST, 'system', 'ssl_policy');
+                               self::checkSetting($configCache, $_POST, 'system', 'basepath');
+                               self::checkSetting($configCache, $_POST, 'system', 'urlpath');
                                break;
 
                        case self::SITE_SETTINGS:
-                               $dbhost  = notags(trim(defaults($_POST, 'dbhost', Core\Installer::DEFAULT_HOST)));
-                               $dbuser  = notags(trim(defaults($_POST, 'dbuser', '')));
-                               $dbpass  = notags(trim(defaults($_POST, 'dbpass', '')));
-                               $dbdata  = notags(trim(defaults($_POST, 'dbdata', '')));
+                               self::checkSetting($configCache, $_POST, 'config', 'php_path');
+
+                               self::checkSetting($configCache, $_POST, 'config', 'hostname');
+                               self::checkSetting($configCache, $_POST, 'system', 'ssl_policy');
+                               self::checkSetting($configCache, $_POST, 'system', 'basepath');
+                               self::checkSetting($configCache, $_POST, 'system', 'urlpath');
+
+                               self::checkSetting($configCache, $_POST, 'database', 'hostname', Core\Installer::DEFAULT_HOST);
+                               self::checkSetting($configCache, $_POST, 'database', 'username', '');
+                               self::checkSetting($configCache, $_POST, 'database', 'password', '');
+                               self::checkSetting($configCache, $_POST, 'database', 'database', '');
 
                                // If we cannot connect to the database, return to the previous step
-                               if (!self::$installer->checkDB($dbhost, $dbuser, $dbpass, $dbdata)) {
+                               if (!self::$installer->checkDB($configCache, $a->getProfiler())) {
                                        self::$currentWizardStep = self::DATABASE_CONFIG;
                                }
 
                                break;
 
                        case self::FINISHED:
-                               $urlpath   = $a->getURLPath();
-                               $dbhost    = notags(trim(defaults($_POST, 'dbhost', Core\Installer::DEFAULT_HOST)));
-                               $dbuser    = notags(trim(defaults($_POST, 'dbuser', '')));
-                               $dbpass    = notags(trim(defaults($_POST, 'dbpass', '')));
-                               $dbdata    = notags(trim(defaults($_POST, 'dbdata', '')));
-                               $timezone  = notags(trim(defaults($_POST, 'timezone', Core\Installer::DEFAULT_TZ)));
-                               $language  = notags(trim(defaults($_POST, 'language', Core\Installer::DEFAULT_LANG)));
-                               $adminmail = notags(trim(defaults($_POST, 'adminmail', '')));
+                               self::checkSetting($configCache, $_POST, 'config', 'php_path');
+
+                               self::checkSetting($configCache, $_POST, 'config', 'hostname');
+                               self::checkSetting($configCache, $_POST, 'system', 'ssl_policy');
+                               self::checkSetting($configCache, $_POST, 'system', 'basepath');
+                               self::checkSetting($configCache, $_POST, 'system', 'urlpath');
+
+                               self::checkSetting($configCache, $_POST, 'database', 'hostname', Core\Installer::DEFAULT_HOST);
+                               self::checkSetting($configCache, $_POST, 'database', 'username', '');
+                               self::checkSetting($configCache, $_POST, 'database', 'password', '');
+                               self::checkSetting($configCache, $_POST, 'database', 'database', '');
+
+                               self::checkSetting($configCache, $_POST, 'system', 'default_timezone', Core\Installer::DEFAULT_TZ);
+                               self::checkSetting($configCache, $_POST, 'system', 'language', Core\Installer::DEFAULT_LANG);
+                               self::checkSetting($configCache, $_POST, 'config', 'admin_email', '');
 
                                // If we cannot connect to the database, return to the Database config wizard
-                               if (!self::$installer->checkDB($dbhost, $dbuser, $dbpass, $dbdata)) {
+                               if (!self::$installer->checkDB($configCache, $a->getProfiler())) {
                                        self::$currentWizardStep = self::DATABASE_CONFIG;
                                        return;
                                }
 
-                               $phpath = self::$installer->getPHPPath();
-
-                               if (!self::$installer->createConfig($phpath, $urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $timezone, $language, $adminmail, $a->getBasePath())) {
+                               if (!self::$installer->createConfig($configCache)) {
                                        return;
                                }
 
-                               self::$installer->installDatabase();
+                               self::$installer->installDatabase($configCache->get('system', 'basepath'));
 
                                break;
                }
@@ -113,92 +146,111 @@ class Install extends BaseModule
        public static function content()
        {
                $a = self::getApp();
+               $configCache = $a->getConfigCache();
 
                $output = '';
 
-               $install_title = L10n::t('Friendica Communctions Server - Setup');
+               $install_title = L10n::t('Friendica Communications Server - Setup');
 
                switch (self::$currentWizardStep) {
                        case self::SYSTEM_CHECK:
-                               $phppath = defaults($_POST, 'phpath', null);
+                               $php_path = $configCache->get('config', 'php_path');
 
-                               $status = self::$installer->checkEnvironment($a->getBaseURL(), $phppath);
+                               $status = self::$installer->checkEnvironment($a->getBaseURL(), $php_path);
 
                                $tpl = Renderer::getMarkupTemplate('install_checks.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
-                                       '$title'                => $install_title,
-                                       '$pass'                 => L10n::t('System check'),
-                                       '$checks'               => self::$installer->getChecks(),
-                                       '$passed'               => $status,
-                                       '$see_install'  => L10n::t('Please see the file "Install.txt".'),
-                                       '$next'                 => L10n::t('Next'),
-                                       '$reload'               => L10n::t('Check again'),
-                                       '$phpath'               => $phppath,
-                                       '$baseurl'              => $a->getBaseURL()
+                                       '$title'        => $install_title,
+                                       '$pass'         => L10n::t('System check'),
+                                       '$checks'       => self::$installer->getChecks(),
+                                       '$passed'       => $status,
+                                       '$see_install'  => L10n::t('Please see the file "INSTALL.txt".'),
+                                       '$next'         => L10n::t('Next'),
+                                       '$reload'       => L10n::t('Check again'),
+                                       '$php_path'     => $php_path,
+                                       '$baseurl'      => $a->getBaseURL()
                                ]);
                                break;
 
-                       case self::DATABASE_CONFIG:
-                               $dbhost    = notags(trim(defaults($_POST, 'dbhost'   , Core\Installer::DEFAULT_HOST)));
-                               $dbuser    = notags(trim(defaults($_POST, 'dbuser'   , ''                          )));
-                               $dbpass    = notags(trim(defaults($_POST, 'dbpass'   , ''                          )));
-                               $dbdata    = notags(trim(defaults($_POST, 'dbdata'   , ''                          )));
-                               $phpath    = notags(trim(defaults($_POST, 'phpath'   , ''                          )));
-                               $adminmail = notags(trim(defaults($_POST, 'adminmail', ''                          )));
+                       case self::BASE_CONFIG:
+                               $ssl_choices = [
+                                       BaseUrl::SSL_POLICY_NONE     => L10n::t("No SSL policy, links will track page SSL state"),
+                                       BaseUrl::SSL_POLICY_FULL     => L10n::t("Force all links to use SSL"),
+                                       BaseUrl::SSL_POLICY_SELFSIGN => L10n::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'       => L10n::t('Base settings'),
+                                       '$ssl_policy' => ['system-ssl_policy',
+                                                                               L10n::t("SSL link policy"),
+                                                                               $configCache->get('system', 'ssl_policy'),
+                                                                               L10n::t("Determines whether generated links should be forced to use SSL"),
+                                                                               $ssl_choices],
+                                       '$hostname'   => ['config-hostname',
+                                                                               L10n::t('Host name'),
+                                                                               $configCache->get('config', 'hostname'),
+                                                                               L10n::t('Overwrite this field in case the determinated hostname isn\'t right, otherweise leave it as is.'),
+                                                                               'required'],
+                                       '$basepath'   => ['system-basepath',
+                                                                               L10n::t("Base path to installation"),
+                                                                               $configCache->get('system', 'basepath'),
+                                                                               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."),
+                                                                               'required'],
+                                       '$urlpath'    => ['system-urlpath',
+                                                                               L10n::t('Sub path of the URL'),
+                                                                               $configCache->get('system', 'urlpath'),
+                                                                               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.'),
+                                                                               ''],
+                                       '$baseurl'    => $a->getBaseURL(),
+                                       '$php_path'   => $configCache->get('config', 'php_path'),
+                                       '$submit'     => L10n::t('Submit'),
+                               ]);
+                               break;
 
+                       case self::DATABASE_CONFIG:
                                $tpl = Renderer::getMarkupTemplate('install_db.tpl');
                                $output .= Renderer::replaceMacros($tpl, [
-                                       '$title'        => $install_title,
-                                       '$pass'         => L10n::t('Database connection'),
-                                       '$info_01'      => L10n::t('In order to install Friendica we need to know how to connect to your database.'),
-                                       '$info_02'      => L10n::t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
-                                       '$info_03'      => L10n::t('The database you specify below should already exist. If it does not, please create it before continuing.'),
-                                       'checks'        => self::$installer->getChecks(),
-                                       '$dbhost'       => ['dbhost',
+                                       '$title'    => $install_title,
+                                       '$pass'     => L10n::t('Database connection'),
+                                       '$info_01'  => L10n::t('In order to install Friendica we need to know how to connect to your database.'),
+                                       '$info_02'  => L10n::t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
+                                       '$info_03'  => L10n::t('The database you specify below should already exist. If it does not, please create it before continuing.'),
+                                       'checks'    => self::$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',
                                                                        L10n::t('Database Server Name'),
-                                                                       $dbhost,
+                                                                       $configCache->get('database', 'hostname'),
                                                                        '',
                                                                        'required'],
-                                       '$dbuser'       => ['dbuser',
+                                       '$dbuser'   => ['database-username',
                                                                        L10n::t('Database Login Name'),
-                                                                       $dbuser,
+                                                                       $configCache->get('database', 'username'),
                                                                        '',
                                                                        'required',
                                                                        'autofocus'],
-                                       '$dbpass'       => ['dbpass',
+                                       '$dbpass'   => ['database-password',
                                                                        L10n::t('Database Login Password'),
-                                                                       $dbpass,
+                                                                       $configCache->get('database', 'password'),
                                                                        L10n::t("For security reasons the password must not be empty"),
                                                                        'required'],
-                                       '$dbdata'       => ['dbdata',
+                                       '$dbdata'   => ['database-database',
                                                                        L10n::t('Database Name'),
-                                                                       $dbdata,
+                                                                       $configCache->get('database', 'database'),
                                                                        '',
                                                                        'required'],
-                                       '$adminmail' => ['adminmail',
-                                                                       L10n::t('Site administrator email address'),
-                                                                       $adminmail,
-                                                                       L10n::t('Your account email address must match this in order to use the web admin panel.'),
-                                                                       'required',
-                                                                       'autofocus',
-                                                                       'email'],
-                                       '$lbl_10'       => L10n::t('Please select a default timezone for your website'),
-                                       '$baseurl'      => $a->getBaseURL(),
-                                       '$phpath'       => $phpath,
-                                       '$submit'       => L10n::t('Submit')
+                                       '$lbl_10'   => L10n::t('Please select a default timezone for your website'),
+                                       '$baseurl'  => $a->getBaseURL(),
+                                       '$php_path' => $configCache->get('config', 'php_path'),
+                                       '$submit'   => L10n::t('Submit')
                                ]);
                                break;
 
                        case self::SITE_SETTINGS:
-                               $dbhost = notags(trim(defaults($_POST, 'dbhost', Core\Installer::DEFAULT_HOST)));
-                               $dbuser = notags(trim(defaults($_POST, 'dbuser', ''                          )));
-                               $dbpass = notags(trim(defaults($_POST, 'dbpass', ''                          )));
-                               $dbdata = notags(trim(defaults($_POST, 'dbdata', ''                          )));
-                               $phpath = notags(trim(defaults($_POST, 'phpath', ''                          )));
-
-                               $adminmail = notags(trim(defaults($_POST, 'adminmail', '')));
-
-                               $timezone = defaults($_POST, 'timezone', Core\Installer::DEFAULT_TZ);
                                /* Installed langs */
                                $lang_choices = L10n::getAvailableLanguages();
 
@@ -207,19 +259,30 @@ class Install extends BaseModule
                                        '$title'                => $install_title,
                                        '$checks'               => self::$installer->getChecks(),
                                        '$pass'                 => L10n::t('Site settings'),
-                                       '$dbhost'               => $dbhost,
-                                       '$dbuser'               => $dbuser,
-                                       '$dbpass'               => $dbpass,
-                                       '$dbdata'               => $dbdata,
-                                       '$phpath'               => $phpath,
-                                       '$adminmail'    => ['adminmail', L10n::t('Site administrator email address'), $adminmail, L10n::t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'],
-                                       '$timezone'     => Temporal::getTimezoneField('timezone', L10n::t('Please select a default timezone for your website'), $timezone, ''),
-                                       '$language'     => ['language',
+                                       '$hostname'     => $configCache->get('config', 'hostname'),
+                                       '$ssl_policy'   => $configCache->get('system', 'ssl_policy'),
+                                       '$basepath'     => $configCache->get('system', 'basepath'),
+                                       '$urlpath'      => $configCache->get('system', 'urlpath'),
+                                       '$dbhost'               => $configCache->get('database', 'hostname'),
+                                       '$dbuser'               => $configCache->get('database', 'username'),
+                                       '$dbpass'               => $configCache->get('database', 'password'),
+                                       '$dbdata'               => $configCache->get('database', 'database'),
+                                       '$adminmail'    => ['config-admin_email',
+                                                                               L10n::t('Site administrator email address'),
+                                                                               $configCache->get('config', 'admin_email'),
+                                                                               L10n::t('Your account email address must match this in order to use the web admin panel.'),
+                                                                               'required', 'autofocus', 'email'],
+                                       '$timezone'     => Temporal::getTimezoneField('system-default_timezone',
+                                                                               L10n::t('Please select a default timezone for your website'),
+                                                                               $configCache->get('system', 'default_timezone'),
+                                                                       ''),
+                                       '$language'     => ['system-language',
                                                                                L10n::t('System Language:'),
-                                                                               Core\Installer::DEFAULT_LANG,
+                                                                               $configCache->get('system', 'language'),
                                                                                L10n::t('Set the default language for your Friendica installation interface and to send emails.'),
                                                                                $lang_choices],
                                        '$baseurl'              => $a->getBaseURL(),
+                                       '$php_path' => $configCache->get('config', 'php_path'),
                                        '$submit'               => L10n::t('Submit')
                                ]);
                                break;
@@ -253,6 +316,7 @@ class Install extends BaseModule
         * @param App $a The global App
         *
         * @return string The text for the next steps
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        private static function whatNext($a)
        {
@@ -265,4 +329,24 @@ class Install extends BaseModule
                        . 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)
                        . "</p>";
        }
+
+       /**
+        * Checks the $_POST settings and updates the config Cache for it
+        *
+        * @param IConfigCache $configCache The current config cache
+        * @param array        $post        The $_POST data
+        * @param string       $cat         The category of the setting
+        * @param string       $key         The key of the setting
+        * @param null|string  $default     The default value
+        */
+       private static function checkSetting(IConfigCache $configCache, array $post, $cat, $key, $default = null)
+       {
+               $configCache->set($cat, $key,
+                       Strings::escapeTags(
+                               trim(defaults($post, sprintf('%s-%s', $cat, $key),
+                                               (!isset($default) ? $configCache->get($cat, $key) : $default))
+                               )
+                       )
+               );
+       }
 }