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

71 lines
2.1 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 App\Models\InstanceSettings;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Route;
use Livewire\Component;
use Illuminate\Support\Str;
class Change extends Component
{
public string $host;
public $parameters;
public GithubApp $github_app;
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',
'github_app.installation_id' => 'required|int',
'github_app.client_id' => 'required|string',
'github_app.client_secret' => 'required|string',
'github_app.webhook_secret' => 'required|string',
'github_app.is_system_wide' => 'required|bool',
];
public function submit()
{
try {
$this->validate();
$this->github_app->save();
} catch (\Exception $e) {
2023-05-09 11:33:50 +02:00
return generalErrorHandler($e, $this);
2023-05-08 13:36:49 +02:00
}
}
public function instantSave()
{
try {
$this->github_app->is_system_wide = $this->is_system_wide;
$this->github_app->save();
2023-05-09 09:54:43 +02:00
$this->emit('saved', 'GitHub settings updated!');
2023-05-08 13:36:49 +02:00
} catch (\Exception $e) {
2023-05-09 11:33:50 +02:00
return generalErrorHandler($e, $this);
2023-05-08 13:36:49 +02:00
}
}
public function mount()
{
2023-05-08 14:31:18 +02:00
$settings = InstanceSettings::first();
if ($settings->fqdn) {
$this->host = $settings->fqdn;
}
2023-05-08 13:36:49 +02:00
$this->parameters = getParameters();
$this->is_system_wide = $this->github_app->is_system_wide;
}
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();
redirect()->route('dashboard');
} catch (\Exception $e) {
2023-05-09 11:33:50 +02:00
return generalErrorHandler($e, $this);
2023-05-08 13:36:49 +02:00
}
}
}