2023-03-28 20:13:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
|
2023-03-31 11:32:07 +00:00
|
|
|
use App\Jobs\DeployApplicationJob;
|
2023-03-28 20:13:08 +00:00
|
|
|
use App\Models\Application;
|
|
|
|
use Livewire\Component;
|
|
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
|
|
|
|
class DeployApplication extends Component
|
|
|
|
{
|
|
|
|
public string $application_uuid;
|
|
|
|
public $activity;
|
2023-03-31 07:42:13 +00:00
|
|
|
public $status;
|
|
|
|
public Application $application;
|
|
|
|
public $destination;
|
2023-03-30 09:10:31 +00:00
|
|
|
|
2023-03-28 20:13:08 +00:00
|
|
|
protected string $deployment_uuid;
|
|
|
|
protected array $command = [];
|
2023-03-30 09:10:31 +00:00
|
|
|
protected $source;
|
2023-03-28 20:13:08 +00:00
|
|
|
|
2023-03-31 07:42:13 +00:00
|
|
|
public function mount($application_uuid)
|
|
|
|
{
|
2023-03-30 18:19:11 +00:00
|
|
|
$this->application_uuid = $application_uuid;
|
2023-03-31 07:42:13 +00:00
|
|
|
$this->application = Application::where('uuid', $this->application_uuid)->first();
|
|
|
|
$this->destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
|
2023-03-30 18:19:11 +00:00
|
|
|
}
|
2023-03-31 11:32:07 +00:00
|
|
|
|
2023-03-30 18:19:11 +00:00
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.deploy-application');
|
|
|
|
}
|
2023-03-30 09:10:31 +00:00
|
|
|
|
2023-03-28 20:13:08 +00:00
|
|
|
|
2023-04-14 09:24:58 +00:00
|
|
|
public function start()
|
2023-03-31 11:32:07 +00:00
|
|
|
{
|
2023-03-28 20:13:08 +00:00
|
|
|
// Create Deployment ID
|
2023-03-29 10:52:22 +00:00
|
|
|
$this->deployment_uuid = new Cuid2(7);
|
2023-03-29 13:47:56 +00:00
|
|
|
|
2023-03-31 11:32:07 +00:00
|
|
|
dispatch(new DeployApplicationJob(
|
|
|
|
deployment_uuid: $this->deployment_uuid,
|
|
|
|
application_uuid: $this->application_uuid,
|
|
|
|
));
|
2023-03-28 20:13:08 +00:00
|
|
|
|
2023-03-29 10:52:22 +00:00
|
|
|
$currentUrl = url()->previous();
|
|
|
|
$deploymentUrl = "$currentUrl/deployment/$this->deployment_uuid";
|
|
|
|
return redirect($deploymentUrl);
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
2023-03-30 18:19:11 +00:00
|
|
|
|
|
|
|
public function stop()
|
2023-03-29 13:47:56 +00:00
|
|
|
{
|
2023-04-14 09:24:58 +00:00
|
|
|
runRemoteCommandSync($this->destination->server, ["docker stop -t 0 {$this->application_uuid} >/dev/null 2>&1"]);
|
|
|
|
$this->application->status = 'stopped';
|
2023-03-31 07:42:13 +00:00
|
|
|
$this->application->save();
|
|
|
|
}
|
2023-03-31 11:32:07 +00:00
|
|
|
|
2023-03-31 07:42:13 +00:00
|
|
|
public function pollingStatus()
|
|
|
|
{
|
|
|
|
$this->application->refresh();
|
2023-03-29 13:47:56 +00:00
|
|
|
}
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|