-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvelux-nodes.js
140 lines (130 loc) · 5.15 KB
/
velux-nodes.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
130
131
132
133
134
135
136
137
138
139
140
module.exports = function (RED) {
'use strict'
//var util = require('util')
var debug = require('debug')('node-red-contrib-velux:velux-nodes')
function veluxNodes(config) {
RED.nodes.createNode(this, config)
var node = this
node.veluxDatasource = RED.nodes.getNode(config.datasource)
if (node.veluxDatasource) {
node.hasTopic = (config.topic||'').length > 0
debug('config:',config)
node.veluxDatasource.subscribeNodes(node)
node.getID = function(){
return config.index
}
node.getName = function(){
return node.veluxDatasource.nodeGetName(node.getID)
}
node.publish = function(data){
debug('node.send:',(!(!data)))
if (data) {
var msg={}
if (node.hasTopic) {
msg.topic = config.topic
} else {
msg.topic = node.name
}
if (config.nodevalue == 'CURRENTPOSITION') {
msg.payload = data.currentPosition.value
msg.valueType = data.currentPosition.valueType
} else if (config.nodevalue == 'TARGET') {
msg.payload = data.target.value
msg.valueType = data.target.valueType
} else if (config.nodevalue == 'FP1') {
msg.payload = data.fp1CurrentPosition.value
msg.valueType = data.fp1CurrentPosition.valueType
} else if (config.nodevalue == 'FP2') {
msg.payload = data.fp2CurrentPosition.value
msg.valueType = data.fp2CurrentPosition.valueType
} else if (config.nodevalue == 'FP3') {
msg.payload = data.fp3CurrentPosition.value
msg.valueType = data.fp3CurrentPosition.valueType
} else if (config.nodevalue == 'FP4') {
msg.payload = data.fp4CurrentPosition.value
msg.valueType = data.fp4CurrentPosition.valueType
} else if (config.nodevalue == 'REMAININGTIME') {
msg.payload = data.remainingTime
} else {
msg.payload = data
}
node.send(msg)
}
}
node.on("input", function(msg) {
debug('input:','msg',msg)
if (typeof msg.topic === 'string' && msg.topic !== '') {
if (node.hasTopic && msg.topic == (config.topic||'')){
node.veluxDatasource.nodeSendValue(node.getID(),msg.payload)
return
}
var topicvals = msg.topic.split(":")
if ((topicvals[0]||'').trim()== 'velux') {
if (((topicvals[1]||'').trim()=='read')||((topicvals[1]||'').trim()=='load')) {
var load = (topicvals[1].trim()=='load')
if ((topicvals[2]||'').trim()=='id') {
var id = parseInt(topicvals[3]||'')
debug ('input:',id)
if (id==-1) {
node.veluxDatasource.nodePublishAll(node, load)
} else {
node.veluxDatasource.nodePublish(node, id, load)
}
} else if ((topicvals[2]||'').trim()=='name') {
var len = topicvals[0].length + topicvals[1].length + topicvals[2].length + 3
var name = msg.topic.substring(len).trim()
var id = node.veluxDatasource.getIdByName(name)
debug ('input:',name,id)
if (id === null) return
node.veluxDatasource.nodePublish(node, id, load)
} else {
if (node.getID()==-1) {
node.veluxDatasource.nodePublishAll(node, load)
} else {
node.veluxDatasource.nodePublish(node, node.getID(), load)
}
}
} else if ((topicvals[1]||'').trim()=='write') {
var val = {value: parseFloat(msg.payload), valueType: 'RELATIVE'}
var id = node.getID()
var name
for (var i=2;i<topicvals.length;i++) {
if ((topicvals[i]||'').trim()=='valuetype') {
i++
val.valueType = (topicvals[i]||'').trim()
} else if ((topicvals[i]||'').trim()=='rawvalue') {
val = {rawValue: parseFloat(msg.payload)}
} else if ((topicvals[i]||'').trim()=='id') {
i++
id = parseInt(topicvals[i]||'')
} else if ((topicvals[i]||'').trim()=='name') {
i++
name = (topicvals[i]||'')
}
}
debug('input:','name',name)
if (name) {
id = node.veluxDatasource.getIdByName(name)
if (id === null) return
}
debug('input:','name',name)
node.veluxDatasource.nodeSendValue(id,val)
}
return
}
if (msg.topic) return
}
if (!isNaN(parseFloat(msg.payload))) {
node.veluxDatasource.nodeSendValue(node.getID(),parseFloat(msg.payload))
return
}
})
node.on('close', function (done) {
debug('close:')
node.veluxDatasource.unsubscribeNodes(node)
done()
})
}
}
RED.nodes.registerType('Velux Nodes', veluxNodes)
}