openstamanager/include/init/requirements.php

360 lines
11 KiB
PHP
Raw Normal View History

2018-06-27 14:25:19 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2018-06-27 14:25:19 +02:00
// Apache
$modules = [
2018-09-17 18:11:39 +02:00
'mod_rewrite' => [
'server' => 'HTTP_MOD_REWRITE',
'description' => tr('Fornisce un sistema di riscrittura URL basato su regole predefinite'),
],
2018-06-27 14:25:19 +02:00
];
2018-09-17 18:11:39 +02:00
if (function_exists('apache_get_modules')) {
2018-09-14 11:13:38 +02:00
$available_modules = apache_get_modules();
}
2018-06-27 14:25:19 +02:00
$apache = [];
2018-09-17 18:11:39 +02:00
foreach ($modules as $name => $values) {
$description = $values['description'];
$status = isset($available_modules) ? in_array($name, $available_modules) : $_SERVER[$values['server']] == 'On';
2018-06-27 14:25:19 +02:00
$apache[] = [
'name' => $name,
'description' => $description,
'status' => $status,
'type' => tr('Modulo'),
];
}
2022-02-07 13:36:31 +01:00
//PHP
2018-06-27 14:25:19 +02:00
$settings = [
2022-02-07 13:36:31 +01:00
'php_version' => [
'type' => 'version',
2022-08-10 14:41:09 +02:00
'description' => '7.3.x - 8.0.x, consigliato almeno 7.4.x',
'minimum' => '7.3.0',
'maximum' => '8.0.99',
2022-02-07 13:36:31 +01:00
],
2018-06-27 14:25:19 +02:00
'zip' => [
'type' => 'ext',
'description' => tr('Permette di leggere e scrivere gli archivi compressi ZIP e i file al loro interno'),
],
'mbstring' => [
'type' => 'ext',
'description' => tr('Permette di gestire i caratteri dello standard UTF-8'),
],
2018-06-27 14:25:19 +02:00
'pdo_mysql' => [
'type' => 'ext',
'description' => tr('Permette di effettuare la connessione al database MySQL'),
],
2018-12-14 12:58:40 +01:00
'dom' => [
'type' => 'ext',
'description' => tr('Permette la gestione dei file standard per la Fatturazione Elettronica'),
],
'xsl' => [
'type' => 'ext',
'description' => tr('Permette di visualizzazione grafica della Fattura Elettronica'),
],
2018-06-27 14:25:19 +02:00
'openssl' => [
'type' => 'ext',
2018-12-14 12:58:40 +01:00
'description' => tr("Permette l'utilizzo di funzioni crittografiche simmetriche e asimmetriche"),
2018-06-27 14:25:19 +02:00
],
'intl' => [
'type' => 'ext',
2018-12-14 12:58:40 +01:00
'description' => tr("Permette l'automazione della conversione dei numeri"),
2018-06-27 14:25:19 +02:00
],
2018-12-14 12:58:40 +01:00
'curl' => [
2018-10-02 18:21:27 +02:00
'type' => 'ext',
2018-12-14 12:58:40 +01:00
'description' => tr('Permette la comunicazione con servizi esterni'),
2018-10-02 18:21:27 +02:00
],
2018-06-27 14:25:19 +02:00
'soap' => [
'type' => 'ext',
'description' => tr('Permette la comunicazione con servizi esterni, quali il database europeo delle Partite IVA (facoltativo)'),
],
2020-10-28 17:35:52 +01:00
'gd' => [
'type' => 'ext',
'description' => tr('Permette la creazione dell\'immagine della firma per il rapportino d\'intervento (facoltativo)'),
],
2022-10-06 10:41:35 +02:00
'fileinfo' => [
'type' => 'ext',
'description' => tr('Permette la creazione dell\'immagine della firma per il rapportino d\'intervento (facoltativo)'),
],
2018-06-27 14:25:19 +02:00
2018-10-02 18:21:27 +02:00
//'display_errors' => [
// 'type' => 'value',
// 'description' => true,
//],
2018-06-27 14:25:19 +02:00
'upload_max_filesize' => [
'type' => 'value',
2019-05-24 21:49:15 +02:00
'description' => '>32M',
2018-06-27 14:25:19 +02:00
],
2018-06-27 14:25:19 +02:00
'post_max_size' => [
'type' => 'value',
2019-05-24 21:49:15 +02:00
'description' => '>32M',
2018-06-27 14:25:19 +02:00
],
2022-02-07 13:36:31 +01:00
'max_input_vars' => [
'type' => 'value',
'description' => '>5000',
],
2018-06-27 14:25:19 +02:00
];
$php = [];
foreach ($settings as $name => $values) {
$description = $values['description'];
if ($values['type'] == 'version') {
2022-02-07 13:36:31 +01:00
$description = tr('Valore consigliato: _VALUE_ (Valore attuale: _PHP_VERSION_)', [
'_VALUE_' => $description,
'_PHP_VERSION_' => phpversion(),
]);
$status = ((version_compare(phpversion(), $values['minimum'], ">=") && version_compare(phpversion(), $values['maximum'], "<=")) ? 1 : 0);
2022-02-07 13:36:31 +01:00
} elseif ($values['type'] == 'ext') {
2018-06-27 14:25:19 +02:00
$status = extension_loaded($name);
} else {
$ini = str_replace(['k', 'M'], ['000', '000000'], ini_get($name));
$real = str_replace(['k', 'M'], ['000', '000000'], $description);
if (string_starts_with($real, '>')) {
2018-06-27 14:25:19 +02:00
$status = $ini >= substr($real, 1);
} elseif (string_starts_with($real, '<')) {
2018-06-27 14:25:19 +02:00
$status = $ini <= substr($real, 1);
} else {
$status = ($real == $ini);
}
if (is_bool($description)) {
$description = !empty($description) ? 'On' : 'Off';
} else {
$description = str_replace(['>', '<'], '', $description);
}
2018-10-30 22:19:15 +01:00
$description = tr('Valore consigliato: _VALUE_ (Valore attuale: _INI_)', [
2018-06-27 14:25:19 +02:00
'_VALUE_' => $description,
2018-10-30 22:19:15 +01:00
'_INI_' => ini_get($name),
2018-06-27 14:25:19 +02:00
]);
}
$type = ($values['type'] == 'ext') ? tr('Estensione') : tr('Impostazione');
if ($values['type'] == 'ext'){
$type = tr('Estensione');
}elseif ($values['type'] == 'version') {
$type = tr('Versione');
}else{
$type = tr('Impostazione');
}
2018-06-27 14:25:19 +02:00
$php[] = [
'name' => $name,
'description' => $description,
'status' => $status,
'type' => $type,
];
}
// MySQL
2022-03-10 17:29:24 +01:00
if ($database->isInstalled()){
$db = [
2022-03-10 17:29:24 +01:00
'mysql_version' => [
'type' => 'version',
2022-03-10 17:29:24 +01:00
'description' => '5.7.x - 8.0.x',
'minimum' => '5.7.0',
'maximum' => '8.0.99',
],
2022-03-10 17:29:24 +01:00
];
foreach (App::getConfig()['db_options'] as $n => $v){
switch ($n){
case 'sort_buffer_size':
$db[$n] = [
'type' => 'value',
'description' => '>4M',
];
break;
}
}
2022-03-10 17:29:24 +01:00
}
foreach ($db as $name => $values) {
$description = $values['description'];
if ($values['type'] == 'version') {
$type = tr('Versione');
$description = tr('Valore consigliato: _VALUE_ (Valore attuale: _MYSQL_VERSION_)', [
'_VALUE_' => $description,
'_MYSQL_VERSION_' => $database->getMySQLVersion(),
]);
$status = ((version_compare($database->getMySQLVersion(), $values['minimum'], ">=") && version_compare($database->getMySQLVersion(), $values['maximum'], "<=")) ? 1 : 0);
} else{
$type = tr('Impostazione');
$inc = str_replace(['k', 'M'], ['000', '000000'], App::getConfig()['db_options'][$name]);
$real = str_replace(['k', 'M'], ['000', '000000'], $description);
if (string_starts_with($real, '>')) {
$status = $inc >= substr($real, 1);
} elseif (string_starts_with($real, '<')) {
$status = $inc <= substr($real, 1);
} else {
$status = ($real == $inc);
}
if (is_bool($description)) {
$description = !empty($description) ? 'On' : 'Off';
} else {
$description = str_replace(['>', '<'], '', $description);
}
$description = tr('Valore consigliato: _VALUE_ (Valore attuale: _INI_)', [
'_VALUE_' => $description,
'_INI_' => App::getConfig()['db_options'][$name],
]);
}
$mysql[] = [
'name' => $name,
'description' => $description,
'status' => $status,
'type' => $type,
];
}
2018-06-27 14:25:19 +02:00
// Percorsi di servizio
$dirs_to_check = [
2018-06-27 14:25:19 +02:00
'backup' => tr('Necessario per il salvataggio dei backup'),
'files' => tr('Necessario per il salvataggio di file inseriti dagli utenti'),
2022-11-08 18:28:52 +01:00
'files/temp' => tr('Necessario per la generazione delle stampe'),
2018-06-27 14:25:19 +02:00
'logs' => tr('Necessario per la gestione dei file di log'),
];
$directories = [];
foreach ($dirs_to_check as $name => $description) {
$status = is_writable(base_dir().DIRECTORY_SEPARATOR.$name);
2018-06-27 14:25:19 +02:00
$directories[] = [
'name' => $name,
'description' => $description,
'status' => $status,
'type' => tr('Cartella'),
];
}
2022-03-10 17:29:24 +01:00
// File di servizio
$files_to_check = [
'manifest.json' => tr('Necessario per l\'aggiunta a schermata home da terminale'),
'database_5_7.json' => tr('Necessario per il controllo integrità con database MySQL 5.7.x'),
'database.json' => tr('Necessario per il controllo integrità con database MySQL 8.0.x'),
'checksum.json' => tr('Necessario per il controllo integrità dei files del gestionale'),
];
$files = [];
foreach ($files_to_check as $name => $description) {
$status = is_writable(base_dir().DIRECTORY_SEPARATOR.$name);
$files[] = [
'name' => $name,
'description' => $description,
'status' => $status,
'type' => tr('File'),
];
}
2018-06-27 14:25:19 +02:00
$requirements = [
tr('Apache') => $apache,
2022-02-07 13:36:31 +01:00
tr('PHP (_VERSION_ _SUPPORTED_)', [
2018-06-27 14:25:19 +02:00
'_VERSION_' => phpversion(),
'_SUPPORTED_' => ( ( version_compare(phpversion(), $settings['php_version']['minimum'], ">=") && version_compare(phpversion(), $settings['php_version']['maximum'], "<=") ) ? '' : '<small><small class="label label-danger" ><i class="fa fa-warning"></i> '.tr('versioni supportate:').' '.$settings['php_version']['description'].'</small></small>')
2018-06-27 14:25:19 +02:00
]) => $php,
tr('MySQL') => $mysql,
2018-06-27 14:25:19 +02:00
tr('Percorsi di servizio') => $directories,
tr('File di servizio') => $files,
2018-06-27 14:25:19 +02:00
];
2022-03-10 17:29:24 +01:00
if (!$database->isInstalled() || empty($mysql)){
unset($requirements['MySQL']);
}
2022-02-07 13:36:31 +01:00
2018-06-27 14:25:19 +02:00
// Tabelle di riepilogo
foreach ($requirements as $key => $values) {
$statuses = array_column($values, 'status');
$general_status = true;
foreach ($statuses as $status) {
$general_status &= $status;
}
echo '
<div class="box box-'.($general_status ? 'success collapsed-box' : 'danger').'">
<div class="box-header with-border">
<h3 class="box-title">'.$key.'</h3>';
if ($general_status) {
echo '
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool" data-widget="collapse">
<i class="fa fa-plus"></i>
</button>
</div>';
}
echo '
</div>
<div class="box-body no-padding">
<table class="table">';
foreach ($values as $value) {
echo '
<tr class="'.($value['status'] ? 'success' : 'danger').'">
<td style="width: 10px"><i class="fa fa-'.($value['status'] ? 'check' : 'times').'"></i></td>
<td style="width: 120px" >'.$value['type'].'</td>
<td style="width: 200px" >'.$value['name'].'</td>
2018-06-27 14:25:19 +02:00
<td>'.$value['description'].'</td>
</tr>';
}
echo '
</table>
</div>
</div>';
}