coolify/app/Actions/Server/UpdateCoolify.php

74 lines
2.6 KiB
PHP
Raw Normal View History

2023-06-15 11:23:48 +02:00
<?php
namespace App\Actions\Server;
use App\Models\InstanceSettings;
use App\Models\Server;
class UpdateCoolify
{
public Server $server;
public string $latest_version;
public string $current_version;
public function __invoke(bool $force)
{
try {
2023-06-23 13:13:02 +02:00
$settings = InstanceSettings::get();
2023-06-15 11:23:48 +02:00
ray('Running InstanceAutoUpdateJob');
$localhost_name = 'localhost';
2023-08-28 18:02:31 +02:00
$this->server = Server::where('name', $localhost_name)->first();
if (!$this->server) {
// No server found, so we are running on local docker container
return;
}
2023-06-15 11:23:48 +02:00
$this->latest_version = get_latest_version_of_coolify();
$this->current_version = config('version');
ray('latest version:' . $this->latest_version . " current version: " . $this->current_version . ' force: ' . $force);
2023-06-23 13:13:02 +02:00
if ($settings->next_channel) {
ray('next channel enabled');
$this->latest_version = 'next';
}
2023-06-15 11:23:48 +02:00
if ($force) {
$this->update();
} else {
2023-06-23 13:13:02 +02:00
if (!$settings->is_auto_update_enabled) {
2023-08-24 20:51:14 +02:00
return 'Auto update is disabled';
2023-06-15 11:23:48 +02:00
}
if ($this->latest_version === $this->current_version) {
2023-08-24 20:51:14 +02:00
return 'Already on latest version';
2023-06-15 11:23:48 +02:00
}
if (version_compare($this->latest_version, $this->current_version, '<')) {
2023-08-24 20:51:14 +02:00
return 'Latest version is lower than current version?!';
2023-06-15 11:23:48 +02:00
}
$this->update();
}
2023-08-24 21:04:17 +02:00
send_internal_notification('InstanceAutoUpdateJob done to version: ' . $this->latest_version . ' from version: ' . $this->current_version);
2023-08-17 16:26:55 +02:00
} catch (\Exception $th) {
2023-06-15 11:23:48 +02:00
ray('InstanceAutoUpdateJob failed');
2023-08-17 16:26:55 +02:00
ray($th->getMessage());
send_internal_notification('InstanceAutoUpdateJob failed: ' . $th->getMessage());
2023-08-24 21:09:58 +02:00
throw $th;
2023-06-15 11:23:48 +02:00
}
}
2023-06-15 11:23:48 +02:00
private function update()
{
if (isDev()) {
2023-06-23 13:13:02 +02:00
ray("Running update on local docker container. Updating to $this->latest_version");
2023-06-15 11:23:48 +02:00
remote_process([
"sleep 10"
], $this->server);
ray('Update done');
return;
} else {
ray('Running update on production server');
remote_process([
"curl -fsSL https://cdn.coollabs.io/coolify/upgrade.sh -o /data/coolify/source/upgrade.sh",
"bash /data/coolify/source/upgrade.sh $this->latest_version"
], $this->server);
return;
}
}
}