Files
oott/frontend/lib/utils/api/oott_api_notifications.dart
T

47 lines
1.4 KiB
Dart
Raw Normal View History

2026-06-02 10:24:37 -04:00
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(
2026-06-02 10:24:37 -04:00
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,
2026-06-02 10:24:37 -04:00
},
cancelToken: cancelToken,
);
return _paginate(
response.data as Map<String, dynamic>,
2026-06-02 10:24:37 -04:00
(item) => Notification.fromJson(item),
);
}
}