Froxlor/admin_updates.php

141 lines
4.5 KiB
PHP
Raw Normal View History

2010-01-26 08:59:19 +00:00
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
2022-04-28 18:48:00 +00: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 2
* of the License, or (at your option) any later version.
2010-01-26 08:59:19 +00:00
*
2022-04-28 18:48:00 +00:00
* 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.
*
2022-04-28 18:48:00 +00:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, you can also view it online at
* https://files.froxlor.org/misc/COPYING.txt
*
* @copyright the authors
* @author Froxlor team <team@froxlor.org>
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2
2010-01-26 08:59:19 +00:00
*/
const AREA = 'admin';
require __DIR__ . '/lib/init.php';
2010-01-26 08:59:19 +00:00
2022-04-28 18:48:00 +00:00
use Froxlor\Cron\TaskId;
use Froxlor\Database\Database;
2022-04-28 18:48:00 +00:00
use Froxlor\Froxlor;
use Froxlor\FroxlorLogger;
use Froxlor\Settings;
2022-04-28 18:48:00 +00:00
use Froxlor\System\Cronjob;
use Froxlor\UI\Panel\UI;
2022-04-28 18:48:00 +00:00
use Froxlor\UI\Response;
use Froxlor\User;
2013-04-27 07:18:35 +00:00
if ($page == 'overview') {
2022-04-28 18:48:00 +00:00
$log->logAction(FroxlorLogger::ADM_ACTION, LOG_NOTICE, "viewed admin_updates");
/**
* this is a dirty hack but syscp 1.4.2.1 does not
* have any version/dbversion in the database (don't know why)
* so we have to set them both to run a correct upgrade
*/
2022-04-28 18:48:00 +00:00
if (!Froxlor::isFroxlor()) {
if (Settings::Get('panel.version') == null || Settings::Get('panel.version') == '') {
Settings::Set('panel.version', '1.4.2.1');
2010-02-23 13:33:51 +00:00
}
if (Settings::Get('system.dbversion') == null || Settings::Get('system.dbversion') == '') {
/**
* for syscp-stable (1.4.2.1) this value has to be 0
* so the required table-fields are added correctly
* and the svn-version has its value in the database
* -> bug #54
*/
$result_stmt = Database::query("
SELECT `value` FROM `" . TABLE_PANEL_SETTINGS . "` WHERE `varname` = 'dbversion'");
$result = $result_stmt->fetch(PDO::FETCH_ASSOC);
2013-04-27 07:18:35 +00:00
if (isset($result['value'])) {
2022-04-28 18:48:00 +00:00
Settings::Set('system.dbversion', (int)$result['value'], false);
} else {
Settings::Set('system.dbversion', 0, false);
}
2010-02-23 13:33:51 +00:00
}
}
2022-04-28 18:48:00 +00:00
if (Froxlor::hasDbUpdates() || Froxlor::hasUpdates()) {
$successful_update = false;
$message = '';
if (isset($_POST['send']) && $_POST['send'] == 'send') {
if ((isset($_POST['update_preconfig']) && isset($_POST['update_changesagreed']) && intval($_POST['update_changesagreed']) != 0) || !isset($_POST['update_preconfig'])) {
2022-04-28 18:48:00 +00:00
include_once Froxlor::getInstallDir() . 'install/updatesql.php';
2022-04-28 18:48:00 +00:00
User::updateCounters();
Cronjob::inserttask(TaskId::REBUILD_VHOST);
@chmod(Froxlor::getInstallDir() . '/lib/userdata.inc.php', 0400);
UI::view('install/update.html.twig', [
'checks' => $update_tasks
]);
exit;
2013-04-27 07:18:35 +00:00
} else {
$message = '<br><br><strong>You have to agree that you have read the update notifications.</strong>';
}
2010-01-26 08:59:19 +00:00
}
$current_version = Settings::Get('panel.version');
$current_db_version = Settings::Get('panel.db_version');
if (empty($current_db_version)) {
$current_db_version = "0";
}
2022-04-28 18:48:00 +00:00
$new_version = Froxlor::VERSION;
$new_db_version = Froxlor::DBVERSION;
2022-04-28 18:48:00 +00:00
$ui_text = lng('update.update_information.part_a');
if (Froxlor::VERSION != $current_version) {
$ui_text = str_replace('%curversion', $current_version, $ui_text);
$ui_text = str_replace('%newversion', $new_version, $ui_text);
} else {
// show db version
$ui_text = str_replace('%curversion', $current_db_version, $ui_text);
$ui_text = str_replace('%newversion', $new_db_version, $ui_text);
}
2022-04-28 18:48:00 +00:00
$ui_text .= lng('update.update_information.part_b');
$upd_formfield = [
'updates' => [
2022-04-28 18:48:00 +00:00
'title' => lng('update.update'),
'image' => 'fa-solid fa-download',
2022-04-28 18:48:00 +00:00
'description' => lng('update.description'),
'sections' => [],
'buttons' => [
[
2022-04-28 18:48:00 +00:00
'label' => lng('update.proceed')
]
]
]
];
2013-04-27 07:18:35 +00:00
2022-04-28 18:48:00 +00:00
include_once Froxlor::getInstallDir() . '/install/updates/preconfig.php';
$preconfig = getPreConfig($current_version, $current_db_version);
if (!empty($preconfig)) {
$upd_formfield['updates']['sections'] = $preconfig;
2010-01-26 08:59:19 +00:00
}
UI::view('user/form-note.html.twig', [
2022-04-28 18:48:00 +00:00
'formaction' => $linker->getLink(['section' => 'updates']),
'formdata' => $upd_formfield['updates'],
// alert
'type' => !empty($message) ? 'danger' : 'info',
'alert_msg' => $ui_text . $message
]);
2013-04-27 07:18:35 +00:00
} else {
2022-04-28 18:48:00 +00:00
Response::standardSuccess('noupdatesavail');
2010-01-26 08:59:19 +00:00
}
}