2013-10-26 17:44:23 +02:00
|
|
|
|
2014-06-29 00:35:33 +02:00
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var wol = require('wake_on_lan');
|
2018-09-13 17:53:50 +02:00
|
|
|
var chk = /^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$/;
|
2013-10-26 17:44:23 +02:00
|
|
|
|
2014-06-29 00:35:33 +02:00
|
|
|
function WOLnode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.mac = n.mac.trim();
|
2016-11-13 10:51:31 +01:00
|
|
|
this.host = n.host;
|
2019-11-25 15:17:36 +01:00
|
|
|
this.udpport = n.udpport;
|
2014-06-29 00:35:33 +02:00
|
|
|
var node = this;
|
2013-10-26 17:44:23 +02:00
|
|
|
|
2014-06-29 00:35:33 +02:00
|
|
|
this.on("input", function(msg) {
|
2014-09-08 22:42:16 +02:00
|
|
|
var mac = this.mac || msg.mac || null;
|
2016-11-13 10:51:31 +01:00
|
|
|
var host = this.host || msg.host || '255.255.255.255';
|
2019-11-25 15:17:36 +01:00
|
|
|
var udpport = Number(msg.udpport || this.udpport || '9');
|
|
|
|
if (udpport < 1 || udpport > 65535) {
|
|
|
|
node.warn("WOL: UDP port must be within 1 and 65535; it has been reset to 9.");
|
|
|
|
udpport = 9;
|
|
|
|
}
|
2014-09-08 22:42:16 +02:00
|
|
|
if (mac != null) {
|
|
|
|
if (chk.test(mac)) {
|
2014-11-19 21:36:04 +01:00
|
|
|
try {
|
2019-11-25 15:17:36 +01:00
|
|
|
wol.wake(mac, {address: host, port: udpport}, function(error) {
|
2018-09-13 18:00:53 +02:00
|
|
|
if (error) {
|
|
|
|
node.warn(error);
|
|
|
|
node.status({fill:"red",shape:"ring",text:" "});
|
|
|
|
}
|
2014-11-19 21:36:04 +01:00
|
|
|
else if (RED.settings.verbose) {
|
|
|
|
node.log("sent WOL magic packet");
|
2018-09-13 18:00:53 +02:00
|
|
|
node.status({fill:"green",shape:"dot",text:" "});
|
2014-11-19 21:36:04 +01:00
|
|
|
}
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
catch(e) {
|
2014-11-19 21:52:10 +01:00
|
|
|
if (RED.settings.verbose) { node.log("WOL: socket error"); }
|
|
|
|
}
|
2013-10-26 17:44:23 +02:00
|
|
|
}
|
2014-09-08 22:42:16 +02:00
|
|
|
else { node.warn('WOL: bad mac address "'+mac+'"'); }
|
2013-10-26 17:44:23 +02:00
|
|
|
}
|
2014-09-08 22:42:16 +02:00
|
|
|
else { node.warn("WOL: no mac address specified"); }
|
2014-06-29 00:35:33 +02:00
|
|
|
});
|
2018-12-09 12:01:18 +01:00
|
|
|
|
2018-09-13 18:00:53 +02:00
|
|
|
this.on("close", function () {
|
|
|
|
node.status({});
|
|
|
|
})
|
2014-06-29 00:35:33 +02:00
|
|
|
}
|
|
|
|
RED.nodes.registerType("wake on lan",WOLnode);
|
2013-10-26 17:44:23 +02:00
|
|
|
}
|