2023-08-04 23:49:26 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Services\System;
|
|
|
|
|
2023-08-21 23:11:12 +02:00
|
|
|
use Psr\Log\LoggerInterface;
|
2023-08-04 23:49:26 +02:00
|
|
|
use Shivas\VersioningBundle\Service\VersionManagerInterface;
|
2023-08-21 23:11:12 +02:00
|
|
|
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
2023-08-04 23:49:26 +02:00
|
|
|
use Symfony\Contracts\Cache\CacheInterface;
|
|
|
|
use Symfony\Contracts\Cache\ItemInterface;
|
|
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
|
|
|
use Version\Version;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class checks if a new version of Part-DB is available.
|
|
|
|
*/
|
|
|
|
class UpdateAvailableManager
|
|
|
|
{
|
|
|
|
|
|
|
|
private const API_URL = 'https://api.github.com/repos/Part-DB/Part-DB-server/releases/latest';
|
|
|
|
private const CACHE_KEY = 'uam_latest_version';
|
|
|
|
private const CACHE_TTL = 60 * 60 * 24 * 2; // 2 day
|
|
|
|
|
2023-08-04 23:55:41 +02:00
|
|
|
public function __construct(private readonly HttpClientInterface $httpClient,
|
|
|
|
private readonly CacheInterface $updateCache, private readonly VersionManagerInterface $versionManager,
|
2023-08-21 23:11:12 +02:00
|
|
|
private readonly bool $check_for_updates, private readonly LoggerInterface $logger,
|
|
|
|
#[Autowire(param: 'kernel.debug')] private readonly bool $is_dev_mode)
|
2023-08-04 23:49:26 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the latest version of Part-DB as string (e.g. "1.2.3").
|
|
|
|
* This value is cached for 2 days.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLatestVersionString(): string
|
|
|
|
{
|
|
|
|
return $this->getLatestVersionInfo()['version'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the latest version of Part-DB as Version object.
|
|
|
|
*/
|
|
|
|
public function getLatestVersion(): Version
|
|
|
|
{
|
|
|
|
return Version::fromString($this->getLatestVersionString());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the URL to the latest version of Part-DB on GitHub.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLatestVersionUrl(): string
|
|
|
|
{
|
|
|
|
return $this->getLatestVersionInfo()['url'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a new version of Part-DB is available. This value is cached for 2 days.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isUpdateAvailable(): bool
|
|
|
|
{
|
2023-08-04 23:55:41 +02:00
|
|
|
//If we don't want to check for updates, we can return false
|
|
|
|
if (!$this->check_for_updates) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-08-04 23:49:26 +02:00
|
|
|
$latestVersion = $this->getLatestVersion();
|
|
|
|
$currentVersion = $this->versionManager->getVersion();
|
|
|
|
|
|
|
|
return $latestVersion->isGreaterThan($currentVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the latest version info. The value is cached for 2 days.
|
|
|
|
* @return array
|
2023-08-05 00:07:42 +02:00
|
|
|
* @phpstan-return array{version: string, url: string}
|
2023-08-04 23:49:26 +02:00
|
|
|
*/
|
|
|
|
private function getLatestVersionInfo(): array
|
|
|
|
{
|
2023-08-04 23:55:41 +02:00
|
|
|
//If we don't want to check for updates, we can return dummy data
|
|
|
|
if (!$this->check_for_updates) {
|
|
|
|
return [
|
|
|
|
'version' => '0.0.1',
|
|
|
|
'url' => 'update-checking-disabled'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-08-04 23:49:26 +02:00
|
|
|
return $this->updateCache->get(self::CACHE_KEY, function (ItemInterface $item) {
|
|
|
|
$item->expiresAfter(self::CACHE_TTL);
|
2023-08-21 23:11:12 +02:00
|
|
|
try {
|
|
|
|
$response = $this->httpClient->request('GET', self::API_URL);
|
|
|
|
$result = $response->toArray();
|
|
|
|
$tag_name = $result['tag_name'];
|
|
|
|
|
|
|
|
// Remove the leading 'v' from the tag name
|
|
|
|
$version = substr($tag_name, 1);
|
|
|
|
|
|
|
|
return [
|
|
|
|
'version' => $version,
|
|
|
|
'url' => $result['html_url'],
|
|
|
|
];
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
//When we are in dev mode, throw the exception, otherwise just silently log it
|
|
|
|
if ($this->is_dev_mode) {
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
//In the case of an error, try it again after half of the cache time
|
|
|
|
$item->expiresAfter(self::CACHE_TTL / 2);
|
|
|
|
|
|
|
|
$this->logger->error('Checking for updates failed: ' . $e->getMessage());
|
|
|
|
|
|
|
|
return [
|
|
|
|
'version' => '0.0.1',
|
|
|
|
'url' => 'update-checking-error'
|
|
|
|
];
|
|
|
|
}
|
2023-08-04 23:49:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|