-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevice-node.js
129 lines (120 loc) · 4.14 KB
/
device-node.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
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
module.exports = function(RED) {
let lastOutPut = {};
let auth = false;
function deviceNode(config) {
try {
RED.nodes.createNode(this, config);
const node = this;
const configNode = RED.nodes.getNode(config.account);
let outputPath = {};
node.on("input", msg => {
if (auth) {
inputHandler(msg.payload);
} else {
node.warn("Authentication Pending or error in user credentials. - On User input");
}
});
node.on("close", () => {
if (outputPath) outputPath.off();
});
// Subscribe after 5 seconds
setTimeout(() => {
if (configNode && configNode.auth && configNode.db) {
configNode.auth.onAuthStateChanged(user => {
if (user) {
// User is signed in.
logWarn("User Authenticated as " + user.email);
auth = true;
if (config.selectedOutput) {
if (config.selectedOutput == "root") {
outputPath = configNode.db.ref(
"/devices/" + config.selectedDevice + "/status"
);
} else {
outputPath = configNode.db.ref(
"/devices/" +
config.selectedDevice +
"/status/" +
config.selectedOutput
);
}
//subscribe to output path
node.subscriber = outputPath.on("value", data => {
let payload = {};
if (config.selectedOutput == "root") {
Object.keys(data.val()).forEach(code => {
payload[code] = data.val()[code].value;
});
} else {
payload = outputConverter(
data.val().value,
config.outputConversion
);
}
lastOutPut = payload;
node.send({
payload: payload,
completeData: data.val()
});
});
}
} else {
// User is signed out.
node.warn("Authentication Pending or error in user credentials. - On Startup");
console.log("Smartlife Air: Auth Object")
console.log(JSON.stringify(configNode.auth))
auth = false;
}
});
}
}, 5000);
function logWarn(msg){
if(config.enabledDebugMsg === "true" || config.enabledDebugMsg === true){ // "WTF: NR keep passing string and Bool cov doesnt work To check later"
node.warn(msg);
}
}
function inputHandler(inputValue) {
if (inputValue === "?"){
node.send({
payload:lastOutPut
})
}
else {
if (config.selectedDevice && config.selectedInput) {
const inputPath = configNode.db.ref(
"/devices/" + config.selectedDevice + "/commands"
);
console.log('Smartlife Air: Value Update Started'+ config.selectedDevice +' '+ config.selectedInput +' '+ inputValue);
inputPath.set({
commandCode: config.selectedInput,
value: inputValue
}).then(function() {
console.log('Smartlife Air: Value Update Finished'+ config.selectedDevice +' '+ config.selectedInput +' '+ inputValue);
}).catch(function(error) {
console.log('Smartlife Air: Cannot connect to the server');
console.log('Smartlife Air: Value Update Failed '+ config.selectedDevice +' '+ config.selectedInput +' '+ inputValue);
});
} else {
logWarn("Please select a device and an input channel");
}
}
}
} catch (error) {
node.warn(error);
}
}
RED.nodes.registerType("device-node", deviceNode);
};
function outputConverter(input, enable) {
if (!JSON.parse(enable)) {
return input;
}
switch (input) {
case true:
return "ON";
case false:
return "OFF";
default:
return input;
}
}