67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire\Project\Application;
 | |
| 
 | |
| use App\Jobs\DeployApplicationJob;
 | |
| use App\Jobs\RollbackApplicationJob;
 | |
| use App\Models\Application;
 | |
| use Livewire\Component;
 | |
| use Illuminate\Support\Str;
 | |
| use Visus\Cuid2\Cuid2;
 | |
| 
 | |
| class Rollback extends Component
 | |
| {
 | |
|     public Application $application;
 | |
|     public $images = [];
 | |
|     public string|null $current;
 | |
|     public array $parameters;
 | |
| 
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->parameters = getParameters();
 | |
|     }
 | |
|     public function rollbackImage($tag)
 | |
|     {
 | |
|         $deployment_uuid = new Cuid2(7);
 | |
| 
 | |
|         dispatch(new RollbackApplicationJob(
 | |
|             deployment_uuid: $deployment_uuid,
 | |
|             application_uuid: $this->application->uuid,
 | |
|             commit: $tag,
 | |
|         ));
 | |
| 
 | |
|         $this->parameters['deployment_uuid'] = $deployment_uuid;
 | |
|         return redirect()->route('project.application.deployment', $this->parameters);
 | |
|     }
 | |
|     public function loadImages()
 | |
|     {
 | |
|         try {
 | |
|             $image = $this->application->uuid;
 | |
|             $output = instantRemoteProcess([
 | |
|                 "docker inspect --format='{{.Config.Image}}' {$this->application->uuid}",
 | |
|             ], $this->application->destination->server, throwError: false);
 | |
|             $current_tag = Str::of($output)->trim()->explode(":");
 | |
|             $this->current = data_get($current_tag, 1);
 | |
| 
 | |
|             $output = instantRemoteProcess([
 | |
|                 "docker images --format '{{.Repository}}#{{.Tag}}#{{.CreatedAt}}'",
 | |
|             ], $this->application->destination->server);
 | |
|             $this->images = Str::of($output)->trim()->explode("\n")->filter(function ($item) use ($image) {
 | |
|                 return Str::of($item)->contains($image);
 | |
|             })->map(function ($item) {
 | |
|                 $item = Str::of($item)->explode('#');
 | |
|                 if ($item[1] === $this->current) {
 | |
|                     $is_current = true;
 | |
|                 }
 | |
|                 return [
 | |
|                     'tag' => $item[1],
 | |
|                     'created_at' => $item[2],
 | |
|                     'is_current' => $is_current ?? null,
 | |
|                 ];
 | |
|             })->toArray();
 | |
|         } catch (\Throwable $e) {
 | |
|             return generalErrorHandler($e, $this);
 | |
|         }
 | |
|     }
 | |
| }
 | 
