raumstatus/node/ip-poll.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2013-10-20 22:04:58 +00:00
var redis = require("redis");
2013-10-02 12:04:01 +00:00
var util = require('util');
var EventEmitter = require('events').EventEmitter;
2013-10-20 22:04:58 +00:00
var exec = require('child_process').exec;
var redisprefix = "ippoll:";
2013-10-02 12:04:01 +00:00
var IpPoll = function(switchaddr, hostsaddr) {
var self = this;
var redisClient = redis.createClient();
2013-10-02 12:04:01 +00:00
var regexp = /\(([0-9]+) hosts* up\)/;
var nmap = "nmap -n -sP -T4 ";
2013-10-20 22:04:58 +00:00
redisClient.on("connect", function () {
console.log("connected to redis");
self.emit('ready');
});
this.pollCount = function() {
exec(nmap + "--min-hostgroup 10 " + hostsaddr, function (error, stdout, stderr) {
if(error == null) {
var matches = regexp.exec(stdout);
2013-10-02 12:04:01 +00:00
if(matches != null && matches.length == 2) {
var time = Date.now();
redisClient.zremrangebyscore('onlinecount', "-inf", time - 7*24*60*1000);
2013-10-20 22:04:58 +00:00
var num = matches[1];
redisClient.zadd('onlinecount', time, time + "|" + num, function() {
self.emit('doneCount', num);
});
2013-10-02 12:04:01 +00:00
}
}
});
2013-10-20 22:04:58 +00:00
};
2013-10-02 12:04:01 +00:00
this.pollState = function() {
exec(nmap + switchaddr, function (error, stdout, stderr) {
if(error == null) {
2013-10-02 12:04:01 +00:00
var matches = regexp.exec(stdout);
if(matches != null && matches.length == 2) {
self.emit('doneState', matches[1] == "1");
}
} else {
self.emit('doneState', "unknown");
}
});
2013-10-20 22:04:58 +00:00
};
this.getHistory = function(start, end, callback) {
redisClient.zrangebyscore('onlinecount', "-inf", "+inf", function(err, replies) {
var data = [];
replies.forEach(function (reply, i) {
var line = reply.split('|');
data.push( { at: moment(parseInt(line[0])).format(), value: line[1] });
});
callback(data);
});
};
2013-10-20 22:04:58 +00:00
};
2013-10-02 12:04:01 +00:00
util.inherits(IpPoll, EventEmitter);
module.exports = IpPoll;