-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoJson.js
77 lines (71 loc) · 2.27 KB
/
toJson.js
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
module.exports = function(RED) {
function toJsonNode(config) {
RED.nodes.createNode(this, config);
console.log("OD-NODE:", config);
this.config = config;
let node = this;
node.on("input", function(msg) {
let config = node.config;
let ts = msg.date || new Date().getTime();
let id2Use = msg.sensorid || node.config.sensorid;
let owner2use = msg.owner || node.config.owner;
let value2send = msg.payload;
let name2Use = msg.sensorname || node.config.sensorname;
let meta2Use = msg.meta || {};
let valueTypes = msg.valueTypes || node.config.valueTypes;
if (!Array.isArray(value2send)) {
value2send = [value2send];
}
if (value2send.length !== valueTypes.length) {
this.status({
fill: "red",
shape: "dot",
text: "Ungültige Werte " + JSON.stringify(value2send)
});
node.error(
"Es wurde eine falsche Anzahl von Werten übergeben. Erhalten: " +
value2send.length +
" Erwartet: " +
config.valueTypes.length,
msg
);
return;
}
this.status({
fill: "green",
shape: "dot",
text: "Last Value received: " + JSON.stringify(value2send)
});
let json =
"{" +
'"id" : "defaultID ",' +
'"parent" : [],' +
'"meta" : {},' +
'"name" : "default",' +
'"valueTypes" : [],' +
'"user" : "defaultUser",' +
'"values" : []' +
"}";
let toSend = JSON.parse(json);
toSend.valueTypes = valueTypes;
toSend.id = id2Use;
toSend.user = owner2use;
toSend.name = name2Use;
toSend.meta = meta2Use;
let value = {
date: ts,
value: value2send
};
toSend.values = [value];
newmsg = { payload: toSend };
node.send(newmsg);
nodeStatus = { fill: "green", shape: "dot" };
});
node.on("close", function() {
//clearInterval(refreshStatusIntervalId);
nodeStatus = {};
node.status({});
});
}
RED.nodes.registerType("od-converter-nodered", toJsonNode);
};