coolify/app/Http/Livewire/Upgrade.php
Andras Bacsai 9d6557bacb fix
2023-06-16 21:16:30 +02:00

38 lines
1.0 KiB
PHP

<?php
namespace App\Http\Livewire;
use App\Actions\Server\UpdateCoolify;
use Masmerise\Toaster\Toaster;
use Livewire\Component;
class Upgrade extends Component
{
public bool $showProgress = false;
public bool $isUpgradeAvailable = false;
public string $latestVersion = '';
public function checkUpdate()
{
$this->latestVersion = get_latest_version_of_coolify();
$currentVersion = config('version');
version_compare($currentVersion, $this->latestVersion, '<') ? $this->isUpgradeAvailable = true : $this->isUpgradeAvailable = false;
if (isDev()) {
$this->isUpgradeAvailable = true;
}
}
public function upgrade()
{
try {
if ($this->showProgress) {
return;
}
$this->showProgress = true;
resolve(UpdateCoolify::class)(true);
Toaster::success("Upgrading to {$this->latestVersion} version...");
} catch (\Exception $e) {
return general_error_handler(err: $e, that: $this);
}
}
}