2023-10-02 11:38:16 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire\Project\Shared;
|
2023-10-02 11:38:16 +00:00
|
|
|
|
2023-12-01 09:34:30 +00:00
|
|
|
use App\Models\Application;
|
2023-10-02 11:38:16 +00:00
|
|
|
use App\Models\Server;
|
2023-12-01 09:34:30 +00:00
|
|
|
use App\Models\Service;
|
|
|
|
use App\Models\ServiceApplication;
|
|
|
|
use App\Models\ServiceDatabase;
|
|
|
|
use App\Models\StandaloneMariadb;
|
|
|
|
use App\Models\StandaloneMongodb;
|
|
|
|
use App\Models\StandaloneMysql;
|
|
|
|
use App\Models\StandalonePostgresql;
|
|
|
|
use App\Models\StandaloneRedis;
|
2023-10-02 11:38:16 +00:00
|
|
|
use Illuminate\Support\Facades\Process;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class GetLogs extends Component
|
|
|
|
{
|
|
|
|
public string $outputs = '';
|
|
|
|
public string $errors = '';
|
2023-12-07 21:56:55 +00:00
|
|
|
public Application|Service|StandalonePostgresql|StandaloneRedis|StandaloneMongodb|StandaloneMysql|StandaloneMariadb|null $resource = null;
|
2023-12-01 09:34:30 +00:00
|
|
|
public ServiceApplication|ServiceDatabase|null $servicesubtype = null;
|
2023-10-02 11:38:16 +00:00
|
|
|
public Server $server;
|
|
|
|
public ?string $container = null;
|
2024-02-27 08:01:19 +00:00
|
|
|
public ?string $pull_request = null;
|
2023-10-02 11:38:16 +00:00
|
|
|
public ?bool $streamLogs = false;
|
2023-10-19 11:32:03 +00:00
|
|
|
public ?bool $showTimeStamps = true;
|
2023-10-02 12:01:54 +00:00
|
|
|
public int $numberOfLines = 100;
|
2023-12-01 09:34:30 +00:00
|
|
|
|
|
|
|
public function mount()
|
|
|
|
{
|
2023-12-07 21:56:55 +00:00
|
|
|
if (!is_null($this->resource)) {
|
|
|
|
if ($this->resource->getMorphClass() === 'App\Models\Application') {
|
|
|
|
$this->showTimeStamps = $this->resource->settings->is_include_timestamps;
|
2023-12-01 09:34:30 +00:00
|
|
|
} else {
|
2023-12-07 21:56:55 +00:00
|
|
|
if ($this->servicesubtype) {
|
|
|
|
$this->showTimeStamps = $this->servicesubtype->is_include_timestamps;
|
|
|
|
} else {
|
|
|
|
$this->showTimeStamps = $this->resource->is_include_timestamps;
|
|
|
|
}
|
2023-12-01 09:34:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-02 11:38:16 +00:00
|
|
|
public function doSomethingWithThisChunkOfOutput($output)
|
|
|
|
{
|
2023-11-07 13:40:58 +00:00
|
|
|
$this->outputs .= removeAnsiColors($output);
|
2023-10-02 11:38:16 +00:00
|
|
|
}
|
|
|
|
public function instantSave()
|
|
|
|
{
|
2023-12-07 21:56:55 +00:00
|
|
|
if (!is_null($this->resource)) {
|
|
|
|
if ($this->resource->getMorphClass() === 'App\Models\Application') {
|
|
|
|
$this->resource->settings->is_include_timestamps = $this->showTimeStamps;
|
|
|
|
$this->resource->settings->save();
|
2023-12-11 10:27:41 +00:00
|
|
|
}
|
|
|
|
if ($this->resource->getMorphClass() === 'App\Models\Service') {
|
|
|
|
$serviceName = str($this->container)->beforeLast('-')->value();
|
|
|
|
$subType = $this->resource->applications()->where('name', $serviceName)->first();
|
|
|
|
if ($subType) {
|
|
|
|
$subType->is_include_timestamps = $this->showTimeStamps;
|
|
|
|
$subType->save();
|
2023-12-07 21:56:55 +00:00
|
|
|
} else {
|
2023-12-11 10:27:41 +00:00
|
|
|
$subType = $this->resource->databases()->where('name', $serviceName)->first();
|
|
|
|
if ($subType) {
|
|
|
|
$subType->is_include_timestamps = $this->showTimeStamps;
|
|
|
|
$subType->save();
|
|
|
|
}
|
2023-12-07 21:56:55 +00:00
|
|
|
}
|
2023-12-01 09:34:30 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-02 11:38:16 +00:00
|
|
|
}
|
|
|
|
public function getLogs($refresh = false)
|
|
|
|
{
|
2024-02-27 08:05:28 +00:00
|
|
|
if (str($this->container)->contains('-pr-')) {
|
|
|
|
$this->pull_request = "Pull Request: " . str($this->container)->afterLast('-pr-')->beforeLast('_')->value();
|
|
|
|
} else {
|
|
|
|
$this->pull_request = 'branch';
|
|
|
|
}
|
|
|
|
if (!$refresh && ($this->resource?->getMorphClass() === 'App\Models\Service' || str($this->container)->contains('-pr-'))) return;
|
2023-12-11 14:09:36 +00:00
|
|
|
if ($this->container) {
|
|
|
|
if ($this->showTimeStamps) {
|
2023-12-20 13:11:50 +00:00
|
|
|
if ($this->server->isSwarm()) {
|
|
|
|
$sshCommand = generateSshCommand($this->server, "docker service logs -n {$this->numberOfLines} -t {$this->container}");
|
|
|
|
} else {
|
|
|
|
$sshCommand = generateSshCommand($this->server, "docker logs -n {$this->numberOfLines} -t {$this->container}");
|
|
|
|
}
|
2023-12-11 14:09:36 +00:00
|
|
|
} else {
|
2023-12-20 13:11:50 +00:00
|
|
|
if ($this->server->isSwarm()) {
|
|
|
|
$sshCommand = generateSshCommand($this->server, "docker service logs -n {$this->numberOfLines} {$this->container}");
|
|
|
|
} else {
|
|
|
|
$sshCommand = generateSshCommand($this->server, "docker logs -n {$this->numberOfLines} {$this->container}");
|
|
|
|
}
|
2023-12-11 14:09:36 +00:00
|
|
|
}
|
|
|
|
if ($refresh) {
|
|
|
|
$this->outputs = '';
|
2023-11-06 12:53:05 +00:00
|
|
|
}
|
2023-12-11 14:09:36 +00:00
|
|
|
Process::run($sshCommand, function (string $type, string $output) {
|
|
|
|
$this->doSomethingWithThisChunkOfOutput($output);
|
|
|
|
});
|
|
|
|
if ($this->showTimeStamps) {
|
|
|
|
$this->outputs = str($this->outputs)->split('/\n/')->sort(function ($a, $b) {
|
|
|
|
$a = explode(' ', $a);
|
|
|
|
$b = explode(' ', $b);
|
|
|
|
return $a[0] <=> $b[0];
|
|
|
|
})->join("\n");
|
|
|
|
}
|
|
|
|
}
|
2023-10-02 11:38:16 +00:00
|
|
|
}
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.project.shared.get-logs');
|
|
|
|
}
|
|
|
|
}
|