-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtv-bravia.js
148 lines (116 loc) · 4.49 KB
/
tv-bravia.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
141
142
143
144
145
146
147
148
/*
The MIT License (MIT)
Copyright (c) 2017 sebakrau
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
module.exports = function(RED) {
const BraviaRemoteControl = require('sony-bravia-tv-remote');
var request = require('request');
/* ---------------------------------------------------------------------------
* Query for list of actions from TV itself
* -------------------------------------------------------------------------*/
RED.httpAdmin.get('/tvbravia/actions', function(req, res, next) {
var address = req.query.address;
var options = {
url: 'http://' + address + '/sony/system',
json: {
'id': 20,
'method': 'getRemoteControllerInfo',
'version': '1.0',
'params': []
}
};
request.post(options, function(error, response, body) {
if(error) {
console.error(error);
res.end();
}
if(body && body.result !== undefined && Object.keys(body.result).length === 2) {
var list = [];
for(var i in body.result[1]) {
list.push(body.result[1][i].name);
}
res.end(JSON.stringify(list));
}
});
});
/* ---------------------------------------------------------------------------
* CONFIG node
* -------------------------------------------------------------------------*/
function TvBraviaNodeConfig(config) {
RED.nodes.createNode(this, config);
// Configuration options passed by Node Red
this.name = config.name;
this.debug = config.debug;
this.address = config.address;
this.port = config.port;
// Config node state
this.closing = false;
// Define functions called by nodes
var node = this;
// Define config node event listeners
node.on("close", function(done){
node.closing = true;
done();
});
}
RED.nodes.registerType("tv-bravia", TvBraviaNodeConfig, {
credentials: {
key: {type:"text"}
}
});
/* ---------------------------------------------------------------------------
* PUT node
* -------------------------------------------------------------------------*/
function TvBraviaPut(config) {
RED.nodes.createNode(this, config);
// Save settings in local node
this.device = config.device;
this.configNode = RED.nodes.getNode(this.device);
this.name = config.name;
this.action = config.action;
var node = this;
if (this.configNode) {
// Input handler, called on incoming flow
this.on('input', function(msg) {
// take action from the properties of the node. If not set, take
// the action from the message payload.
var action = node.action;
if (msg.hasOwnProperty('payload')) { action = node.action || msg.payload; }
if (!action) {
node.error('There is no action set for the node!');
return;
}
// connect to tv
const remote = new BraviaRemoteControl(node.configNode.address, node.configNode.port, node.configNode.credentials.key);
// send command to TV
remote.sendAction(action).then(function() {
if (node.configNode.debug) {
node.log('Successfully send command:' + action);
}
// pass on the msg after action has been successfull send
node.send(msg);
}).catch(function(error) {
node.error('Failed to send action to TV with error: ' + error);
});
});
} else {
this.error(RED._("tv-bravia.errors.missing-config"));
}
}
RED.nodes.registerType("tv-bravia-put", TvBraviaPut);
};