summaryrefslogtreecommitdiff
path: root/player-android/lib/api/player_api_client.dart
blob: ffb3457fceda1562359bfe220df0561bd25f2d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
import 'dart:typed_data';

import 'package:dio/dio.dart';

import '../models/models.dart';
import '../services/progress_queue.dart' show ProgressSyncClient;

/// High-level API surface that maps 1-to-1 with the player-server REST API
/// (see player-server/docs/api.md for the authoritative contract).
///
/// Each method corresponds to a single HTTP endpoint.  All HTTP plumbing
/// (bearer-token injection, 401 → login redirect, base-URL configuration) is
/// handled by the [Dio] instance provided at construction time.
///
/// In production, create the [Dio] via [DioClient] which wires up the auth
/// and 401-redirect interceptors.  In tests, pass a plain or mocked [Dio].
///
/// Implements [ProgressSyncClient] so it can be injected directly into
/// [ProgressQueue] without exposing the full API surface (Interface Segregation).
///
/// Concrete implementations of the stub methods will be added incrementally as
/// features are built.
class PlayerApiClient implements ProgressSyncClient {
  /// Creates a client backed by [dio].
  ///
  /// Prefer creating [dio] via [DioClient] in production to get bearer-token
  /// injection and 401 → login redirect out of the box.
  PlayerApiClient({required Dio dio}) : _dio = dio;

  // The configured Dio instance with auth/401 interceptors already applied.
  final Dio _dio;

  // ---------------------------------------------------------------------------
  // Auth
  // ---------------------------------------------------------------------------

  Future<User> bootstrap({
    required String username,
    required String password,
  }) =>
      throw UnimplementedError();

  Future<User> login({
    required String username,
    required String password,
  }) =>
      throw UnimplementedError();

  Future<void> logout() => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Health
  // ---------------------------------------------------------------------------

  Future<void> healthz() => throw UnimplementedError();
  Future<void> readyz() => throw UnimplementedError();

  /// Returns the total number of registered users.
  ///
  /// Clients use this to detect first-run (count == 0) and redirect to the
  /// bootstrap screen instead of the login screen.
  Future<int> countUsers() => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Shared / public endpoints (no auth required)
  // ---------------------------------------------------------------------------

  Future<String> getSharedMediaPage(String token) =>
      throw UnimplementedError();

  Future<Uint8List> streamSharedMedia(String token, {String? range}) =>
      throw UnimplementedError();

  Future<Uint8List> getSharedThumbnail(String token) =>
      throw UnimplementedError();

  Future<Uint8List> downloadSharedMedia(String token) =>
      throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Config
  // ---------------------------------------------------------------------------

  Future<Map<String, dynamic>> getConfig() => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Sets
  // ---------------------------------------------------------------------------

  Future<List<MediaSet>> listSets() => throw UnimplementedError();

  Future<Map<String, dynamic>> browseSet(int setId, {String? parent}) =>
      throw UnimplementedError();

  Future<Uint8List> getSetCover(int setId, {String? folder}) =>
      throw UnimplementedError();

  Future<void> updateSetCover(int setId, {String? folder}) =>
      throw UnimplementedError();

  Future<Media> uploadToSet(
    int setId, {
    required String fileName,
    required List<int> bytes,
  }) =>
      throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Media
  // ---------------------------------------------------------------------------

  Future<List<Media>> listMedia({
    String? search,
    int? setId,
    List<int>? setIds,
    String? type,
    bool? favorites,
    List<String>? tags,
    double? minDuration,
    double? maxDuration,
    int? fileSizeMin,
    int? fileSizeMax,
    String? sort,
    int? limit,
    int? offset,
    String? folder,
    String? parent,
  }) =>
      throw UnimplementedError();

  Future<Media> getMedia(int mediaId) => throw UnimplementedError();

  Future<Uint8List> streamMedia(int mediaId, {String? range}) =>
      throw UnimplementedError();

  Future<Uint8List> downloadMedia(int mediaId) => throw UnimplementedError();

  Future<Uint8List> getThumbnail(int mediaId) => throw UnimplementedError();

