coolify/app/Livewire/Notifications/Discord.php

68 lines
1.6 KiB
PHP
Raw Normal View History

2023-05-25 18:27:52 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Notifications;
2023-05-25 18:27:52 +02:00
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 Discord extends Component
2023-05-25 18:27:52 +02:00
{
2023-09-06 14:31:38 +02:00
public Team $team;
2024-06-10 22:43:34 +02:00
2023-05-25 18:27:52 +02:00
protected $rules = [
2023-09-06 14:31:38 +02:00
'team.discord_enabled' => 'nullable|boolean',
'team.discord_webhook_url' => 'required|url',
'team.discord_notifications_test' => 'nullable|boolean',
'team.discord_notifications_deployments' => 'nullable|boolean',
'team.discord_notifications_status_changes' => 'nullable|boolean',
'team.discord_notifications_database_backups' => 'nullable|boolean',
'team.discord_notifications_scheduled_tasks' => 'nullable|boolean',
2023-05-25 18:27:52 +02:00
];
2024-06-10 22:43:34 +02:00
2023-05-25 18:27:52 +02:00
protected $validationAttributes = [
2023-09-06 14:31:38 +02:00
'team.discord_webhook_url' => 'Discord Webhook',
2023-05-25 18:27:52 +02:00
];
2023-09-06 14:31:38 +02:00
public function mount()
{
$this->team = auth()->user()->currentTeam();
}
2024-06-10 22:43:34 +02:00
2023-06-01 12:15:33 +02:00
public function instantSave()
{
try {
$this->submit();
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
ray($e->getMessage());
2023-09-06 14:31:38 +02:00
$this->team->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
{
2023-09-06 14:31:38 +02:00
$this->team->save();
2023-09-15 17:30:26 +02:00
refreshSession();
2023-12-07 19:06:32 +01:00
$this->dispatch('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-12-13 12:01:27 +01:00
$this->team?->notify(new Test());
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Test notification sent.');
2023-05-25 18:27:52 +02:00
}
2024-06-10 22:43:34 +02:00
public function render()
{
return view('livewire.notifications.discord');
}
}