Files
Froxlor/lib/Froxlor/Install/Update.php

140 lines
3.6 KiB
PHP

<?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\FroxlorLogger;
use Froxlor\Settings;
class Update
{
private static $update_tasks = [];
private static $task_counter = 0;
/**
* Function showUpdateStep
*
* stores and logs the current update progress
*
* @param string $task
* @param bool $needs_status (if false, a linebreak will be added)
*
* @return void
*/
public static function showUpdateStep(string $task, bool $needs_status = true)
{
set_time_limit(30);
// output
self::$update_tasks[self::$task_counter] = ['title' => $task, 'result' => 0];
if (!$needs_status) {
self::$task_counter++;
}
FroxlorLogger::getInstanceOf()->logAction(FroxlorLogger::ADM_ACTION, \LOG_WARNING, $task);
}
/**
* Function lastStepStatus
*
* outputs status of the last update-step
*
* @param int $status (0 = success, 1 = warning, 2 = failure)
* @param string $message
* @param string $additional_info
*
* @return void
*/
public static function lastStepStatus(int $status = -1, string $message = 'OK', string $additional_info = '')
{
self::$update_tasks[self::$task_counter]['result_txt'] = $message;
self::$update_tasks[self::$task_counter]['result_desc'] = $additional_info;
switch ($status) {
case 0:
break;
case 1:
self::$update_tasks[self::$task_counter]['result'] = 2;
break;
case 2:
self::$update_tasks[self::$task_counter]['result'] = 1;
break;
default:
self::$update_tasks[self::$task_counter]['result'] = -1;
break;
}
self::$task_counter++;
if ($status == -1 || $status == 2) {
FroxlorLogger::getInstanceOf()->logAction(FroxlorLogger::ADM_ACTION, \LOG_WARNING, 'Attention - last update task failed!!!');
} elseif ($status == 0 || $status == 1) {
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;
}
public static function storeUpdateCheckData(array $response)
{
$data = [
'ts' => time(),
'channel' => Settings::Get('system.update_channel'),
'data' => $response
];
Settings::Set('system.updatecheck_data', json_encode($data));
}
public static function getUpdateCheckData()
{
$uc_data = Settings::Get('system.updatecheck_data');
if (!empty($uc_data)) {
$data = json_decode($uc_data, true);
return $data;
}
return null;
}
public static function getUpdateTasks(): array
{
return self::$update_tasks;
}
public static function getTaskCounter(): int
{
return self::$task_counter;
}
}