-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
91 lines (72 loc) · 2.46 KB
/
index.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
require('dotenv').config();
const { networkInterfaces } = require('os');
const nets = networkInterfaces();
let addresses = ['192.168.0.1', '192.168.1.1', '192.168.1.254', '10.0.0.138', '192.168.2.1', '10.0.0.1', '10.0.0.2', '10.1.1.1', '192.168.1.10', '192.168.1.210', '192.168.1.99', '192.168.15.1', '192.168.16.1', '192.168.2.1'];
let workingAddress = '';
const sleep = milliseconds => new Promise(resolve => setTimeout(resolve, milliseconds));
async function defineNetwork() {
for (let i = 0; i < addresses.length; i++) {
const currentIp = addresses[i];
const status = await fetch(`http://${currentIp}`, {
method: 'GET',
signal: AbortSignal.timeout( 200 ),
})
.then(async (response) => {
return 'success';
})
.catch(function (err) {
return 'failed';
});
if(status === 'success') {
workingAddress = currentIp;
console.log('Network starting at: ', workingAddress);
break;
}
}
}
async function scanNetwork() {
const base = workingAddress.substring(0, workingAddress.lastIndexOf('.'));
const startIp = base + '.1';
const endIp = base + '.254';
for (let i = ipToNumber(startIp); i <= ipToNumber(endIp); i++) {
const currentIp = numberToIp(i);
await fetch(`http://${currentIp}:8060/query/device-info`, {
method: 'GET',
signal: AbortSignal.timeout( 200 ),
})
.then(async (response) => {
const result = await fetch(`http://${currentIp}:8060/keypress/Up`, {
method: 'POST',
});
console.log('Command sent to: ', currentIp);
console.log(result.status);
})
.catch(function (err) {
});
await sleep(100);
}
console.log('Interval complete.');
console.log();
}
// Helper functions to convert between IP and number representations
function ipToNumber(ip) {
return ip.split('.').reduce((acc, octet, index, array) => acc + parseInt(octet) * Math.pow(256, array.length - index - 1), 0);
}
function numberToIp(number) {
return ((number >>> 24) & 0xFF) + '.' +
((number >>> 16) & 0xFF) + '.' +
((number >>> 8) & 0xFF) + '.' +
(number & 0xFF);
}
const intervalInMinutes = process.env.INTERVAL_IN_MINUTES;
const intervalInMilliseconds = intervalInMinutes * 60 * 1000;
async function start() {
await run();
const intervalId = setInterval(run, intervalInMilliseconds);
}
async function run() {
console.log('Scan running at: ', new Date().toString());
await defineNetwork();
await scanNetwork();
}
start();