coolify/app/Livewire/Dashboard.php

62 lines
1.6 KiB
PHP
Raw Normal View History

2023-08-29 12:36:17 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire;
2023-08-29 12:36:17 +00:00
2024-01-27 17:44:40 +00:00
use App\Models\ApplicationDeploymentQueue;
2024-03-21 13:30:35 +00:00
use App\Models\PrivateKey;
2023-08-29 12:36:17 +00:00
use App\Models\Project;
use App\Models\Server;
2024-01-27 17:44:40 +00:00
use Illuminate\Support\Collection;
2024-02-08 11:47:00 +00:00
use Illuminate\Support\Facades\Artisan;
2023-08-29 12:36:17 +00:00
use Livewire\Component;
class Dashboard extends Component
{
2023-10-10 08:56:11 +00:00
public $projects = [];
2024-06-10 20:43:34 +00:00
2024-01-27 17:44:40 +00:00
public Collection $servers;
2024-06-10 20:43:34 +00:00
2024-11-03 20:11:35 +00:00
public Collection $privateKeys;
2024-06-10 20:43:34 +00:00
2024-11-03 20:11:35 +00:00
public array $deploymentsPerServer = [];
2024-06-10 20:43:34 +00:00
2023-08-29 12:36:17 +00:00
public function mount()
{
2024-11-03 20:11:35 +00:00
$this->privateKeys = PrivateKey::ownedByCurrentTeam()->get();
2023-10-10 08:56:11 +00:00
$this->servers = Server::ownedByCurrentTeam()->get();
2023-10-11 08:08:37 +00:00
$this->projects = Project::ownedByCurrentTeam()->get();
2024-11-03 20:11:35 +00:00
$this->loadDeployments();
2024-01-27 17:44:40 +00:00
}
2024-06-10 20:43:34 +00:00
2024-11-03 20:11:35 +00:00
public function cleanupQueue()
2024-02-08 11:47:00 +00:00
{
Artisan::queue('cleanup:deployment-queue', [
2024-06-10 20:43:34 +00:00
'--team-id' => currentTeam()->id,
2024-02-08 11:47:00 +00:00
]);
}
2024-06-10 20:43:34 +00:00
2024-11-03 20:11:35 +00:00
public function loadDeployments()
2024-01-27 17:44:40 +00:00
{
$this->deploymentsPerServer = ApplicationDeploymentQueue::whereIn('status', ['in_progress', 'queued'])->whereIn('server_id', $this->servers->pluck('id'))->get([
2024-06-10 20:43:34 +00:00
'id',
'application_id',
'application_name',
'deployment_url',
'pull_request_id',
'server_name',
'server_id',
'status',
])->sortBy('id')->groupBy('server_name')->toArray();
2023-08-29 12:36:17 +00:00
}
2024-06-10 20:43:34 +00:00
2024-11-22 14:28:06 +00:00
public function navigateToProject($projectUuid)
{
return $this->redirect(collect($this->projects)->firstWhere('uuid', $projectUuid)->navigateTo(), navigate: false);
2024-11-22 14:28:06 +00:00
}
2023-08-29 12:36:17 +00:00
public function render()
{
return view('livewire.dashboard');
}
}