summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-07-20 22:20:36 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-07-20 22:20:36 +0200
commit4479924a50e90d6c9cfd5c98df59cbb18c110ba9 (patch)
tree9a0e9b95122544edfa57a6adab36eefe28b14558
parent9ae33f4fd6938c9f9070f15babdb6fc6252c81c0 (diff)
parent3c35cdd7b7e8353d10cd299e19a23e528ad51280 (diff)
Merge pull request #913 from marienfressinaud/909-install-skip-steps
Skip steps during installation
-rw-r--r--app/i18n/cz/install.php6
-rw-r--r--app/i18n/de/install.php6
-rw-r--r--app/i18n/en/install.php6
-rw-r--r--app/i18n/fr/install.php6
-rw-r--r--app/install.php110
5 files changed, 128 insertions, 6 deletions
diff --git a/app/i18n/cz/install.php b/app/i18n/cz/install.php
index 53257c84f..cca717513 100644
--- a/app/i18n/cz/install.php
+++ b/app/i18n/cz/install.php
@@ -4,7 +4,9 @@ return array(
'action' => array(
'finish' => 'Dokončit instalaci',
'fix_errors_before' => 'Chyby prosím před přechodem na další krok opravte.',
+ 'keep_install' => 'Keep previous installation', // TODO: translate
'next_step' => 'Přejít na další krok',
+ 'reinstall' => 'Reinstall FreshRSS', // TODO: translate
),
'auth' => array(
'email_persona' => 'Email pro přihlášení<br /><small>(pro <a href="https://persona.org/" rel="external">Mozilla Persona</a>)</small>',
@@ -31,6 +33,7 @@ return array(
),
'check' => array(
'_' => 'Kontrola',
+ 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO: translate
'cache' => array(
'nok' => 'Zkontrolujte oprávnění adresáře <em>./data/cache</em>. HTTP server musí mít do tohoto adresáře práva zápisu',
'ok' => 'Oprávnění adresáře cache jsou v pořádku.',
@@ -93,6 +96,9 @@ return array(
'delete_articles_after' => 'Smazat články starší než',
'fix_errors_before' => 'Chyby prosím před přechodem na další krok opravte.',
'javascript_is_better' => 'Práce s FreshRSS je příjemnější se zapnutým JavaScriptem',
+ 'js' => array(
+ 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO: translate
+ ),
'language' => array(
'_' => 'Jazyk',
'choose' => 'Vyberte jazyk FreshRSS',
diff --git a/app/i18n/de/install.php b/app/i18n/de/install.php
index a5899bb52..222c65b32 100644
--- a/app/i18n/de/install.php
+++ b/app/i18n/de/install.php
@@ -4,7 +4,9 @@ return array(
'action' => array(
'finish' => 'Installation fertigstellen',
'fix_errors_before' => 'Bitte Fehler korrigieren, bevor zum nächsten Schritt gesprungen wird.',
+ 'keep_install' => 'Keep previous installation', // TODO: translate
'next_step' => 'Zum nächsten Schritt springen',
+ 'reinstall' => 'Reinstall FreshRSS', // TODO: translate
),
'auth' => array(
'email_persona' => 'Anmelde-E-Mail-Adresse<br /><small>(für <a href="https://persona.org/" rel="external">Mozilla Persona</a>)</small>',
@@ -31,6 +33,7 @@ return array(
),
'check' => array(
'_' => 'Überprüfungen',
+ 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO: translate
'cache' => array(
'nok' => 'Überprüfen Sie die Berechtigungen des Verzeichnisses <em>./data/cache</em>. Der HTTP-Server muss Schreibrechte besitzen.',
'ok' => 'Die Berechtigungen des Verzeichnisses <em>./data/cache</em> sind in Ordnung.',
@@ -93,6 +96,9 @@ return array(
'delete_articles_after' => 'Entferne Artikel nach',
'fix_errors_before' => 'Bitte den Fehler korrigieren, bevor zum nächsten Schritt gesprungen wird.',
'javascript_is_better' => 'FreshRSS ist ansprechender mit aktiviertem JavaScript',
+ 'js' => array(
+ 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO: translate
+ ),
'language' => array(
'_' => 'Sprache',
'choose' => 'Wählen Sie eine Sprache für FreshRSS',
diff --git a/app/i18n/en/install.php b/app/i18n/en/install.php
index d4137309a..b94fbc299 100644
--- a/app/i18n/en/install.php
+++ b/app/i18n/en/install.php
@@ -4,7 +4,9 @@ return array(
'action' => array(
'finish' => 'Complete installation',
'fix_errors_before' => 'Please fix errors before skipping to the next step.',
+ 'keep_install' => 'Keep previous installation',
'next_step' => 'Go to the next step',
+ 'reinstall' => 'Reinstall FreshRSS',
),
'auth' => array(
'email_persona' => 'Login email address<br /><small>(for <a href="https://persona.org/" rel="external">Mozilla Persona</a>)</small>',
@@ -31,6 +33,7 @@ return array(
),
'check' => array(
'_' => 'Checks',
+ 'already_installed' => 'We have detected that FreshRSS is already installed!',
'cache' => array(
'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have rights to write into',
'ok' => 'Permissions on cache directory are good.',
@@ -93,6 +96,9 @@ return array(
'delete_articles_after' => 'Remove articles after',
'fix_errors_before' => 'Please fix errors before skipping to the next step.',
'javascript_is_better' => 'FreshRSS is more pleasant with JavaScript enabled',
+ 'js' => array(
+ 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?',
+ ),
'language' => array(
'_' => 'Language',
'choose' => 'Choose a language for FreshRSS',
diff --git a/app/i18n/fr/install.php b/app/i18n/fr/install.php
index 245a20c56..0401e1bbd 100644
--- a/app/i18n/fr/install.php
+++ b/app/i18n/fr/install.php
@@ -4,7 +4,9 @@ return array(
'action' => array(
'finish' => 'Terminer l’installation',
'fix_errors_before' => 'Veuillez corriger les erreurs avant de passer à l’étape suivante.',
+ 'keep_install' => 'Garder l’ancienne configuration',
'next_step' => 'Passer à l’étape suivante',
+ 'reinstall' => 'Réinstaller FreshRSS',
),
'auth' => array(
'email_persona' => 'Adresse courriel de connexion<br /><small>(pour <a href="https://persona.org/" rel="external">Mozilla Persona</a>)</small>',
@@ -31,6 +33,7 @@ return array(
),
'check' => array(
'_' => 'Vérifications',
+ 'already_installed' => 'FreshRSS semble avoir déjà été installé !',
'cache' => array(
'nok' => 'Veuillez vérifier les droits sur le répertoire <em>./data/cache</em>. Le serveur HTTP doit être capable d’écrire dedans',
'ok' => 'Les droits sur le répertoire de cache sont bons.',
@@ -93,6 +96,9 @@ return array(
'delete_articles_after' => 'Supprimer les articles après',
'fix_errors_before' => 'Veuillez corriger les erreurs avant de passer à l’étape suivante.',
'javascript_is_better' => 'FreshRSS est plus agréable à utiliser avec JavaScript activé',
+ 'js' => array(
+ 'confirm_reinstall' => 'Réinstaller FreshRSS vous fera perdre la configuration précédente. Êtes-vous sûr de vouloir continuer ?',
+ ),
'language' => array(
'_' => 'Langue',
'choose' => 'Choisissez la langue pour FreshRSS',
diff --git a/app/install.php b/app/install.php
index 745629aa7..ebd785f65 100644
--- a/app/install.php
+++ b/app/install.php
@@ -9,8 +9,8 @@ session_name('FreshRSS');
session_set_cookie_params(0, dirname(empty($_SERVER['REQUEST_URI']) ? '/' : dirname($_SERVER['REQUEST_URI'])), null, false, true);
session_start();
-Minz_Configuration::register('system', DATA_PATH . '/config.default.php');
-Minz_Configuration::register('user', USERS_PATH . '/_/config.default.php');
+Minz_Configuration::register('default_system', join_path(DATA_PATH, 'config.default.php'));
+Minz_Configuration::register('default_user', join_path(USERS_PATH, '_', 'config.default.php'));
if (isset($_GET['step'])) {
define('STEP',(int)$_GET['step']);
@@ -79,8 +79,48 @@ function saveLanguage() {
}
}
+function saveStep1() {
+ if (isset($_POST['freshrss-keep-install']) &&
+ $_POST['freshrss-keep-install'] === '1') {
+ // We want to keep our previous installation of FreshRSS
+ // so we need to make next steps valid by setting $_SESSION vars
+ // with values from the previous installation
+
+ // First, we try to get previous configurations
+ Minz_Configuration::register('system',
+ join_path(DATA_PATH, 'config.php'),
+ join_path(DATA_PATH, 'config.default.php'));
+ $system_conf = Minz_Configuration::get('system');
+
+ $current_user = $system_conf->default_user;
+ Minz_Configuration::register('user',
+ join_path(USERS_PATH, $current_user, 'config.php'),
+ join_path(USERS_PATH, '_', 'config.default.php'));
+ $user_conf = Minz_Configuration::get('user');
+
+ // Then, we set $_SESSION vars
+ $_SESSION['title'] = $system_conf->title;
+ $_SESSION['auth_type'] = $system_conf->auth_type;
+ $_SESSION['old_entries'] = $user_conf->old_entries;
+ $_SESSION['mail_login'] = $user_conf->mail_login;
+ $_SESSION['default_user'] = $current_user;
+ $_SESSION['passwordHash'] = $user_conf->passwordHash;
+
+ $db = $system_conf->db;
+ $_SESSION['bd_type'] = $db['type'];
+ $_SESSION['bd_host'] = $db['host'];
+ $_SESSION['bd_user'] = $db['user'];
+ $_SESSION['bd_password'] = $db['password'];
+ $_SESSION['bd_base'] = $db['base'];
+ $_SESSION['bd_prefix'] = $db['prefix'];
+ $_SESSION['bd_error'] = '';
+
+ header('Location: index.php?step=4');
+ }
+}
+
function saveStep2() {
- $user_default_config = Minz_Configuration::get('user');
+ $user_default_config = Minz_Configuration::get('default_user');
if (!empty($_POST)) {
$_SESSION['title'] = substr(trim(param('title', _t('gen.freshrss'))), 0, 25);
$_SESSION['old_entries'] = param('old_entries', $user_default_config->old_entries);
@@ -302,6 +342,33 @@ function checkStep1() {
);
}
+function freshrss_already_installed() {
+ $conf_path = join_path(DATA_PATH, 'config.php');
+ if (!file_exists($conf_path)) {
+ return false;
+ }
+
+ // A configuration file already exists, we try to load it.
+ $system_conf = null;
+ try {
+ Minz_Configuration::register('system', $conf_path);
+ $system_conf = Minz_Configuration::get('system');
+ } catch (Minz_FileNotExistException $e) {
+ return false;
+ }
+
+ // ok, the global conf exists... but what about default user conf?
+ $current_user = $system_conf->default_user;
+ try {
+ Minz_Configuration::register('user', join_path(USERS_PATH, $current_user, 'config.php'));
+ } catch (Minz_FileNotExistException $e) {
+ return false;
+ }
+
+ // ok, ok, default user exists too!
+ return true;
+}
+
function checkStep2() {
$conf = !empty($_SESSION['title']) &&
!empty($_SESSION['old_entries']) &&
@@ -537,7 +604,37 @@ function printStep1() {
<p class="alert alert-error"><span class="alert-head"><?php echo _t('gen.short.damn'); ?></span> <?php echo _t('install.check.http_referer.nok'); ?></p>
<?php } ?>
- <?php if ($res['all'] == 'ok') { ?>
+ <?php if (freshrss_already_installed() && $res['all'] == 'ok') { ?>
+ <p class="alert alert-warn"><span class="alert-head"><?php echo _t('gen.short.attention'); ?></span> <?php echo _t('install.check.already_installed'); ?></p>
+
+ <form action="index.php?step=1" method="post">
+ <input type="hidden" name="freshrss-keep-install" value="1" />
+ <button type="submit" class="btn btn-important next-step" tabindex="1" ><?php echo _t('install.action.keep_install'); ?></button>
+ <a class="btn btn-attention next-step confirm" data-str-confirm="<?php echo _t('install.js.confirm_reinstall'); ?>" href="?step=2" tabindex="2" ><?php echo _t('install.action.reinstall'); ?></a>
+ </form>
+
+ <script>
+ function ask_confirmation(e) {
+ var str_confirmation = this.getAttribute('data-str-confirm');
+ if (!str_confirmation) {
+ str_confirmation = "<?php echo _t('gen.js.confirm_action'); ?>";
+ }
+
+ if (!confirm(str_confirmation)) {
+ e.preventDefault();
+ }
+ }
+
+ function init_confirm() {
+ confirms = document.getElementsByClassName('confirm');
+ for (var i = 0 ; i < confirms.length ; i++) {
+ confirms[i].addEventListener('click', ask_confirmation);
+ }
+ }
+
+ init_confirm();
+ </script>
+ <?php } elseif ($res['all'] == 'ok') { ?>
<a class="btn btn-important next-step" href="?step=2" tabindex="1" ><?php echo _t('install.action.next_step'); ?></a>
<?php } else { ?>
<p class="alert alert-error"><?php echo _t('install.action.fix_errors_before'); ?></p>
@@ -546,7 +643,7 @@ function printStep1() {
}
function printStep2() {
- $user_default_config = Minz_Configuration::get('user');
+ $user_default_config = Minz_Configuration::get('default_user');
?>
<?php $s2 = checkStep2(); if ($s2['all'] == 'ok') { ?>
<p class="alert alert-success"><span class="alert-head"><?php echo _t('gen.short.ok'); ?></span> <?php echo _t('install.conf.ok'); ?></p>
@@ -672,7 +769,7 @@ function printStep2() {
}
function printStep3() {
- $system_default_config = Minz_Configuration::get('system');
+ $system_default_config = Minz_Configuration::get('default_system');
?>
<?php $s3 = checkStep3(); if ($s3['all'] == 'ok') { ?>
<p class="alert alert-success"><span class="alert-head"><?php echo _t('gen.short.ok'); ?></span> <?php echo _t('install.bdd.conf.ok'); ?></p>
@@ -788,6 +885,7 @@ default:
saveLanguage();
break;
case 1:
+ saveStep1();
break;
case 2:
saveStep2();