Files
JeffGandGitHub d57a883e53 Implement iOS NSE notifications and Android push token plumbing (#673)
* Add remote push notification plumbing

* Checkpoint notification reliability cleanup

* Prepare notification reliability PR

* Fix notification PR review findings

* Address notification review follow-ups

* Clean up failed iOS data migration copies

* Address app resume and migration cleanup review

* Restore coverage for notification review fixes

* Fix App Group migration guard

* Address notification PR review feedback

* Cover notification review edge cases

* Address notification test review feedback

* Address NSE migration and startup retry review

* Use foreground catch-up for notification refresh

* Update whitenoise-rs foreground catch-up dependency

* Cover notification catch-up error paths

* Fix notification review edge cases
2026-05-20 14:47:09 +02:00

178 lines
5.7 KiB
Dart

import 'dart:convert' show jsonDecode, jsonEncode, utf8;
import 'dart:io' show Platform;
import 'package:crypto/crypto.dart' show sha256;
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:logging/logging.dart';
final _logger = Logger('NotificationService');
const _payloadKeyGroupId = 'groupId';
const _payloadKeyTrigger = 'trigger';
const _payloadKeyReceiverPubkey = 'receiverPubkey';
const _payloadTriggerMessage = 'message';
const _payloadTriggerInvite = 'invite';
class NotificationService {
NotificationService({
FlutterLocalNotificationsPlugin? plugin,
void Function(String groupId, bool isInvite, String receiverPubkey)? onNotificationTap,
bool? enabled,
}) : _plugin = plugin ?? FlutterLocalNotificationsPlugin(),
_onNotificationTap = onNotificationTap,
_enabled = enabled ?? notificationsSupported();
final FlutterLocalNotificationsPlugin _plugin;
final void Function(String groupId, bool isInvite, String receiverPubkey)? _onNotificationTap;
final bool _enabled;
bool _initialized = false;
static const _channelId = 'messages';
static const _channelName = 'Messages';
static const _channelDescription = 'Notifications for new messages and invites';
Future<void> initialize() async {
if (!_enabled) return;
if (_initialized) return;
const androidSettings = AndroidInitializationSettings('@mipmap/ic_notification');
const darwinSettings = DarwinInitializationSettings(
requestAlertPermission: false,
requestSoundPermission: false,
requestBadgePermission: false,
);
const initSettings = InitializationSettings(
android: androidSettings,
iOS: darwinSettings,
);
await _plugin.initialize(
settings: initSettings,
onDidReceiveNotificationResponse: _handleNotificationTap,
);
_initialized = true;
_logger.info('NotificationService initialized');
}
void _handleNotificationTap(NotificationResponse response) {
final payload = response.payload;
if (payload == null || _onNotificationTap == null) return;
try {
final data = jsonDecode(payload) as Map<String, dynamic>;
final groupId = data[_payloadKeyGroupId] as String?;
final trigger = data[_payloadKeyTrigger] as String?;
final receiverPubkey = data[_payloadKeyReceiverPubkey] as String?;
if (groupId == null ||
groupId.isEmpty ||
trigger == null ||
receiverPubkey == null ||
receiverPubkey.isEmpty) {
_logger.warning('Malformed notification payload: $payload');
return;
}
if (trigger != _payloadTriggerMessage && trigger != _payloadTriggerInvite) {
_logger.warning('Unknown notification trigger: $trigger');
return;
}
final isInvite = trigger == _payloadTriggerInvite;
_onNotificationTap(groupId, isInvite, receiverPubkey);
} catch (e) {
_logger.warning('Failed to parse notification payload: $payload', e);
}
}
Future<void> show({
required String groupId,
required String title,
required String body,
required String receiverPubkey,
bool isInvite = false,
}) async {
if (!_enabled) return;
if (!_initialized) {
_logger.warning('NotificationService not initialized, skipping notification');
return;
}
final notificationId = generateNotificationId(groupId);
final trigger = isInvite ? _payloadTriggerInvite : _payloadTriggerMessage;
final payload = jsonEncode({
_payloadKeyGroupId: groupId,
_payloadKeyTrigger: trigger,
_payloadKeyReceiverPubkey: receiverPubkey,
});
const androidDetails = AndroidNotificationDetails(
_channelId,
_channelName,
channelDescription: _channelDescription,
importance: Importance.high,
priority: Priority.high,
);
const darwinDetails = DarwinNotificationDetails(
presentAlert: true,
presentBanner: true,
presentList: true,
presentSound: true,
);
const details = NotificationDetails(android: androidDetails, iOS: darwinDetails);
await _plugin.show(
id: notificationId,
title: title,
body: body,
notificationDetails: details,
payload: payload,
);
_logger.fine('Showed notification for group $groupId: $title');
}
Future<void> cancelForGroup(String groupId) async {
if (!_enabled) return;
if (!_initialized) {
_logger.warning('NotificationService not initialized, skipping cancel');
}
final notificationId = generateNotificationId(groupId);
await _plugin.cancel(id: notificationId);
_logger.fine('Cancelled notification for group $groupId');
}
Future<bool> requestPermission() async {
if (!_enabled) return false;
final androidPlugin = _plugin
.resolvePlatformSpecificImplementation<AndroidFlutterLocalNotificationsPlugin>();
final iosPlugin = _plugin
.resolvePlatformSpecificImplementation<IOSFlutterLocalNotificationsPlugin>();
if (androidPlugin == null && iosPlugin == null) return false;
final granted =
await androidPlugin?.requestNotificationsPermission() ??
await iosPlugin?.requestPermissions(
alert: true,
sound: true,
badge: true,
);
_logger.info('Notification permission ${granted == true ? 'granted' : 'denied'}');
return granted ?? false;
}
static int generateNotificationId(String groupId) {
final bytes = sha256.convert(utf8.encode(groupId)).bytes;
final id = (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3];
return id & 0x7FFFFFFF;
}
}
bool notificationsSupported({bool? isAndroid, bool? isIOS}) {
return (isAndroid ?? Platform.isAndroid) || (isIOS ?? Platform.isIOS);
}