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');
|
|
|
|
var chk = /^([0-9A-F]{2}[:-]){5}([0-9A-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;
|
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';
|
2014-09-08 22:42:16 +02:00
|
|
|
if (mac != null) {
|
|
|
|
if (chk.test(mac)) {
|
2014-11-19 21:36:04 +01:00
|
|
|
try {
|
2016-11-13 10:51:31 +01:00
|
|
|
wol.wake(mac, {address: host}, function(error) {
|
2014-11-19 21:36:04 +01:00
|
|
|
if (error) { node.warn(error); }
|
|
|
|
else if (RED.settings.verbose) {
|
|
|
|
node.log("sent WOL magic packet");
|
|
|
|
}
|
|
|
|
});
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("wake on lan",WOLnode);
|
2013-10-26 17:44:23 +02:00
|
|
|
}
|