wip
This commit is contained in:
@@ -7,6 +7,7 @@ use App\Models\Application;
|
||||
use App\Models\CoolifyInstanceSettings;
|
||||
use DateTimeImmutable;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\Support\Facades\Process;
|
||||
use Livewire\Component;
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
use Visus\Cuid2\Cuid2;
|
||||
@@ -249,7 +250,20 @@ class DeployApplication extends Component
|
||||
remoteProcess($command, $destination->server, null, $application);
|
||||
}
|
||||
public function checkStatus() {
|
||||
ContainerStatusJob::dispatch();
|
||||
$application = Application::where('uuid', $this->application_uuid)->first();
|
||||
$destination = $application->destination->getMorphClass()::where('id', $application->destination->id)->first();
|
||||
$private_key_location = savePrivateKey($destination->server);
|
||||
$ssh_command = generateSshCommand($private_key_location, $destination->server->ip, $destination->server->user, $destination->server->port, "docker ps -a --format '{{.State}}' --filter 'name={$application->uuid}'");
|
||||
$process = Process::run($ssh_command);
|
||||
$output = trim($process->output());
|
||||
if ($output == '') {
|
||||
$application->status = 'exited';
|
||||
$application->save();
|
||||
} else {
|
||||
$application->status = $output;
|
||||
$application->save();
|
||||
}
|
||||
// ContainerStatusJob::dispatch();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Illuminate\Support\Facades\Process;
|
||||
use Tests\Support\Output;
|
||||
@@ -26,16 +27,17 @@ class ContainerStatusJob implements ShouldQueue
|
||||
public function handle(): void
|
||||
{
|
||||
try {
|
||||
$server = Server::all()->where('settings->is_build_server', '=', false)->first();
|
||||
$servers = Server::all()->reject(fn (Server $server) => $server->settings->is_build_server);
|
||||
$applications = Application::all();
|
||||
$not_found_applications = $applications;
|
||||
$containers = [];
|
||||
// foreach ($servers as $server) {
|
||||
$private_key_location = savePrivateKey($server);
|
||||
$ssh_command = generateSshCommand($private_key_location, $server->ip, $server->user, $server->port, 'docker ps -a -q --format \'{{json .}}\'');
|
||||
$process = Process::run($ssh_command);
|
||||
$output = trim($process->output());
|
||||
$containers = formatDockerCmdOutputToJson($output);
|
||||
$containers = collect();
|
||||
foreach ($servers as $server) {
|
||||
$private_key_location = savePrivateKey($server);
|
||||
$ssh_command = generateSshCommand($private_key_location, $server->ip, $server->user, $server->port, 'docker ps -a -q --format \'{{json .}}\'');
|
||||
$process = Process::run($ssh_command);
|
||||
$output = trim($process->output());
|
||||
$containers = $containers->concat(formatDockerCmdOutputToJson($output));
|
||||
}
|
||||
foreach ($containers as $container) {
|
||||
$found_application = $applications->filter(function ($value, $key) use ($container) {
|
||||
return $value->uuid == $container['Names'];
|
||||
@@ -46,13 +48,13 @@ class ContainerStatusJob implements ShouldQueue
|
||||
});
|
||||
$found_application->status = $container['State'];
|
||||
$found_application->save();
|
||||
// Log::info('Found application: ' . $found_application->uuid . ' settings status to: ' . $found_application->status);
|
||||
Log::info('Found application: ' . $found_application->uuid . '.Set status to: ' . $found_application->status);
|
||||
}
|
||||
}
|
||||
foreach ($not_found_applications as $not_found_application) {
|
||||
$not_found_application->status = 'exited';
|
||||
$not_found_application->save();
|
||||
// Log::info('Not found application: ' . $not_found_application->uuid . ' settings status to: ' . $not_found_application->status);
|
||||
Log::info('Not found application: ' . $not_found_application->uuid . '.Set status to: ' . $not_found_application->status);
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
Log::error($e->getMessage());
|
||||
|
||||
@@ -4,7 +4,6 @@ namespace App\Models;
|
||||
|
||||
class Project extends BaseModel
|
||||
{
|
||||
protected $with = ['settings', 'environments'];
|
||||
protected static function booted()
|
||||
{
|
||||
static::created(function ($project) {
|
||||
|
||||
Reference in New Issue
Block a user