node-red-configurable-ping
Version:
A Node-RED node which takes input and pings a remote server.
77 lines (66 loc) • 2.45 kB
JavaScript
/**
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
module.exports = function(RED) {
"use strict";
var spawn = require('child_process').spawn;
var plat = require('os').platform();
function PingNode(n) {
RED.nodes.createNode(this,n);
this.host = n.host;
this.timeout = parseInt(n.timeout);
this.requests = parseInt(n.requests);
var node = this;
this.on("input", function (msg) {
var host = msg.host || node.host;
if(msg.hasOwnProperty('payload')) {
msg._payload = msg.payload;
}
if(msg.hasOwnProperty('topic')) {
msg._topic = msg.topic;
}
msg.payload = false;
msg.topic = host;
if (!host) {
node.warn('No host is specificed. Either specify in node configuration or by passing in msg.host');
}
var ex;
if (plat == "linux") { ex = spawn('ping', ['-n', '-w', node.timeout, '-c', node.requests, host]); }
else if (plat.match(/^win/)) { ex = spawn('ping', ['-n', node.requests, '-w', node.timeout*1000, host],{windowsHide: true}); }
else if (plat == "darwin") { ex = spawn('ping', ['-n', '-t', node.timeout, '-c', node.requests, host]); }
else { node.error("Sorry - your platform - "+plat+" - is not recognised."); }
var res = false;
var line = "";
//var regex = /from.*time.(.*)ms/;
var regex = /=.*[<|=]([0-9]*).*TTL|ttl..*=([0-9\.]*)/;
ex.stdout.on('data', function (data) {
line += data.toString();
});
ex.stderr.on('data', function (data) {
//console.log('[ping] stderr: ' + data);
});
ex.on('close', function (code) {
var m = regex.exec(line)||"";
if (m !== '') {
if (m[1]) { res = Number(m[1]); }
if (m[2]) { res = Number(m[2]); }
}
if (code === 0) {
msg.payload = res;
}
node.send(msg);
});
});
}
RED.nodes.registerType("conf ping",PingNode);
}