coolify/app/Http/Livewire/RunCommand.php

64 lines
1.3 KiB
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<?php
namespace App\Http\Livewire;
use App\Models\Server;
2023-03-20 13:04:22 +01:00
use Livewire\Component;
class RunCommand extends Component
{
public $activity;
public $isKeepAliveOn = false;
public $manualKeepAlive = false;
public $command = 'ls';
2023-03-20 13:04:22 +01:00
2023-03-24 15:48:57 +01:00
public $server = 'testing-host';
public $servers = [];
public function mount()
{
$this->servers = Server::all()->pluck('name')->toArray();
}
2023-03-20 13:04:22 +01:00
public function render()
{
return view('livewire.run-command');
}
public function runCommand()
{
$this->isKeepAliveOn = true;
2023-03-24 15:48:57 +01:00
$this->activity = remoteProcess($this->command, $this->server);
2023-03-20 13:04:22 +01:00
}
public function runSleepingBeauty()
{
$this->isKeepAliveOn = true;
2023-03-24 15:48:57 +01:00
$this->activity = remoteProcess('x=1; while [ $x -le 40 ]; do sleep 0.1 && echo "Welcome $x times" $(( x++ )); done', $this->server);
}
public function runDummyProjectBuild()
{
$this->isKeepAliveOn = true;
$this->activity = remoteProcess(<<<EOT
cd projects/dummy-project
~/.docker/cli-plugins/docker-compose build --no-cache
2023-03-24 15:48:57 +01:00
EOT, $this->server);
}
2023-03-20 13:04:22 +01:00
public function polling()
{
$this->activity?->refresh();
if (data_get($this->activity, 'properties.exitCode') !== null) {
2023-03-20 13:04:22 +01:00
$this->isKeepAliveOn = false;
}
}
}