forked from node-red/node-red-nodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path39-wol.js
62 lines (58 loc) · 2.52 KB
/
39-wol.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
module.exports = function(RED) {
"use strict";
var wol = require('wake_on_lan');
var chk = /^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$/;
function WOLnode(n) {
RED.nodes.createNode(this,n);
this.mac = n.mac.trim();
this.host = n.host;
this.udpport = n.udpport;
this.numpackets = n.numpackets;
this.interval = n.interval;
var node = this;
this.on("input", function(msg) {
var mac = this.mac || msg.mac || null;
var host = this.host || msg.host || '255.255.255.255';
var udpport = Number(msg.udpport || this.udpport || '9');
var numpackets = Number(msg.numpackets || this.numpackets || '3');
var interval = Number(msg.interval || this.interval || '100');
if (udpport < 1 || udpport > 65535) {
node.warn("WOL: UDP port must be within 1 and 65535; it has been reset to 9.");
udpport = 9;
}
if (numpackets < 1 || numpackets > 500) {
node.warn("WOL: Number of packets must be within 1 and 500; it has been reset to 3.");
numpackets = 3;
}
if (interval < 1 || interval > 3600000) {
node.warn("WOL: Interval between packets must be within 1 and 3600000; it has been reset to 100.");
interval = 100;
}
if (mac != null) {
if (chk.test(mac)) {
try {
wol.wake(mac, {address: host, port: udpport, num_packets: numpackets, interval: interval}, function(error) {
if (error) {
node.warn(error);
node.status({fill:"red",shape:"ring",text:" "});
}
else if (RED.settings.verbose) {
node.log("sent WOL magic packet");
node.status({fill:"green",shape:"dot",text:" "});
}
});
}
catch(e) {
if (RED.settings.verbose) { node.log("WOL: socket error"); }
}
}
else { node.warn('WOL: bad mac address "'+mac+'"'); }
}
else { node.warn("WOL: no mac address specified"); }
});
this.on("close", function () {
node.status({});
})
}
RED.nodes.registerType("wake on lan",WOLnode);
}