forked from openWB/openwb-ui-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
263 lines (258 loc) · 6.39 KB
/
App.vue
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
<template>
<header>
<nav-bar />
</header>
<div role="main" class="container">
<div id="content">
<h1>{{ $route.meta.heading }}</h1>
<router-view
@save="saveValues"
@reset="resetValues"
@defaults="setDefaultValues"
@sendCommand="sendCommand"
/>
</div>
<donation-banner />
</div>
<page-footer />
<messages />
<blocker />
</template>
<script>
import NavBar from "./components/OpenwbPageNavbar.vue";
import PageFooter from "./components/OpenwbPageFooter.vue";
import DonationBanner from "./components/OpenwbPageDonationBanner.vue";
import Messages from "./components/OpenwbPageMessages.vue";
import Blocker from "./components/OpenwbPageBlocker.vue";
import mqtt from "mqtt";
export default {
name: "settings-app",
components: {
NavBar,
PageFooter,
DonationBanner,
Messages,
Blocker,
},
data() {
return {
client: {
connected: false,
},
connection: {
protocol: location.protocol == "https:" ? "wss" : "ws",
host: location.hostname,
port:
parseInt(location.port) ||
(location.protocol == "https:" ? 443 : 80),
endpoint: "/ws",
connectTimeout: 4000,
reconnectPeriod: 4000,
},
};
},
computed: {
/**
* @return {Str} - Mqtt client id of our connection
*/
mqttClientId() {
try {
return this.client.options.clientId;
} catch (error) {
return undefined;
}
},
/**
* @return {Array} - Array of topics (String)
*/
topicList() {
return Object.keys(this.$store.state.mqtt);
},
},
methods: {
/**
* Send topics to broker
* @param {Array} topicsToSave - The topics to save
*/
async saveValues(topicsToSave = undefined) {
function sleep(milliseconds) {
return new Promise((resolve) =>
setTimeout(resolve, milliseconds),
);
}
console.debug("saving values...");
this.$store.state.local.savingData = true;
// collect data
let topics = {};
if (topicsToSave === undefined) {
// no topics defined, so save everything we have in store
topics = this.$store.state.mqtt;
} else {
if (Array.isArray(topicsToSave)) {
topicsToSave.forEach((topicToSave) => {
topics[topicToSave] =
this.$store.state.mqtt[topicToSave];
});
} else {
console.error("expected array, got ", typeof topicsToSave);
}
}
// console.debug("topics", topics);
for (const [topic, payload] of Object.entries(topics)) {
let setTopic = topic.replace("openWB/", "openWB/set/");
console.debug("saving data:", setTopic, payload);
this.doPublish(setTopic, payload);
// publishing without sleeping is inconsistent! (mqtt v4.3.7) This may change with newer versions.
await sleep(100);
}
console.debug("done saving data");
this.$store.state.local.savingData = false;
},
/**
* Reload topics from broker
* @param {Array} topicsToReset - The topics to reset
*/
resetValues(topicsToReset = this.topicList) {
console.debug("resetting values...");
console.debug("topics: ", topicsToReset);
// simply unsubscribe and subscribe to broker
this.doUnsubscribe(topicsToReset);
this.doSubscribe(topicsToReset);
},
/**
* ToDo
*/
setDefaultValues() {
console.debug("setting default values... (ToDo)");
},
/**
* Sends a command via broker to the backend
* @param {Object} event - Command object to send
*/
sendCommand(event) {
this.doPublish(
"openWB/set/command/" + this.client.options.clientId + "/todo",
event,
false,
);
},
/**
* Establishes a connection to the configured broker
*/
createConnection() {
// Connect string, and specify the connection method used through protocol
// ws not encrypted WebSocket connection
// wss encrypted WebSocket connection
// mqtt not encrypted TCP connection
// mqtts encrypted TCP connection
// wxs WeChat mini app connection
// alis Alipay mini app connection
const { protocol, host, port, endpoint, ...options } =
this.connection;
const connectUrl = `${protocol}://${host}:${port}${endpoint}`;
console.debug("connecting to broker:", connectUrl);
try {
this.client = mqtt.connect(connectUrl, options);
} catch (error) {
console.error("mqtt.connect error", error);
}
this.client.on("connect", () => {
console.debug(
"Connection succeeded! ClientId: ",
this.client.options.clientId,
);
this.doSubscribe(["openWB/system/usage_terms_acknowledged"]); // required for route guard
});
this.client.on("error", (error) => {
console.error("Connection failed", error);
});
this.client.on("message", (topic, message) => {
// console.debug(
// `Received message "${message}" from topic "${topic}"`
// );
if (message.toString().length > 0) {
let myPayload = undefined;
try {
myPayload = JSON.parse(message.toString());
} catch (error) {
console.debug(
"Json parsing failed, fallback to string: ",
topic,
);
myPayload = message.toString();
}
this.$store.commit("addTopic", {
topic: topic,
payload: myPayload,
});
} else {
this.$store.commit("removeTopic", topic);
}
});
},
doSubscribe(topics) {
this.client.subscribe(topics, {}, (error) => {
if (error) {
console.error("Subscribe to topics error", error);
return;
}
});
},
doUnsubscribe(topics) {
this.client.unsubscribe(topics, (error) => {
if (error) {
console.error("Unsubscribe error", error);
}
});
},
doPublish(topic, payload, retain = true, qos = 2) {
let options = {
qos: qos,
retain: retain,
};
this.client.publish(
topic,
JSON.stringify(payload),
options,
(error) => {
if (error) {
console.error("Publish error", error);
}
},
);
},
postClientMessage(message, type = "secondary") {
console.debug("postMessage:", message, type);
const timestamp = Date.now();
const topic =
"openWB/command/" +
this.mqttClientId +
"/messages/" +
timestamp;
this.$store.commit({
type: "addTopic",
topic: topic,
payload: {
message: message,
type: type,
source: "client",
timestamp: Math.floor(timestamp / 1000),
},
});
},
},
created() {
this.createConnection();
},
};
</script>
<style>
#app {
font-family: "Avenir", "Helvetica", "Arial", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container[role="main"] {
padding: 60px 15px 30px;
}
</style>