migrate update/preconfig to a more OOP way and remove unnecessary file/dir complexity

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-05-01 16:48:43 +02:00
parent 1557482d17
commit c59c5efc11
14 changed files with 219 additions and 168 deletions

View File

@@ -0,0 +1,114 @@
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* 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.
*
* 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, 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
*/
namespace Froxlor\Install;
use Froxlor\Froxlor;
use Froxlor\Settings;
class Preconfig
{
private $preconfig_data = [];
/**
* returns whether there are preconfig items in an update
*
* @return bool
*/
public function hasPreConfig(): bool
{
return count($this->preconfig_data) > 0;
}
/**
* return all collected preconfig data
*
* @return array
*/
public function getData(): array
{
return $this->preconfig_data;
}
/**
* adds an preconfig result-array to the preconfig-data
*
* @param array $array
*
* @return void
*/
public function addToPreConfig(array $array)
{
$this->preconfig_data = $this->preconfig_data + $array;
}
/**
* read in all preconfig files and build up data-array for admin_updates
*/
public function __construct()
{
$preconfigs = glob(Froxlor::getInstallDir() . '/install/updates/preconfig/*.php');
if (!empty($preconfigs)) {
$current_version = Settings::Get('panel.version');
$current_db_version = Settings::Get('panel.db_version');
if (empty($current_db_version)) {
$current_db_version = "0";
}
foreach (array_reverse($preconfigs) as $preconfig_file) {
$pconf = include $preconfig_file;
$this->addToPreConfig($pconf);
}
}
}
/**
* Function getPreConfig
*
* outputs various form-field-arrays before the update process
* can be continued (asks for agreement whatever is being asked)
*
* @return array
*/
public static function getPreConfig(): array
{
$preconfig = new self();
if ($preconfig->hasPreConfig()) {
$agree = [
'title' => 'Check',
'fields' => [
'update_changesagreed' => ['type' => 'checkbox', 'value' => 1, 'label' => '<strong>I have read the update notifications above and I am aware of the changes made to my system.</strong>'],
'update_preconfig' => ['type' => 'hidden', 'value' => 1]
]
];
$result = [
$preconfig->getData(),
$agree
];
return $result;
}
return [];
}
}

View File

@@ -25,6 +25,7 @@
namespace Froxlor\Install;
use Froxlor\Froxlor;
use Froxlor\FroxlorLogger;
class Update
@@ -96,4 +97,13 @@ class Update
FroxlorLogger::getInstanceOf()->logAction(FroxlorLogger::ADM_ACTION, LOG_WARNING, 'Success');
}
}
public static function versionInUpdate($current_version, $version_to_check)
{
if (!Froxlor::isFroxlor()) {
return true;
}
return Froxlor::versionCompare2($current_version, $version_to_check) == -1;
}
}