2026-01-30 21:36:33 +01:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2019 - 2024 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\Twig;
|
|
|
|
|
|
2026-02-02 18:44:44 +01:00
|
|
|
use App\Services\System\UpdateAvailableFacade;
|
2026-01-30 21:36:33 +01:00
|
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
|
|
|
use Twig\Extension\AbstractExtension;
|
|
|
|
|
use Twig\TwigFunction;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Twig extension for update-related functions.
|
|
|
|
|
*/
|
|
|
|
|
final class UpdateExtension extends AbstractExtension
|
|
|
|
|
{
|
2026-02-02 18:44:44 +01:00
|
|
|
public function __construct(private readonly UpdateAvailableFacade $updateAvailableManager,
|
2026-01-30 21:36:33 +01:00
|
|
|
private readonly Security $security)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getFunctions(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
new TwigFunction('is_update_available', $this->isUpdateAvailable(...)),
|
|
|
|
|
new TwigFunction('get_latest_version', $this->getLatestVersion(...)),
|
|
|
|
|
new TwigFunction('get_latest_version_url', $this->getLatestVersionUrl(...)),
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if an update is available and the user has permission to see it.
|
|
|
|
|
*/
|
|
|
|
|
public function isUpdateAvailable(): bool
|
|
|
|
|
{
|
|
|
|
|
// Only show to users with the show_updates permission
|
|
|
|
|
if (!$this->security->isGranted('@system.show_updates')) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $this->updateAvailableManager->isUpdateAvailable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the latest available version string.
|
|
|
|
|
*/
|
|
|
|
|
public function getLatestVersion(): string
|
|
|
|
|
{
|
|
|
|
|
return $this->updateAvailableManager->getLatestVersionString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the URL to the latest version release page.
|
|
|
|
|
*/
|
|
|
|
|
public function getLatestVersionUrl(): string
|
|
|
|
|
{
|
|
|
|
|
return $this->updateAvailableManager->getLatestVersionUrl();
|
|
|
|
|
}
|
|
|
|
|
}
|