changed fluxo parsing from regex to simple json usage

This commit is contained in:
Lucas Pleß 2022-09-04 14:18:21 +02:00
parent d17c24bde7
commit 0e913ea3ef
1 changed files with 9 additions and 6 deletions

View File

@ -4,19 +4,22 @@ var request = require('request');
var Flukso = function(hostname, pathname) {
var self = this;
var regexp = /([0-9]+)\]\]$/; // /\(([0-9]+) hosts* up\)/;
this.pollPower = function() {
request({url: "http://" + hostname + pathname}, function(error, res, response) {
if (error) {
self.emit('failed', error)
} else {
var matches = regexp.exec(response);
if(matches != null && matches.length == 2) {
var time = Date.now();
var num = matches[1];
self.emit('done', parseInt(num));
try {
var jsondata = JSON.parse(response);
var power = jsondata[jsondata.length-1][1];
self.emit('done', parseInt(power));
} catch(err) {
console.log("error parsing fluxo data");
}
}
});
};