73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Livewire\Server;
 | 
						|
 | 
						|
use App\Models\Server;
 | 
						|
use Livewire\Component;
 | 
						|
 | 
						|
class ShowPrivateKey extends Component
 | 
						|
{
 | 
						|
    public Server $server;
 | 
						|
    public $privateKeys;
 | 
						|
    public $parameters;
 | 
						|
 | 
						|
    public function setPrivateKey($newPrivateKeyId)
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            refresh_server_connection($this->server->privateKey);
 | 
						|
            $oldPrivateKeyId = $this->server->private_key_id;
 | 
						|
            $this->server->update([
 | 
						|
                'private_key_id' => $newPrivateKeyId
 | 
						|
            ]);
 | 
						|
            $this->server->refresh();
 | 
						|
            refresh_server_connection($this->server->privateKey);
 | 
						|
            $this->checkConnection();
 | 
						|
        } catch (\Throwable $e) {
 | 
						|
            $this->server->update([
 | 
						|
                'private_key_id' => $oldPrivateKeyId
 | 
						|
            ]);
 | 
						|
            $this->server->refresh();
 | 
						|
            refresh_server_connection($this->server->privateKey);
 | 
						|
            return handleError($e, $this);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function checkConnection()
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            ['uptime' => $uptime, 'dockerVersion' => $dockerVersion] = validateServer($this->server, true);
 | 
						|
            if ($uptime) {
 | 
						|
                $this->server->settings->update([
 | 
						|
                    'is_reachable' => true
 | 
						|
                ]);
 | 
						|
                $this->emit('success', 'Server is reachable with this private key.');
 | 
						|
            } else {
 | 
						|
                $this->server->settings->update([
 | 
						|
                    'is_reachable' => false,
 | 
						|
                    'is_usable' => false
 | 
						|
                ]);
 | 
						|
                $this->emit('error', 'Server is not reachable with this private key.');
 | 
						|
                return;
 | 
						|
            }
 | 
						|
            if ($dockerVersion) {
 | 
						|
                $this->server->settings->update([
 | 
						|
                    'is_usable' => true
 | 
						|
                ]);
 | 
						|
                $this->emit('success', 'Server is usable for Coolify.');
 | 
						|
            } else {
 | 
						|
                $this->server->settings->update([
 | 
						|
                    'is_usable' => false
 | 
						|
                ]);
 | 
						|
                $this->emit('error', 'Old (lower than 23) or no Docker version detected. Install Docker Engine on the General tab.');
 | 
						|
            }
 | 
						|
        } catch (\Throwable $e) {
 | 
						|
            return handleError($e, $this);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function mount()
 | 
						|
    {
 | 
						|
        $this->parameters = get_route_parameters();
 | 
						|
    }
 | 
						|
}
 |