mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
POST /api/notifications/test previously returned a blanket 200 even when there
were no registered devices, so a test that reached nobody looked like a success.
push::send now returns the number of devices the relay confirmed delivery to, and
the endpoint returns it as {"delivered": N}. Settings shows "sent to N device(s)"
on success and an explicit "No devices are registered..." warning when N is 0,
which is the case that previously masqueraded as success.
Backend, API and widget tests updated; clippy and dart analyze clean.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
47 lines
1.4 KiB
Dart
47 lines
1.4 KiB
Dart
part of '../oott_api.dart';
|
|
|
|
/// Notification endpoints: listing and read/new state transitions.
|
|
extension NotificationApi on BackendAPI {
|
|
Future<void> markNotificationAsRead(int id) async {
|
|
await _dio.get('/notifications/$id');
|
|
}
|
|
|
|
Future<void> markNotificationAsNew(int id) async {
|
|
await _dio.post('/notifications/$id/mark_as_new');
|
|
}
|
|
|
|
Future<void> markAllNotificationsAsRead() async {
|
|
await _dio.post('/notifications/mark_all_as_old');
|
|
}
|
|
|
|
/// Asks the backend to deliver a one-off test push to every registered device,
|
|
/// used from Settings to verify end-to-end push delivery. Returns the number of
|
|
/// devices the relay confirmed delivery to (0 when none are registered).
|
|
Future<int> sendTestNotification() async {
|
|
final response = await _dio.post('/notifications/test');
|
|
return (response.data as Map<String, dynamic>)['delivered'] as int;
|
|
}
|
|
|
|
Future<({List<Notification> items, int totalCount})> listNotifications(
|
|
bool? isNew, {
|
|
int page = 0,
|
|
int perPage = 5,
|
|
CancelToken? cancelToken,
|
|
}) async {
|
|
final response = await _dio.get(
|
|
'/notifications',
|
|
queryParameters: {
|
|
'is_new': isNew ?? '',
|
|
'page_offset': page * perPage,
|
|
'page_limit': perPage,
|
|
},
|
|
cancelToken: cancelToken,
|
|
);
|
|
|
|
return _paginate(
|
|
response.data as Map<String, dynamic>,
|
|
(item) => Notification.fromJson(item),
|
|
);
|
|
}
|
|
}
|