feat: jellyfin

This commit is contained in:
edde746
2026-05-01 01:20:36 +02:00
parent 4080c812d2
commit 31d2d9dc98
408 changed files with 56022 additions and 13747 deletions
+146 -35
View File
@@ -2,12 +2,12 @@ import 'dart:async';
import 'package:flutter/foundation.dart';
import '../media/media_server_client.dart';
import '../models/livetv_dvr.dart';
import '../mixins/disposable_change_notifier_mixin.dart';
import '../services/plex_client.dart';
import '../services/data_aggregation_service.dart';
import '../services/multi_server_manager.dart';
import '../services/plex_auth_service.dart';
import '../utils/app_logger.dart';
/// Cached info about a DVR-enabled server
@@ -40,6 +40,67 @@ class MultiServerProvider extends ChangeNotifier with DisposableChangeNotifierMi
/// Previously-seen set of online server IDs, used to detect new servers
Set<String> _previousOnlineServerIds = {};
/// Visibility filter applied by the active app profile. `null` means
/// "all servers visible" (no profile restriction); otherwise only server
/// ids in the set surface through [serverIds] / [onlineServerIds].
Set<String>? _visibleServerIds;
/// Replace the active visibility filter and notify listeners. Pass `null`
/// to clear the filter (all servers visible). Idempotent — does nothing
/// when [ids] equals the current filter.
void setVisibleServerIds(Set<String>? ids) {
if (_visibleServerIds == null && ids == null) return;
if (_visibleServerIds != null &&
ids != null &&
_visibleServerIds!.length == ids.length &&
_visibleServerIds!.containsAll(ids)) {
return;
}
_visibleServerIds = ids;
_pruneLiveTvServersForVisibility();
safeNotifyListeners();
_refreshLiveTvAvailabilitySoon();
}
/// Add [serverId] to the active visibility filter. Used after adding a
/// connection inline (without a profile switch), so the new server
/// becomes visible without the binder having to re-run. Initializes the
/// filter to a one-element set when no filter is currently set.
void addToVisibleServerIds(String serverId) {
final current = _visibleServerIds;
if (current == null) {
_visibleServerIds = {serverId};
safeNotifyListeners();
_refreshLiveTvAvailabilitySoon();
return;
}
if (current.contains(serverId)) return;
_visibleServerIds = {...current, serverId};
safeNotifyListeners();
_refreshLiveTvAvailabilitySoon();
}
void _pruneLiveTvServersForVisibility() {
final filter = _visibleServerIds;
if (filter == null) return;
_liveTvServers.removeWhere((s) => !filter.contains(s.serverId));
_hasLiveTv = _liveTvServers.isNotEmpty;
}
void _refreshLiveTvAvailabilitySoon() {
scheduleMicrotask(() {
if (!isDisposed) unawaited(checkLiveTvAvailability());
});
}
@visibleForTesting
void debugSetLiveTvServersForTesting(List<LiveTvServerInfo> servers) {
_liveTvServers
..clear()
..addAll(servers);
_hasLiveTv = servers.isNotEmpty;
}
MultiServerProvider(this._serverManager, this._aggregationService) {
// Listen to server status changes
_statusSubscription = _serverManager.statusStream.listen((_) {
@@ -62,31 +123,76 @@ class MultiServerProvider extends ChangeNotifier with DisposableChangeNotifierMi
/// Get the data aggregation service
DataAggregationService get aggregationService => _aggregationService;
/// Get client for specific server
PlexClient? getClientForServer(String serverId) {
/// Get client for specific server.
MediaServerClient? getClientForServer(String serverId) {
return _serverManager.getClient(serverId);
}
/// Get all online server IDs
List<String> get onlineServerIds => _serverManager.onlineServerIds;
/// Get the [PlexClient] for a server, or `null` if the server is Jellyfin
/// (or not registered). Use for Plex-only flows that don't yet have a
/// backend-neutral equivalent.
PlexClient? getPlexClientForServer(String serverId) {
return _serverManager.getPlexClient(serverId);
}
/// Get all server IDs
List<String> get serverIds => _serverManager.serverIds;
/// Get all online server IDs (visibility-filtered).
List<String> get onlineServerIds {
final all = _serverManager.onlineServerIds;
final filter = _visibleServerIds;
if (filter == null) return all;
return all.where(filter.contains).toList();
}
/// Check if a server is online
/// Get all server IDs (visibility-filtered).
List<String> get serverIds {
final all = _serverManager.serverIds;
final filter = _visibleServerIds;
if (filter == null) return all;
return all.where(filter.contains).toList();
}
/// Check if a server is online (and visible under the active profile).
bool isServerOnline(String serverId) {
final filter = _visibleServerIds;
if (filter != null && !filter.contains(serverId)) return false;
return _serverManager.isServerOnline(serverId);
}
/// Get number of online servers
int get onlineServerCount => _serverManager.onlineServerIds.length;
int get onlineServerCount => onlineServerIds.length;
/// Get number of total servers
int get totalServerCount => _serverManager.serverIds.length;
int get totalServerCount => serverIds.length;
/// Check if any servers are connected
bool get hasConnectedServers => onlineServerCount > 0;
/// Whether at least one online server is a Plex server. Used to gate
/// Plex-only chrome (server-activities popover, conflict-resolution
/// helpers) so they don't render against a Jellyfin-only profile.
bool get hasOnlinePlexServers => onlineServerIds.any((id) => _serverManager.getPlexClient(id) != null);
/// Visibility-filtered server ids whose latest health probe was rejected
/// with HTTP 401/403 (token expired or revoked). UI uses this to show a
/// "Sign in again" banner distinct from generic "Server offline".
List<String> get authErrorServerIds {
final all = _serverManager.authErrorServerIds;
final filter = _visibleServerIds;
if (filter == null) return all.toList();
return all.where(filter.contains).toList();
}
/// Whether any visible server currently has an auth error.
bool get hasAuthErrorServers => authErrorServerIds.isNotEmpty;
/// Display names for the visible auth-errored servers, in stable order.
/// Falls back to the server id when the client doesn't expose a name.
List<({String serverId, String displayName})> get authErrorServers {
return authErrorServerIds
.map((id) => (serverId: id, displayName: _serverManager.getClient(id)?.serverName ?? id))
.toList();
}
/// Clear all server connections
void clearAllConnections() {
_serverManager.disconnectAll();
@@ -94,52 +200,57 @@ class MultiServerProvider extends ChangeNotifier with DisposableChangeNotifierMi
safeNotifyListeners();
}
/// Reconnect all servers after a profile switch
/// Clears existing connections and connects to all provided servers
Future<int> reconnectWithServers(List<PlexServer> servers, {String? clientIdentifier}) async {
// Clear existing connections first
_serverManager.disconnectAll();
appLogger.d('MultiServerProvider: Cleared connections, reconnecting to ${servers.length} servers');
// Connect with new server tokens
final connectedCount = await _serverManager.connectToAllServers(servers, clientIdentifier: clientIdentifier);
appLogger.i('MultiServerProvider: Reconnected to $connectedCount/${servers.length} servers after profile switch');
safeNotifyListeners();
return connectedCount;
}
/// Check server health for all connected servers
Future<void> checkServerHealth() async {
await _serverManager.checkServerHealth();
// notifyListeners() will be called automatically via status stream
}
/// Check all online servers for DVR/Live TV availability
/// Check all online servers for DVR/Live TV availability. Plex servers
/// expose `/livetv/dvrs` (one entry per configured DVR with its own
/// lineup); Jellyfin servers expose `/LiveTv/Channels` with a single
/// flat channel list per server (synthesized into one [LiveTvServerInfo]
/// with `dvrKey: 'jellyfin'` so the rest of the UI's per-DVR loop works
/// uniformly).
Future<void> checkLiveTvAvailability() async {
if (isDisposed) return;
final newLiveTvServers = <LiveTvServerInfo>[];
for (final serverId in onlineServerIds) {
final client = getClientForServer(serverId);
if (client == null) continue;
final genericClient = _serverManager.getClient(serverId);
if (genericClient == null) continue;
try {
final dvrs = await client.getDvrs();
for (final dvr in dvrs) {
newLiveTvServers.add(LiveTvServerInfo(serverId: serverId, dvrKey: dvr.key, lineup: dvr.lineup, dvrs: dvrs));
final liveTv = genericClient.liveTv;
final dvrs = await liveTv.fetchDvrs();
if (dvrs.isNotEmpty) {
// Plex: one entry per DVR with its own lineup.
for (final dvr in dvrs) {
newLiveTvServers.add(LiveTvServerInfo(serverId: serverId, dvrKey: dvr.key, lineup: dvr.lineup, dvrs: dvrs));
}
} else if (await liveTv.isAvailable()) {
// Jellyfin: no per-DVR partitioning; synthesize a single entry so
// the rest of the UI's per-DVR loop works uniformly.
newLiveTvServers.add(LiveTvServerInfo(serverId: serverId, dvrKey: 'jellyfin', lineup: null, dvrs: const []));
}
} catch (e) {
appLogger.d('LiveTV check failed for server $serverId', error: e);
}
}
final filter = _visibleServerIds;
final visibleLiveTvServers = filter == null
? newLiveTvServers
: newLiveTvServers.where((s) => filter.contains(s.serverId)).toList();
final hadLiveTv = _hasLiveTv;
final oldServerIds = _liveTvServers.map((s) => s.serverId).toSet();
final newServerIds = newLiveTvServers.map((s) => s.serverId).toSet();
final oldServerIds = _liveTvServers.map((s) => '${s.serverId}\u0000${s.dvrKey}').toSet();
final newServerIds = visibleLiveTvServers.map((s) => '${s.serverId}\u0000${s.dvrKey}').toSet();
if (isDisposed) return;
_liveTvServers
..clear()
..addAll(newLiveTvServers);
_hasLiveTv = newLiveTvServers.isNotEmpty;
..addAll(visibleLiveTvServers);
_hasLiveTv = visibleLiveTvServers.isNotEmpty;
// Notify when availability changes OR when the server set changes
if (hadLiveTv != _hasLiveTv || !oldServerIds.containsAll(newServerIds) || !newServerIds.containsAll(oldServerIds)) {