2024-03-12 20:41:04 +00:00
|
|
|
// web_socket_cubit.dart
|
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
import 'package:ot_viewer_app/owntracks_api.dart';
|
|
|
|
import 'package:ot_viewer_app/settings_page.dart';
|
|
|
|
import 'package:ws/ws.dart';
|
|
|
|
import 'package:rust_core/option.dart';
|
|
|
|
|
|
|
|
// Define the state. For simplicity, we're just using Map<String, dynamic> directly.
|
|
|
|
// You might want to define a more specific state class based on your application's needs.
|
|
|
|
abstract class LocationUpdateState {}
|
|
|
|
|
|
|
|
class LocationUpdateUnconnected extends LocationUpdateState {}
|
|
|
|
|
|
|
|
class LocationUpdateConnected extends LocationUpdateState {}
|
|
|
|
|
|
|
|
class LocationUpdateReceived extends LocationUpdateState {
|
|
|
|
Point position;
|
|
|
|
(String, String) deviceId;
|
|
|
|
|
|
|
|
LocationUpdateReceived(this.position, this.deviceId);
|
|
|
|
}
|
|
|
|
|
|
|
|
class LocationSubscribeCubit extends Cubit<LocationUpdateState> {
|
|
|
|
Option<WebSocketClient> _wsClient = None;
|
2024-03-14 19:50:30 +00:00
|
|
|
String url = '';
|
|
|
|
String username = '';
|
|
|
|
String pass = '';
|
2024-03-12 20:41:04 +00:00
|
|
|
|
|
|
|
LocationSubscribeCubit() : super(LocationUpdateUnconnected());
|
|
|
|
|
|
|
|
subscribe(SettingsState settings) async {
|
2024-03-14 19:50:30 +00:00
|
|
|
|
|
|
|
// check if resubscribe is necessary (different URL)
|
|
|
|
if (settings.url == url && settings.username == username && settings.password == pass) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
url = settings.url;
|
|
|
|
username = settings.username;
|
|
|
|
pass = settings.password;
|
|
|
|
}
|
|
|
|
|
|
|
|
await _wsConnectionEstablish();
|
|
|
|
}
|
2024-03-12 20:41:04 +00:00
|
|
|
|
2024-03-14 19:50:30 +00:00
|
|
|
Future<void> _wsConnectionEstablish() async {
|
|
|
|
if (_wsClient.isSome()) {
|
2024-03-12 20:41:04 +00:00
|
|
|
await _wsClient.unwrap().close();
|
|
|
|
_wsClient = None;
|
|
|
|
}
|
2024-03-14 19:50:30 +00:00
|
|
|
|
|
|
|
var ws = await OwntracksApi(baseUrl: url, username: username, pass: pass)
|
2024-03-12 20:41:04 +00:00
|
|
|
.createWebSocketConnection(
|
|
|
|
wsPath: 'last',
|
|
|
|
onMessage: (msg) {
|
|
|
|
if (msg is String) {
|
|
|
|
if (msg == 'LAST') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
final Map<String, dynamic> map = jsonDecode(msg);
|
2024-03-14 19:50:30 +00:00
|
|
|
|
2024-03-12 20:41:04 +00:00
|
|
|
if (map['_type'] == 'location') {
|
|
|
|
// filter points (only the ones for this device pls!)
|
|
|
|
final topic = (map['topic'] as String?)?.split('/');
|
|
|
|
if (topic == null || topic.length < 3) {
|
|
|
|
// couldn't reconstruct ID, bail
|
|
|
|
return;
|
|
|
|
}
|
2024-03-14 19:50:30 +00:00
|
|
|
|
2024-03-12 20:41:04 +00:00
|
|
|
// build device_id
|
|
|
|
final deviceId = (topic[1], topic[2]);
|
2024-03-14 19:50:30 +00:00
|
|
|
|
|
|
|
print(map);
|
|
|
|
|
2024-03-12 20:41:04 +00:00
|
|
|
// build point
|
|
|
|
final p = Point(
|
|
|
|
lat: map['lat'] as double,
|
|
|
|
lon: map['lon'] as double,
|
2024-03-14 19:50:30 +00:00
|
|
|
timestamp: DateTime.fromMillisecondsSinceEpoch((map['tst'] as int) * 1000));
|
|
|
|
|
|
|
|
print(p);
|
|
|
|
|
2024-03-12 20:41:04 +00:00
|
|
|
emit(LocationUpdateReceived(p, deviceId));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
print('BUG: Couldn\'t parse WS message: $msg ($e)');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onStateChange: (sc) {
|
2024-03-14 19:50:30 +00:00
|
|
|
switch (sc) {
|
|
|
|
case WebSocketClientState$Open(:final url):
|
|
|
|
_wsClient.map((wsc) => wsc.add('LAST'));
|
|
|
|
emit(LocationUpdateConnected());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
emit(LocationUpdateUnconnected());
|
|
|
|
break;
|
2024-03-12 20:41:04 +00:00
|
|
|
}
|
|
|
|
print(sc);
|
|
|
|
},
|
|
|
|
);
|
2024-03-14 19:50:30 +00:00
|
|
|
|
|
|
|
_wsClient = ws.expect("Estabilshing Websocket Conenction failed").toOption();
|
2024-03-12 20:41:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void onChange(Change<LocationUpdateState> change) {
|
|
|
|
print('loc_sub_cubit change: $change');
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> close() async {
|
|
|
|
await _wsClient.toFutureOption().map((conn) => conn.close());
|
|
|
|
return super.close();
|
|
|
|
}
|
|
|
|
}
|