94 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire\Project\New;
 | |
| 
 | |
| use App\Models\Server;
 | |
| use App\Models\StandaloneDocker;
 | |
| use App\Models\SwarmDocker;
 | |
| use Countable;
 | |
| use Illuminate\Support\Collection;
 | |
| use Livewire\Component;
 | |
| use Route;
 | |
| 
 | |
| class Select extends Component
 | |
| {
 | |
|     public $current_step = 'type';
 | |
|     public ?int $server = null;
 | |
|     public string $type;
 | |
|     public string $server_id;
 | |
|     public string $destination_uuid;
 | |
|     public Countable|array|Server $servers;
 | |
|     public Collection|array $standaloneDockers = [];
 | |
|     public Collection|array $swarmDockers = [];
 | |
|     public array $parameters;
 | |
| 
 | |
|     public ?string $existingPostgresqlUrl = null;
 | |
| 
 | |
|     protected $queryString = [
 | |
|         'server',
 | |
|     ];
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->parameters = get_route_parameters();
 | |
|         if (isDev()) {
 | |
|             $this->existingPostgresqlUrl = 'postgres://coolify:password@coolify-db:5432';
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // public function addExistingPostgresql()
 | |
|     // {
 | |
|     //     try {
 | |
|     //         instantCommand("psql {$this->existingPostgresqlUrl} -c 'SELECT 1'");
 | |
|     //         $this->emit('success', 'Successfully connected to the database.');
 | |
|     //     } catch (\Exception $e) {
 | |
|     //         return general_error_handler($e, $this);
 | |
|     //     }
 | |
|     // }
 | |
|     public function setType(string $type)
 | |
|     {
 | |
|         $this->type = $type;
 | |
|         if ($type === "existing-postgresql") {
 | |
|             $this->current_step = $type;
 | |
|             return;
 | |
|         }
 | |
|         if (count($this->servers) === 1) {
 | |
|             $server = $this->servers->first();
 | |
|             $this->setServer($server);
 | |
|             if (count($server->destinations()) === 1) {
 | |
|                 $this->setDestination($server->destinations()->first()->uuid);
 | |
|             }
 | |
|         }
 | |
|         if (!is_null($this->server)) {
 | |
|             $foundServer = $this->servers->where('id', $this->server)->first();
 | |
|             if ($foundServer) {
 | |
|                 return $this->setServer($foundServer);
 | |
|             }
 | |
|         }
 | |
|         $this->current_step = 'servers';
 | |
|     }
 | |
| 
 | |
|     public function setServer(Server $server)
 | |
|     {
 | |
|         $this->server_id = $server->id;
 | |
|         $this->standaloneDockers = $server->standaloneDockers;
 | |
|         $this->swarmDockers = $server->swarmDockers;
 | |
|         $this->current_step = 'destinations';
 | |
|     }
 | |
| 
 | |
|     public function setDestination(string $destination_uuid)
 | |
|     {
 | |
|         $this->destination_uuid = $destination_uuid;
 | |
|         redirect()->route('project.resources.new', [
 | |
|             'project_uuid' => $this->parameters['project_uuid'],
 | |
|             'environment_name' => $this->parameters['environment_name'],
 | |
|             'type' => $this->type,
 | |
|             'destination' => $this->destination_uuid,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function load_servers()
 | |
|     {
 | |
|         $this->servers = Server::isUsable()->get();
 | |
|     }
 | |
| }
 | 
