Files
speedtest-tracker/app/Notifications/AppriseChannel.php
T
Alex Justesen a47e3225e5 Release v1.12.0 (#2493)
Co-authored-by: Sven van Ginkel <svenvanginkel@icloud.com>
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
2025-12-05 15:33:44 -05:00

76 lines
2.3 KiB
PHP

<?php
namespace App\Notifications;
use App\Settings\NotificationSettings;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
class AppriseChannel
{
/**
* Send the given notification.
*/
public function send(object $notifiable, Notification $notification): void
{
// Get the Apprise message from the notification
$message = $notification->toApprise($notifiable);
if (! $message) {
return;
}
$settings = app(NotificationSettings::class);
$appriseUrl = rtrim($settings->apprise_server_url ?? '', '/');
if (empty($appriseUrl)) {
Log::warning('Apprise notification skipped: No Server URL configured');
return;
}
try {
$request = Http::timeout(5)
->withHeaders([
'Content-Type' => 'application/json',
]);
// If SSL verification is disabled in settings, skip it
if (! $settings->apprise_verify_ssl) {
$request = $request->withoutVerifying();
}
$response = $request->post("{$appriseUrl}/notify", [
'urls' => $message->urls,
'title' => $message->title,
'body' => $message->body,
'type' => $message->type ?? 'info',
'format' => $message->format ?? 'text',
'tag' => $message->tag ?? null,
]);
if ($response->failed()) {
Log::error('Apprise notification failed', [
'channel' => $message->urls,
'instance' => $appriseUrl,
'status' => $response->status(),
'body' => $response->body(),
]);
} else {
Log::info('Apprise notification sent', [
'channel' => $message->urls,
'instance' => $appriseUrl,
]);
}
} catch (\Throwable $e) {
Log::error('Apprise notification exception', [
'channel' => $message->urls ?? 'unknown',
'instance' => $appriseUrl,
'message' => $e->getMessage(),
'exception' => get_class($e),
]);
}
}
}