50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Server\New;
|
|
|
|
use App\Models\PrivateKey;
|
|
use App\Models\Server;
|
|
use Livewire\Component;
|
|
|
|
class ByIp extends Component
|
|
{
|
|
public $private_keys;
|
|
public int $private_key_id;
|
|
public $new_private_key_name;
|
|
public $new_private_key_description;
|
|
public $new_private_key_value;
|
|
|
|
public string $name;
|
|
public string|null $description = null;
|
|
public string $ip;
|
|
public string $user = 'root';
|
|
public int $port = 22;
|
|
|
|
public function mount()
|
|
{
|
|
$this->name = generateRandomName();
|
|
$this->private_keys = PrivateKey::where('team_id', session('currentTeam')->id)->get();
|
|
}
|
|
public function setPrivateKey($private_key_id)
|
|
{
|
|
$this->private_key_id = $private_key_id;
|
|
}
|
|
public function submit()
|
|
{
|
|
if (!$this->private_key_id) {
|
|
$this->addError('private_key_id', 'The private key field is required.');
|
|
return;
|
|
}
|
|
$server = Server::create([
|
|
'name' => $this->name,
|
|
'description' => $this->description,
|
|
'ip' => $this->ip,
|
|
'user' => $this->user,
|
|
'port' => $this->port,
|
|
'team_id' => session('currentTeam')->id,
|
|
'private_key_id' => $this->private_key_id
|
|
]);
|
|
return redirect()->route('server.show', $server->uuid);
|
|
}
|
|
}
|