coolify/app/Http/Livewire/PrivateKey/Create.php

46 lines
1.3 KiB
PHP
Raw Normal View History

2023-05-03 12:38:57 +02:00
<?php
namespace App\Http\Livewire\PrivateKey;
use App\Models\PrivateKey;
use Livewire\Component;
class Create extends Component
{
public string|null $from = null;
2023-05-12 15:39:07 +02:00
public string $name;
2023-05-15 14:54:03 +02:00
public string|null $description = null;
2023-05-12 15:39:07 +02:00
public string $value;
2023-06-07 16:47:10 +02:00
protected $rules = [
'name' => 'required|string',
'value' => 'required|string',
];
protected $validationAttributes = [
2023-06-16 12:35:40 +02:00
'name' => 'name',
'value' => 'private Key',
2023-06-07 16:47:10 +02:00
];
2023-05-03 12:38:57 +02:00
public function createPrivateKey()
{
2023-06-07 16:47:10 +02:00
$this->validate();
try {
$this->value = trim($this->value);
if (!str_ends_with($this->value, "\n")) {
$this->value .= "\n";
}
$private_key = PrivateKey::create([
'name' => $this->name,
'description' => $this->description,
'private_key' => $this->value,
2023-08-22 17:44:49 +02:00
'team_id' => currentTeam()->id
2023-06-07 16:47:10 +02:00
]);
if ($this->from === 'server') {
return redirect()->route('server.create');
}
return redirect()->route('security.private-key.show', ['private_key_uuid' => $private_key->uuid]);
2023-06-07 16:47:10 +02:00
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e, that: $this);
2023-05-16 11:39:18 +02:00
}
2023-05-03 12:38:57 +02:00
}
}