79 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Livewire\Project\Application;
 | 
						|
 | 
						|
use App\Jobs\ContainerStatusJob;
 | 
						|
use App\Models\Application;
 | 
						|
use Livewire\Component;
 | 
						|
use Visus\Cuid2\Cuid2;
 | 
						|
 | 
						|
class Heading extends Component
 | 
						|
{
 | 
						|
    public Application $application;
 | 
						|
    public array $parameters;
 | 
						|
 | 
						|
    protected string $deploymentUuid;
 | 
						|
 | 
						|
    public function mount()
 | 
						|
    {
 | 
						|
        $this->parameters = get_route_parameters();
 | 
						|
    }
 | 
						|
 | 
						|
    public function check_status()
 | 
						|
    {
 | 
						|
        dispatch(new ContainerStatusJob($this->application->destination->server));
 | 
						|
        $this->application->refresh();
 | 
						|
        $this->application->previews->each(function ($preview) {
 | 
						|
            $preview->refresh();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function force_deploy_without_cache()
 | 
						|
    {
 | 
						|
        $this->deploy(force_rebuild: true);
 | 
						|
    }
 | 
						|
 | 
						|
    public function deploy(bool $force_rebuild = false)
 | 
						|
    {
 | 
						|
        $this->setDeploymentUuid();
 | 
						|
        queue_application_deployment(
 | 
						|
            application_id: $this->application->id,
 | 
						|
            deployment_uuid: $this->deploymentUuid,
 | 
						|
            force_rebuild: $force_rebuild,
 | 
						|
        );
 | 
						|
        return redirect()->route('project.application.deployment', [
 | 
						|
            'project_uuid' => $this->parameters['project_uuid'],
 | 
						|
            'application_uuid' => $this->parameters['application_uuid'],
 | 
						|
            'deployment_uuid' => $this->deploymentUuid,
 | 
						|
            'environment_name' => $this->parameters['environment_name'],
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    protected function setDeploymentUuid()
 | 
						|
    {
 | 
						|
        $this->deploymentUuid = new Cuid2(7);
 | 
						|
        $this->parameters['deployment_uuid'] = $this->deploymentUuid;
 | 
						|
    }
 | 
						|
 | 
						|
    public function stop()
 | 
						|
    {
 | 
						|
        $containers = getCurrentApplicationContainerStatus($this->application->destination->server, $this->application->id);
 | 
						|
        if ($containers->count() === 0) {
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        foreach ($containers as $container) {
 | 
						|
            $containerName = data_get($container, 'Names');
 | 
						|
            if ($containerName) {
 | 
						|
                instant_remote_process(
 | 
						|
                    ["docker rm -f {$containerName}"],
 | 
						|
                    $this->application->destination->server
 | 
						|
                );
 | 
						|
                $this->application->status = 'exited';
 | 
						|
                $this->application->save();
 | 
						|
                // $this->application->environment->project->team->notify(new StatusChanged($this->application));
 | 
						|
            }
 | 
						|
        }
 | 
						|
        $this->application->refresh();
 | 
						|
    }
 | 
						|
}
 |