- Implemented push notifications with a service worker (sw.ts) to handle caching and notifications. - Added API routes for push subscription and notification management in routes/api.php. - Created NotificationTest to validate notification service functionality and ensure correct notifications are sent based on user roles and actions. - Updated Permissions component to manage notification permissions and subscriptions. - Enhanced CategoryIndex component to highlight categories based on notifications. - Excluded service worker from TypeScript compilation in tsconfig.json. - Updated Vite configuration to include service worker in the build process.
32 lines
874 B
PHP
32 lines
874 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\User;
|
|
use App\Notifications\WebPushNotification;
|
|
|
|
class NotificationService
|
|
{
|
|
public static function notify(array $roles, string $title, string $body, string $url, ?User $additionalUser = null): void
|
|
{
|
|
$users = User::query()
|
|
->where('is_active', true)
|
|
->whereHas('roles', fn ($q) => $q->whereIn('name', $roles))
|
|
->get();
|
|
|
|
if ($additionalUser && ! $users->contains('id', $additionalUser->id)) {
|
|
$users->push($additionalUser);
|
|
}
|
|
|
|
$users->each(function (User $user) use ($title, $body, $url) {
|
|
$user->notifications()->create([
|
|
'title' => $title,
|
|
'body' => $body,
|
|
'url' => $url,
|
|
]);
|
|
|
|
$user->notify(new WebPushNotification($title, $body));
|
|
});
|
|
}
|
|
}
|