  /// Returns the URL for a media item's thumbnail image.
  ///
  /// Constructing the URL here (rather than in the screen layer) keeps the API
  /// path constant `/api/v1/media/{id}/thumbnail` in one place and avoids
  /// exposing [Dio] or its [BaseOptions] to the UI layer (Dependency Inversion).
  ///
  /// The base URL is derived from the underlying Dio instance so it is always
  /// consistent with the rest of the API calls.
  String thumbnailUrl(int mediaId) =>
      '${rawDio.options.baseUrl}/api/v1/media/$mediaId/thumbnail';

  /// Returns the URL used to stream a media item.
  ///
  /// Mirrors [thumbnailUrl]: the API path `/api/v1/media/{id}/stream` is kept
  /// in one place and Dio internals are never leaked into the UI layer.
  /// The base URL is derived from the underlying Dio instance so it stays
  /// consistent with every other API call.
  String streamUrl(int mediaId) =>
      '${rawDio.options.baseUrl}/api/v1/media/$mediaId/stream';

  /// Returns the URL for the cover image of a set's root or subfolder.
  ///
  /// Mirrors [thumbnailUrl] and [streamUrl]: the API path
  /// `/api/v1/sets/{id}/cover` is kept in one place so the UI layer never
  /// needs to access Dio internals or hard-code URL segments (DIP).
  ///
  /// [folder] is the optional subfolder path (empty or null = set root cover).
  String setFolderCoverUrl(int setId, {String? folder}) {
    final base = '${rawDio.options.baseUrl}/api/v1/sets/$setId/cover';
    if (folder == null || folder.isEmpty) return base;
    return '$base?folder=${Uri.encodeComponent(folder)}';
  }

  /// Returns the public share URL for a share [token].
  ///
  /// Mirrors [thumbnailUrl] and [streamUrl]: the share path `/s/{token}` is
  /// kept in one place so the UI layer never needs to access Dio internals or
  /// hard-code URL segments (Dependency Inversion Principle).
  String shareUrl(String token) => '${rawDio.options.baseUrl}/s/$token';

  /// Returns the base URL of the underlying Dio instance without a trailing slash.
  ///
  /// Exposed so screens can construct absolute URLs from server-relative paths
  /// (e.g., `/s/abc123/stream`) without reaching into [rawDio] directly.
  /// Encapsulating this lookup here prevents the Dio transport detail from
  /// leaking into the UI layer (Interface Segregation, Dependency Inversion).
  String get baseUrl =>
      rawDio.options.baseUrl.replaceAll(RegExp(r'/$'), '');

  Future<void> regenerateThumbnail(int mediaId) => throw UnimplementedError();

  Future<bool> toggleFavorite(int mediaId) => throw UnimplementedError();

  Future<void> deleteMedia(int mediaId) => throw UnimplementedError();

  Future<void> restoreMedia(int mediaId) => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Tags
  // ---------------------------------------------------------------------------

  Future<List<Tag>> listTags() => throw UnimplementedError();

  Future<void> addTag(int mediaId, String tag) => throw UnimplementedError();

  Future<void> removeTag(int mediaId, String tag) =>
      throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Shares
  // ---------------------------------------------------------------------------

  Future<Share> createShare(
    int mediaId, {
    DateTime? expiresAt,
    int? maxUses,
  }) =>
      throw UnimplementedError();

  Future<List<Share>> listSharesForMedia(int mediaId) =>
      throw UnimplementedError();

  Future<List<Share>> listMyShares() => throw UnimplementedError();

  Future<void> revokeShare(String token) => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Notes
  // ---------------------------------------------------------------------------

  Future<Note?> getNote(int mediaId) => throw UnimplementedError();

  Future<Note> upsertNote(int mediaId, String content) =>
      throw UnimplementedError();

  Future<void> deleteNote(int mediaId) => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Progress
  // ---------------------------------------------------------------------------

  Future<void> updateProgress({
    required int mediaId,
    required double positionSeconds,
  }) =>
      throw UnimplementedError();

  Future<void> updateProgressStatus({
    required int mediaId,
    required String status,
  }) =>
      throw UnimplementedError();

