import 'dart:async'; import 'package:flutter/foundation.dart'; import '../models/player_status.dart'; import '../services/http_api_service.dart'; import '../services/web_socket_service.dart'; class PlayerProvider extends ChangeNotifier { PlayerProvider({ required HttpApiService httpApiService, required WebSocketService webSocketService, }) : _httpApiService = httpApiService, _webSocketService = webSocketService { _statusSubscription = _webSocketService.onStatusUpdate.listen((payload) { _status = PlayerStatus.fromJson(payload); notifyListeners(); }); _stateSubscription = _webSocketService.onStateUpdate.listen((payload) { _currentState = payload['new_state']?.toString() ?? _currentState; notifyListeners(); }); _configSubscription = _webSocketService.onConfigUpdate.listen((payload) { _updateSceneOptions(payload); notifyListeners(); }); } final HttpApiService _httpApiService; final WebSocketService _webSocketService; late final StreamSubscription> _statusSubscription; late final StreamSubscription> _stateSubscription; late final StreamSubscription> _configSubscription; PlayerStatus _status = PlayerStatus.initial(); List _playlist = const []; List _sceneOptions = const ['idle', 'intro', 'loop']; bool _isLoading = false; String? _errorMessage; String? _currentState; PlayerStatus get status => _status; List get playlist => _playlist; List get sceneOptions => _sceneOptions; bool get isLoading => _isLoading; String? get errorMessage => _errorMessage; String get currentState => _currentState ?? _status.currentVideo ?? 'idle'; Future bootstrap() async { _setLoading(true); try { final results = await Future.wait([ _httpApiService.getPlaybackStatus(), _httpApiService.getPlaylist(), _httpApiService.getConfig(), ]); _status = results[0] as PlayerStatus; _playlist = results[1] as List; _updateSceneOptions(results[2] as Map); _errorMessage = null; } catch (error) { _errorMessage = error.toString(); } finally { _setLoading(false); } } Future fetchStatus() async { try { _status = await _httpApiService.getPlaybackStatus(); _errorMessage = null; notifyListeners(); } catch (error) { _errorMessage = error.toString(); notifyListeners(); } } Future fetchPlaylist() async { try { _playlist = await _httpApiService.getPlaylist(); _errorMessage = null; notifyListeners(); } catch (error) { _errorMessage = error.toString(); notifyListeners(); } } Future play() => _runCommand(_httpApiService.play); Future pause() => _runCommand(_httpApiService.pause); Future next() => _runCommand(_httpApiService.next); Future previous() => _runCommand(_httpApiService.previous); Future gotoIndex(int index) async { await _runCommand(() => _httpApiService.goto(index)); } Future switchScene(String name) async { await _runCommand(() => _httpApiService.changeScene(name)); _currentState = name; notifyListeners(); } Future triggerEvent(String name, {String? value}) { return _runCommand(() => _httpApiService.trigger(name, value)); } Future togglePlayPause() async { if (_status.running && !_status.paused) { await pause(); return; } await play(); } Future _runCommand(Future Function() action) async { _setLoading(true); try { await action(); await Future.wait([ fetchStatus(), fetchPlaylist(), ]); _errorMessage = null; } catch (error) { _errorMessage = error.toString(); notifyListeners(); } finally { _setLoading(false); } } void _updateSceneOptions(Map config) { final candidates = {}; final scenes = config['scenes']; if (scenes is List) { for (final scene in scenes) { final value = scene.toString(); if (value.isNotEmpty) { candidates.add(value); } } } final stateMachine = config['state_machine']; if (stateMachine is Map) { final states = stateMachine['states']; if (states is Map) { for (final entry in states.keys) { final value = entry.toString(); if (value.isNotEmpty) { candidates.add(value); } } } final initialState = stateMachine['initial_state']?.toString(); if (initialState != null && initialState.isNotEmpty) { candidates.add(initialState); _currentState ??= initialState; } } if (candidates.isNotEmpty) { _sceneOptions = candidates.toList(growable: false)..sort(); } } void _setLoading(bool value) { _isLoading = value; notifyListeners(); } @override void dispose() { unawaited(_statusSubscription.cancel()); unawaited(_stateSubscription.cancel()); unawaited(_configSubscription.cancel()); super.dispose(); } }