summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2021-01-23 16:53:17 -0500
committerGravatar GitHub <noreply@github.com> 2021-01-23 22:53:17 +0100
commit297d188a4689f5803fb91282f85646d5823b7e7e (patch)
tree10f09fec795ca55e12c28a10999eb80462fabec4
parentd061e63fa5cd5414542eee47fda6ee596b8561dd (diff)
Refactor requirement check in install (#3368)
I've extracted the template in the check requirement to ensure that future modifications will be easier.
-rw-r--r--app/install.php123
1 files changed, 27 insertions, 96 deletions
diff --git a/app/install.php b/app/install.php
index 5e75fe42c..cfd47910a 100644
--- a/app/install.php
+++ b/app/install.php
@@ -362,108 +362,39 @@ function printStep0() {
<?php
}
+function printStep1Template($key, $value, $messageParams = []) {
+ $message = _t("install.check.{$key}.{$value}", ...$messageParams);
+ if ('ok' === $value) {
+ ?><p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= $message ?></p><?php
+ } else {
+ ?><p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= $message ?></p><?php
+ }
+}
+
// @todo refactor this view with the check_install action
function printStep1() {
$res = checkRequirements();
?>
<noscript><p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.attention') ?></span> <?= _t('install.javascript_is_better') ?></p></noscript>
- <?php if ($res['php'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.php.ok', PHP_VERSION) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.php.nok', PHP_VERSION, FRESHRSS_MIN_PHP_VERSION) ?></p>
- <?php } ?>
-
- <?php if ($res['pdo'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.pdo.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.pdo.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['curl'] == 'ok') { ?>
- <?php $version = curl_version(); ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.curl.ok', $version['version']) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.curl.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['json'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.json.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.json.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['pcre'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.pcre.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.pcre.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['ctype'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.ctype.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.ctype.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['dom'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.dom.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.dom.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['xml'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.xml.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.xml.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['mbstring'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.mbstring.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.mbstring.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['fileinfo'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.fileinfo.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.fileinfo.nok') ?></p>
- <?php } ?>
-
- <?php if ($res['data'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.data.ok', DATA_PATH) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.data.nok', DATA_PATH) ?></p>
- <?php } ?>
-
- <?php if ($res['cache'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.cache.ok', CACHE_PATH) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.cache.nok', CACHE_PATH) ?></p>
- <?php } ?>
-
- <?php if ($res['tmp'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.tmp.ok', TMP_PATH) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.tmp.nok', TMP_PATH) ?></p>
- <?php } ?>
-
- <?php if ($res['users'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.users.ok', USERS_PATH) ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.users.nok', USERS_PATH) ?></p>
- <?php } ?>
-
- <?php if ($res['favicons'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.favicons.ok', DATA_PATH . '/favicons') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.favicons.nok', DATA_PATH . '/favicons') ?></p>
- <?php } ?>
-
- <?php if ($res['http_referer'] == 'ok') { ?>
- <p class="alert alert-success"><span class="alert-head"><?= _t('gen.short.ok') ?></span> <?= _t('install.check.http_referer.ok') ?></p>
- <?php } else { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.check.http_referer.nok') ?></p>
- <?php } ?>
+ <?php
+ printStep1Template('php', $res['php'], [PHP_VERSION, FRESHRSS_MIN_PHP_VERSION]);
+ printStep1Template('pdo', $res['pdo']);
+ printStep1Template('curl', $res['curl'], [$version['version']]);
+ printStep1Template('json', $res['json']);
+ printStep1Template('pcre', $res['pcre']);
+ printStep1Template('ctype', $res['ctype']);
+ printStep1Template('dom', $res['dom']);
+ printStep1Template('xml', $res['xml']);
+ printStep1Template('mbstring', $res['mbstring']);
+ printStep1Template('fileinfo', $res['fileinfo']);
+ printStep1Template('data', $res['data'], [DATA_PATH]);
+ printStep1Template('cache', $res['cache'], [CACHE_PATH]);
+ printStep1Template('tmp', $res['tmp'], [TMP_PATH]);
+ printStep1Template('users', $res['users'], [USERS_PATH]);
+ printStep1Template('favicons', $res['favicons'], [DATA_PATH . '/favicons']);
+ printStep1Template('http_referer', $res['http_referer']);
+ ?>
<?php if (freshrss_already_installed() && $res['all'] == 'ok') { ?>
<p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.attention') ?></span> <?= _t('install.check.already_installed') ?></p>