fix: private key change view

This commit is contained in:
Andras Bacsai
2023-05-03 14:24:18 +02:00
parent abf778ce86
commit 48df84fb19
3 changed files with 19 additions and 17 deletions

View File

@@ -7,12 +7,18 @@ use Livewire\Component;
class Change extends Component
{
public $private_keys;
public string $private_key_uuid;
public PrivateKey $private_key;
public $private_key_uuid;
public $private_key_value;
public $private_key_name;
public $private_key_description;
protected $rules = [
'private_key.name' => 'required|string',
'private_key.description' => 'nullable|string',
'private_key.private_key' => 'required|string'
];
public function mount()
{
$this->private_key = PrivateKey::where('uuid', $this->private_key_uuid)->first();
}
public function delete($private_key_uuid)
{
PrivateKey::where('uuid', $private_key_uuid)->delete();
@@ -22,15 +28,11 @@ class Change extends Component
public function changePrivateKey()
{
try {
$this->private_key_value = trim($this->private_key_value);
if (!str_ends_with($this->private_key_value, "\n")) {
$this->private_key_value .= "\n";
$this->private_key->private_key = trim($this->private_key->private_key);
if (!str_ends_with($this->private_key->private_key, "\n")) {
$this->private_key->private_key .= "\n";
}
PrivateKey::where('uuid', $this->private_key_uuid)->update([
'name' => $this->private_key_name,
'description' => $this->private_key_description,
'private_key' => $this->private_key_value,
]);
$this->private_key->save();
session('currentTeam')->privateKeys = PrivateKey::where('team_id', session('currentTeam')->id)->get();
} catch (\Exception $e) {
$this->addError('private_key_value', $e->getMessage());