-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
212 lines (188 loc) · 5.64 KB
/
main.ts
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
/*
* Created with @iobroker/create-adapter v2.6.3
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
import * as utils from "@iobroker/adapter-core";
import axios from "axios";
import cheerio, { CheerioAPI } from "cheerio";
// Load your modules here, e.g.:
// import * as fs from "fs";
class Pichler extends utils.Adapter {
scanIntervall: ioBroker.Interval | undefined = undefined;
public constructor(options: Partial<utils.AdapterOptions> = {}) {
super({
...options,
name: "pichler",
});
this.on("ready", this.onReady.bind(this));
this.on("stateChange", this.onStateChange.bind(this));
// this.on("objectChange", this.onObjectChange.bind(this));
// this.on("message", this.onMessage.bind(this));
this.on("unload", this.onUnload.bind(this));
}
/**
* Is called when databases are connected and adapter received configuration.
*/
private async onReady(): Promise<void> {
await this.setObjectNotExistsAsync("ph", {
type: "state",
common: {
name: "PH",
type: "number",
role: "value",
read: true,
write: false,
},
native: {},
});
await this.setObjectNotExistsAsync("redox", {
type: "state",
common: {
name: "Redox",
type: "number",
role: "value",
read: true,
write: false,
unit: "mV",
},
native: {},
});
await this.setObjectNotExistsAsync("flow", {
type: "state",
common: {
name: "Flow active",
type: "boolean",
role: "indicator",
read: true,
write: false,
},
native: {},
});
await this.setObjectNotExistsAsync("level_ph", {
type: "state",
common: {
name: "level ph",
type: "number",
role: "value",
read: true,
write: false,
unit: "%",
},
native: {},
});
await this.setObjectNotExistsAsync("level_redox", {
type: "state",
common: {
name: "level redox",
type: "number",
role: "value",
read: true,
write: false,
unit: "%",
},
native: {},
});
this.log.debug(`starting adapter with config: ${JSON.stringify(this.config)}`);
await this.fetchData();
this.scanIntervall = this.setInterval(() => this.fetchData(), this.config.interval * 1000);
}
private async fetchData(): Promise<void> {
this.log.debug("fetching data");
const $ = await this.getHtml(this.config.host, this.config.port);
if ($) {
this.log.debug("parsing data");
await this.setStateAsync("ph", parseFloat($("table").eq(9).find("td").eq(4).find("b").text().trim()), true);
await this.setStateAsync(
"redox",
parseInt($("table").eq(11).find("td").eq(4).find("b").text().trim()),
true,
);
await this.setStateAsync("flow", $("table").eq(13).find("td").eq(4).find("b").text().trim() == "An", true);
await this.setStateAsync(
"level_ph",
parseFloat($("table").eq(19).find("td").eq(4).find("b").text().trim()),
true,
);
await this.setStateAsync(
"level_redox",
parseFloat($("table").eq(21).find("td").eq(4).find("b").text().trim()),
true,
);
}
}
private async getHtml(host: string, port: number): Promise<CheerioAPI | null> {
const url = `http://${host}:${port}/commandPage?COMMAND=values`;
try {
const response = await axios.get(url);
if (response.status === 200) {
const html = response.data;
return cheerio.load(html);
} else {
this.log.error(`HTTP Request failed with status code ${response.status}`);
}
} catch (error) {
this.log.error(`Error fetching or parsing HTML: ${error}`);
}
return null;
}
/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
*/
private onUnload(callback: () => void): void {
try {
this.clearInterval(this.scanIntervall);
callback();
} catch (e) {
callback();
}
}
// If you need to react to object changes, uncomment the following block and the corresponding line in the constructor.
// You also need to subscribe to the objects with `this.subscribeObjects`, similar to `this.subscribeStates`.
// /**
// * Is called if a subscribed object changes
// */
// private onObjectChange(id: string, obj: ioBroker.Object | null | undefined): void {
// if (obj) {
// // The object was changed
// this.log.info(`object ${id} changed: ${JSON.stringify(obj)}`);
// } else {
// // The object was deleted
// this.log.info(`object ${id} deleted`);
// }
// }
/**
* Is called if a subscribed state changes
*/
private onStateChange(id: string, state: ioBroker.State | null | undefined): void {
if (state) {
// The state was changed
this.log.info(`state ${id} changed: ${state.val} (ack = ${state.ack})`);
} else {
// The state was deleted
this.log.info(`state ${id} deleted`);
}
}
// If you need to accept messages in your adapter, uncomment the following block and the corresponding line in the constructor.
// /**
// * Some message was sent to this instance over message box. Used by email, pushover, text2speech, ...
// * Using this method requires "common.messagebox" property to be set to true in io-package.json
// */
// private onMessage(obj: ioBroker.Message): void {
// if (typeof obj === "object" && obj.message) {
// if (obj.command === "send") {
// // e.g. send email or pushover or whatever
// this.log.info("send command");
// // Send response in callback if required
// if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
// }
// }
// }
}
if (require.main !== module) {
// Export the constructor in compact mode
module.exports = (options: Partial<utils.AdapterOptions> | undefined) => new Pichler(options);
} else {
// otherwise start the instance directly
(() => new Pichler())();
}