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
|
// SPDX-License-Identifier: Apache-2.0
import 'dart:convert';
import 'dart:io';
import 'package:flutter_hvac/config.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_hvac/kuksa-server/vehicle_server_path.dart';
class VISS {
static const requestId = "test-id";
static void init(WebSocket socket, WidgetRef ref) {
authorize(socket, ref);
subscribe(socket, ref, VSPath.vehicleInsideTemperature);
subscribe(socket, ref, VSPath.vehicleAmbientAirTemperature);
}
static void update(WebSocket socket, WidgetRef ref) {
get(socket, ref, VSPath.vehicleInsideTemperature);
get(socket, ref, VSPath.vehicleAmbientAirTemperature);
}
static void authorize(WebSocket socket, WidgetRef ref) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "authorize",
"tokens": config.kuksaAuthToken,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
static void get(WebSocket socket, WidgetRef ref, String path) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "get",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
static void set(
WebSocket socket,
WidgetRef ref,
String path,
String value,
) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "set",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId,
"value": value
};
socket.add(jsonEncode(map));
}
static void subscribe(WebSocket socket, WidgetRef ref, String path) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "subscribe",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
}
|