Files
fotospiel-app/app/Services/Packages/TenantNotificationLogger.php
Codex Agent b780d82d62 Added Phase‑1 continuation work across deep links, offline moderation queue, and admin push.
resources/js/admin/mobile/lib.
  - Admin push is end‑to‑end: new backend model/migration/service/job + API endpoints, admin runtime config, push‑aware
    service worker, and a settings toggle via useAdminPushSubscription. Notifications now auto‑refresh on push.
  - New PHP/JS tests: admin push API feature test and queue/haptics unit tests
  Added admin-specific PWA icon assets and wired them into the admin manifest, service worker, and admin shell, plus a
  new “Device & permissions” card in mobile Settings with a persistent storage action and translations.
  Details: public/manifest.json, public/admin-sw.js, resources/views/admin.blade.php, new icons in public/; new hook
  resources/js/admin/mobile/hooks/useDevicePermissions.ts, helpers/tests in resources/js/admin/mobile/lib/
  devicePermissions.ts + resources/js/admin/mobile/lib/devicePermissions.test.ts, and Settings UI updates in resources/
  js/admin/mobile/SettingsPage.tsx with copy in resources/js/admin/i18n/locales/en/management.json and resources/js/
admin/i18n/locales/de/management.json.
2025-12-28 15:00:47 +01:00

41 lines
1.2 KiB
PHP

<?php
namespace App\Services\Packages;
use App\Jobs\SendTenantAdminPushNotification;
use App\Models\Tenant;
use App\Models\TenantNotificationLog;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Log;
class TenantNotificationLogger
{
public function log(Tenant $tenant, array $attributes): TenantNotificationLog
{
$context = Arr::get($attributes, 'context', []);
$log = $tenant->notificationLogs()->create([
'type' => $attributes['type'] ?? 'unknown',
'channel' => $attributes['channel'] ?? 'mail',
'recipient' => $attributes['recipient'] ?? null,
'status' => $attributes['status'] ?? 'sent',
'context' => $context,
'sent_at' => $attributes['sent_at'] ?? now(),
'failed_at' => $attributes['failed_at'] ?? null,
'failure_reason' => $attributes['failure_reason'] ?? null,
]);
Log::info('tenant_notification_log', [
'tenant_id' => $tenant->id,
'log_id' => $log->id,
'type' => $log->type,
'status' => $log->status,
'recipient' => $log->recipient,
]);
SendTenantAdminPushNotification::dispatch($log->id);
return $log;
}
}