feat: Add manual update option to UpdateCoolify handle method

This commit is contained in:
Andras Bacsai 2024-05-30 19:38:33 +02:00
parent c839cf50af
commit 30a9783348
2 changed files with 15 additions and 13 deletions

View File

@ -14,7 +14,7 @@ class UpdateCoolify
public ?string $latestVersion = null;
public ?string $currentVersion = null;
public function handle()
public function handle($manual_update = false)
{
try {
$settings = InstanceSettings::get();
@ -26,17 +26,19 @@ public function handle()
CleanupDocker::run($this->server, false);
$this->latestVersion = get_latest_version_of_coolify();
$this->currentVersion = config('version');
if (!$settings->is_auto_update_enabled) {
Log::debug('Auto update is disabled');
return;
}
if ($this->latestVersion === $this->currentVersion) {
Log::debug('Already on latest version');
return;
}
if (version_compare($this->latestVersion, $this->currentVersion, '<')) {
Log::debug('Latest version is lower than current version?!');
return;
if (!$manual_update) {
if (!$settings->is_auto_update_enabled) {
Log::debug('Auto update is disabled');
return;
}
if ($this->latestVersion === $this->currentVersion) {
Log::debug('Already on latest version');
return;
}
if (version_compare($this->latestVersion, $this->currentVersion, '<')) {
Log::debug('Latest version is lower than current version?!');
return;
}
}
Log::info("Updating from {$this->currentVersion} -> {$this->latestVersion}");
$this->update();

View File

@ -33,7 +33,7 @@ public function upgrade()
}
$this->rateLimit(1, 60);
$this->updateInProgress = true;
UpdateCoolify::run();
UpdateCoolify::run(manual_update: true);
} catch (\Throwable $e) {
return handleError($e, $this);
}