coolify/app/Livewire/SettingsEmail.php

134 lines
4.0 KiB
PHP
Raw Normal View History

2023-06-06 15:30:33 +02:00
<?php
namespace App\Livewire;
2023-06-06 15:30:33 +02:00
use App\Models\InstanceSettings;
2023-07-28 10:55:26 +02:00
use App\Notifications\TransactionalEmails\Test;
2023-06-06 15:30:33 +02:00
use Livewire\Component;
class SettingsEmail extends Component
2023-06-06 15:30:33 +02:00
{
public InstanceSettings $settings;
2024-06-10 22:43:34 +02:00
2023-07-28 10:55:26 +02:00
public string $emails;
2024-06-10 22:43:34 +02:00
2023-06-06 15:30:33 +02:00
protected $rules = [
'settings.smtp_enabled' => 'nullable|boolean',
'settings.smtp_host' => 'required',
'settings.smtp_port' => 'required|numeric',
'settings.smtp_encryption' => 'nullable',
'settings.smtp_username' => 'nullable',
'settings.smtp_password' => 'nullable',
'settings.smtp_timeout' => 'nullable',
'settings.smtp_from_address' => 'required|email',
'settings.smtp_from_name' => 'required',
'settings.resend_enabled' => 'nullable|boolean',
2024-06-10 22:43:34 +02:00
'settings.resend_api_key' => 'nullable',
2023-06-06 15:30:33 +02:00
];
2024-06-10 22:43:34 +02:00
2023-06-13 10:51:58 +02:00
protected $validationAttributes = [
'settings.smtp_from_address' => 'From Address',
'settings.smtp_from_name' => 'From Name',
'settings.smtp_recipients' => 'Recipients',
'settings.smtp_host' => 'Host',
'settings.smtp_port' => 'Port',
'settings.smtp_encryption' => 'Encryption',
'settings.smtp_username' => 'Username',
'settings.smtp_password' => 'Password',
'settings.smtp_timeout' => 'Timeout',
2024-06-10 22:43:34 +02:00
'settings.resend_api_key' => 'Resend API Key',
2023-06-13 10:51:58 +02:00
];
2024-06-10 22:43:34 +02:00
2023-06-20 21:18:14 +02:00
public function mount()
{
if (isInstanceAdmin()) {
$this->settings = InstanceSettings::get();
$this->emails = auth()->user()->email;
} else {
return redirect()->route('dashboard');
}
2023-06-20 21:18:14 +02:00
}
2024-06-10 22:43:34 +02:00
public function submitFromFields()
{
try {
$this->resetErrorBag();
$this->validate([
'settings.smtp_from_address' => 'required|email',
'settings.smtp_from_name' => 'required',
]);
$this->settings->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Settings saved.');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 22:43:34 +02:00
public function submitResend()
{
try {
$this->resetErrorBag();
$this->validate([
'settings.smtp_from_address' => 'required|email',
'settings.smtp_from_name' => 'required',
2024-06-10 22:43:34 +02:00
'settings.resend_api_key' => 'required',
]);
$this->settings->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Settings saved.');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
$this->settings->resend_enabled = false;
2024-06-10 22:43:34 +02:00
return handleError($e, $this);
}
}
2024-06-10 22:43:34 +02:00
public function instantSaveResend()
{
2023-09-08 16:56:14 +02:00
try {
$this->settings->smtp_enabled = false;
$this->submitResend();
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-09-08 16:56:14 +02:00
}
}
2024-06-10 22:43:34 +02:00
2023-06-13 10:51:58 +02:00
public function instantSave()
{
try {
2023-09-08 16:56:14 +02:00
$this->settings->resend_enabled = false;
2023-06-13 10:51:58 +02:00
$this->submit();
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-13 10:51:58 +02:00
}
}
2023-06-06 15:30:33 +02:00
public function submit()
{
try {
$this->resetErrorBag();
$this->validate([
'settings.smtp_from_address' => 'required|email',
'settings.smtp_from_name' => 'required',
'settings.smtp_host' => 'required',
'settings.smtp_port' => 'required|numeric',
'settings.smtp_encryption' => 'nullable',
'settings.smtp_username' => 'nullable',
'settings.smtp_password' => 'nullable',
'settings.smtp_timeout' => 'nullable',
]);
$this->settings->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Settings saved.');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-20 21:18:14 +02:00
}
2023-06-06 15:30:33 +02:00
}
public function sendTestNotification()
{
2023-12-13 12:01:27 +01:00
$this->settings?->notify(new Test($this->emails));
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Test email sent.');
}
}