  /// Returns the last saved playback position in seconds for [mediaId],
  /// or `null` if the user has never started this item.
  ///
  /// Fetches the progress from the `GET /api/v1/media/{id}` envelope rather
  /// than a dedicated progress endpoint, keeping the surface area small while
  /// still giving the player screen the position it needs for resume-on-open.
  Future<double?> getMediaProgress(int mediaId) => throw UnimplementedError();

  Future<List<Media>> listInProgress() => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Podcasts
  // ---------------------------------------------------------------------------

  Future<List<PodcastFeed>> listPodcasts() => throw UnimplementedError();

  Future<List<PodcastEpisode>> listEpisodes(
    int podcastSetId, {
    int? limit,
    int? offset,
  }) =>
      throw UnimplementedError();

  Future<Media> downloadEpisode(int episodeId) => throw UnimplementedError();

  Future<void> toggleEpisodeComplete(int episodeId) =>
      throw UnimplementedError();

  Future<PodcastFeed> subscribePodcast({
    required String feedUrl,
    String? setName,
  }) =>
      throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Admin – Users
  // ---------------------------------------------------------------------------

  Future<List<User>> listUsers() => throw UnimplementedError();

  Future<User> createUser({
    required String username,
    required String password,
    required bool isAdmin,
  }) =>
      throw UnimplementedError();

  Future<void> deleteUser(int userId) => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Admin – Permissions
  // ---------------------------------------------------------------------------

  /// Returns the full permission matrix (sets, users, and permission rows).
  ///
  /// GET /api/v1/admin/permissions — returns a map with keys `sets`, `users`,
  /// and `permissions`.  The raw map is returned because the response combines
  /// three distinct object types that have no single unified model.
  Future<Map<String, dynamic>> listPermissions() =>
      throw UnimplementedError();

  Future<void> grantPermission({
    required int setId,
    required int userId,
    required String role,
  }) =>
      throw UnimplementedError();

  Future<void> revokePermission({
    required int setId,
    required int userId,
  }) =>
      throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Admin – Scanner
  // ---------------------------------------------------------------------------

  Future<void> triggerRescan() => throw UnimplementedError();

  Future<Map<String, dynamic>> getScanProgress() => throw UnimplementedError();

  Future<List<Media>> listTrash() => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // API Tokens
  // ---------------------------------------------------------------------------

  /// Lists all API tokens belonging to the authenticated user.
  ///
  /// Plaintext token values are never returned by this endpoint — they are only
  /// visible once at creation time.
  Future<List<Map<String, dynamic>>> listAPITokens() =>
      throw UnimplementedError();

  /// Mints a new Bearer API token for the authenticated user.
  ///
  /// [name] is a human-readable label.  [expiresInDays] is optional; omit or
  /// pass `null` for a non-expiring token.
  ///
  /// Returns the raw JSON map because the token plaintext is only present in
  /// the creation response and there is no dedicated model for API tokens.
  Future<Map<String, dynamic>> createAPIToken({
    required String name,
    int? expiresInDays,
  }) =>
      throw UnimplementedError();

  /// Revokes a Bearer API token by its numeric [tokenId].
  ///
  /// DELETE /api/v1/auth/tokens/{id} — returns 204 No Content.
  Future<void> revokeAPIToken(int tokenId) => throw UnimplementedError();

  // ---------------------------------------------------------------------------
  // Progress (batch)
  // ---------------------------------------------------------------------------

  /// Submits multiple progress updates in one request.
  ///
  /// Designed for offline clients that accumulate updates while disconnected
  /// and sync on reconnect.  Each entry must include [mediaId],
  /// [positionSeconds], and [observedAt] (ISO-8601 UTC string).
  ///
  /// Implements [ProgressSyncClient.batchUpdateProgress].
  @override
  Future<void> batchUpdateProgress(
    List<Map<String, dynamic>> updates,
  ) =>
      throw UnimplementedError();

  // Expose the underlying Dio for advanced callers (e.g. binary streaming).
  // This should not be used for ordinary JSON requests; prefer the typed
  // methods above.
  Dio get rawDio => _dio;
}