coolify/app/Http/Livewire/Notifications/DiscordSettings.php

58 lines
1.5 KiB
PHP
Raw Normal View History

2023-05-25 18:27:52 +02:00
<?php
namespace App\Http\Livewire\Notifications;
use App\Models\Team;
2023-07-28 10:55:26 +02:00
use App\Notifications\Test;
2023-05-25 18:27:52 +02:00
use Livewire\Component;
class DiscordSettings extends Component
{
2023-06-02 12:34:45 +02:00
public Team $model;
2023-05-25 18:27:52 +02:00
protected $rules = [
'model.discord_enabled' => 'nullable|boolean',
'model.discord_webhook_url' => 'required|url',
'model.discord_notifications_test' => 'nullable|boolean',
'model.discord_notifications_deployments' => 'nullable|boolean',
'model.discord_notifications_status_changes' => 'nullable|boolean',
2023-08-10 21:00:02 +02:00
'model.discord_notifications_database_backups' => 'nullable|boolean',
2023-05-25 18:27:52 +02:00
];
protected $validationAttributes = [
'model.discord_webhook_url' => 'Discord Webhook',
2023-05-25 18:27:52 +02:00
];
2023-06-01 12:15:33 +02:00
public function instantSave()
{
try {
$this->submit();
} catch (\Exception $e) {
ray($e->getMessage());
$this->model->discord_enabled = false;
2023-06-01 13:24:20 +02:00
$this->validate();
2023-06-01 12:15:33 +02:00
}
}
public function submit()
{
$this->resetErrorBag();
$this->validate();
$this->saveModel();
}
2023-06-19 15:24:04 +02:00
public function saveModel()
2023-05-25 18:27:52 +02:00
{
ray($this->model);
2023-05-25 18:27:52 +02:00
$this->model->save();
2023-06-01 12:15:33 +02:00
if (is_a($this->model, Team::class)) {
2023-05-25 18:27:52 +02:00
session(['currentTeam' => $this->model]);
}
2023-06-19 14:31:42 +02:00
$this->emit('success', 'Settings saved.');
2023-05-25 18:27:52 +02:00
}
2023-06-01 12:15:33 +02:00
public function sendTestNotification()
2023-05-25 18:27:52 +02:00
{
2023-07-28 10:55:26 +02:00
$this->model->notify(new Test);
2023-06-20 15:04:46 +02:00
$this->emit('success', 'Test notification sent.');
2023-05-25 18:27:52 +02:00
}
}