-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
65 lines (55 loc) · 1.28 KB
/
client.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
const { resolve } = require('path');
const WebSocket = require('ws');
const readline = require('readline');
const mappings = require(resolve(__dirname, './mappings'));
const IP = process.env.NODE_SAMSUNG_TV_IP || '192.168.1.100';
const PORT = 8001;
const stdin = process.openStdin();
const readLine = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
function getCommand(keyPress) {
const command = {
method: 'ms.remote.control',
params: {
Cmd: 'Click',
DataOfCmd: keyPress,
Option: 'false',
TypeOfRemote: 'SendRemoteKey'
}
};
return JSON.stringify(command);
}
function sendCommand(input) {
const keyPress = mappings[input]
if (keyPress) {
connection.send(getCommand(keyPress));
}
}
function listenForCommands() {
readLine.on('line', sendCommand);
}
let connection;
function connect() {
return new Promise((resolve) => {
connection = new WebSocket(`ws://${IP}:${PORT}/api/v2/channels/samsung.remote.control`);
connection.on('open', () => {
listenForCommands();
resolve();
});
});
}
function disconnect() {
if (connection) {
connection.close();
readLine.close();
connection = undefined;
}
}
module.exports = {
connect,
disconnect,
sendCommand
};