coolify/app/Http/Livewire/Source/Github/Change.php

66 lines
1.8 KiB
PHP
Raw Normal View History

2023-05-08 13:36:49 +02:00
<?php
namespace App\Http\Livewire\Source\Github;
use App\Models\GithubApp;
use Livewire\Component;
class Change extends Component
{
2023-06-14 09:44:40 +02:00
public string $webhook_endpoint;
public string|null $ipv4;
public string|null $ipv6;
public string|null $fqdn;
2023-06-14 13:07:58 +02:00
public bool|null $default_permissions = true;
public bool|null $preview_deployment_permissions = true;
2023-05-08 13:36:49 +02:00
public $parameters;
public GithubApp $github_app;
2023-05-18 13:26:35 +02:00
public string $name;
2023-05-08 13:36:49 +02:00
public bool $is_system_wide;
protected $rules = [
'github_app.name' => 'required|string',
'github_app.organization' => 'nullable|string',
'github_app.api_url' => 'required|string',
'github_app.html_url' => 'required|string',
'github_app.custom_user' => 'required|string',
'github_app.custom_port' => 'required|int',
'github_app.app_id' => 'required|int',
2023-06-14 09:44:40 +02:00
'github_app.installation_id' => 'nullable',
'github_app.client_id' => 'nullable',
'github_app.client_secret' => 'nullable',
'github_app.webhook_secret' => 'nullable',
2023-05-08 13:36:49 +02:00
'github_app.is_system_wide' => 'required|bool',
];
2023-06-14 09:44:40 +02:00
public function mount()
{
$this->webhook_endpoint = $this->ipv4;
2023-06-15 09:15:41 +02:00
$this->parameters = getRouteParameters();
2023-06-14 09:44:40 +02:00
$this->is_system_wide = $this->github_app->is_system_wide;
}
2023-05-08 13:36:49 +02:00
public function submit()
{
try {
$this->validate();
$this->github_app->save();
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e, that: $this);
2023-05-08 13:36:49 +02:00
}
}
public function instantSave()
{
}
2023-06-14 09:44:40 +02:00
2023-05-09 10:01:57 +02:00
public function delete()
2023-05-08 13:36:49 +02:00
{
2023-05-09 10:01:57 +02:00
try {
$this->github_app->delete();
2023-06-19 09:44:39 +02:00
redirect()->route('source.all');
2023-05-09 10:01:57 +02:00
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e, that: $this);
2023-05-08 13:36:49 +02:00
}
}
}