2014-02-07 12:08:16 +01:00
|
|
|
|
2015-03-26 19:55:03 +01:00
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
//The Server Definition - this opens (and closes) the connection
|
|
|
|
function EmoncmsServerNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.server = n.server;
|
|
|
|
this.name = n.name;
|
2014-02-10 15:54:36 +01:00
|
|
|
}
|
2015-03-26 19:55:03 +01:00
|
|
|
RED.nodes.registerType("emoncms-server",EmoncmsServerNode,{
|
|
|
|
credentials: {
|
|
|
|
apikey: {type:"text"}
|
|
|
|
}
|
|
|
|
});
|
2014-02-10 15:54:36 +01:00
|
|
|
|
2015-03-26 19:55:03 +01:00
|
|
|
function Emoncms(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.emonServer = n.emonServer;
|
|
|
|
var sc = RED.nodes.getNode(this.emonServer);
|
2014-02-07 12:08:16 +01:00
|
|
|
|
2015-03-26 19:55:03 +01:00
|
|
|
this.baseurl = sc.server;
|
|
|
|
this.apikey = sc.credentials.apikey;
|
2014-02-14 21:45:59 +01:00
|
|
|
|
2015-03-26 19:55:03 +01:00
|
|
|
this.nodegroup = n.nodegroup || "";
|
|
|
|
var node = this;
|
|
|
|
var http;
|
|
|
|
if (this.baseurl.substring(0,5) === "https") { http = require("https"); }
|
|
|
|
else { http = require("http"); }
|
|
|
|
this.on("input", function(msg) {
|
|
|
|
this.url = this.baseurl + '/input/post.json?';
|
2015-11-30 15:23:52 +01:00
|
|
|
if (typeof(msg.payload) !== "string") {
|
|
|
|
this.url += 'json=' + JSON.stringify(msg.payload);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (msg.payload.indexOf(':') > -1) {
|
|
|
|
this.url += 'json={' + msg.payload + '}';
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-11-30 15:23:52 +01:00
|
|
|
this.url += 'csv='+msg.payload;
|
|
|
|
}
|
2014-02-14 21:45:59 +01:00
|
|
|
}
|
2015-03-26 19:55:03 +01:00
|
|
|
this.url += '&apikey='+this.apikey;
|
|
|
|
var nodegroup = this.nodegroup || msg.nodegroup;
|
2015-05-11 21:04:51 +02:00
|
|
|
if (nodegroup !== "") {
|
2015-03-26 19:55:03 +01:00
|
|
|
this.url += '&node=' + nodegroup;
|
|
|
|
}
|
2015-05-11 21:04:51 +02:00
|
|
|
if (typeof msg.time !== 'undefined') {
|
2015-12-09 14:21:42 +01:00
|
|
|
if (!isNaN(parseInt(msg.time))) { this.url += '&time=' + msg.time; }
|
2015-03-26 19:55:03 +01:00
|
|
|
}
|
|
|
|
http.get(this.url, function(res) {
|
|
|
|
msg.rc = res.statusCode;
|
|
|
|
msg.payload = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk) {
|
|
|
|
msg.payload += chunk;
|
|
|
|
});
|
|
|
|
res.on('end', function() {
|
2015-11-03 12:03:02 +01:00
|
|
|
if (msg.rc === 200) {
|
|
|
|
node.send(msg);
|
|
|
|
}
|
2015-03-26 19:55:03 +01:00
|
|
|
});
|
|
|
|
}).on('error', function(e) {
|
2015-11-03 12:03:02 +01:00
|
|
|
node.error(e,msg);
|
2014-02-14 21:45:59 +01:00
|
|
|
});
|
|
|
|
});
|
2015-03-26 19:55:03 +01:00
|
|
|
}
|
2015-10-25 11:07:54 +01:00
|
|
|
RED.nodes.registerType("emoncms",Emoncms);
|
2015-11-03 12:03:02 +01:00
|
|
|
|
2015-10-21 13:08:30 +02:00
|
|
|
function Emoncmsin(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.emonServer = n.emonServer;
|
|
|
|
var sc = RED.nodes.getNode(this.emonServer);
|
|
|
|
|
|
|
|
this.baseurl = sc.server;
|
|
|
|
this.apikey = sc.credentials.apikey;
|
|
|
|
|
|
|
|
this.feedid = n.feedid
|
|
|
|
var node = this;
|
|
|
|
var http;
|
|
|
|
if (this.baseurl.substring(0,5) === "https") { http = require("https"); }
|
|
|
|
else { http = require("http"); }
|
|
|
|
this.on("input", function(msg) {
|
|
|
|
this.url = this.baseurl + '/feed/value.json';
|
|
|
|
this.url += '&apikey='+this.apikey;
|
|
|
|
var feedid = this.feedid || msg.feedid;
|
|
|
|
if (feedid !== "") {
|
|
|
|
this.url += '&id=' + feedid;
|
|
|
|
}
|
|
|
|
http.get(this.url, function(res) {
|
|
|
|
msg.rc = res.statusCode;
|
|
|
|
msg.payload = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk) {
|
|
|
|
msg.payload += chunk;
|
|
|
|
});
|
|
|
|
res.on('end', function() {
|
2015-11-03 12:03:02 +01:00
|
|
|
if (msg.rc === 200) {
|
|
|
|
try {
|
|
|
|
msg.payload = JSON.parse(msg.payload);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
catch(err) {
|
2015-11-03 12:03:02 +01:00
|
|
|
// Failed to parse, pass it on
|
|
|
|
}
|
|
|
|
node.send(msg);
|
|
|
|
}
|
2015-10-21 13:08:30 +02:00
|
|
|
});
|
|
|
|
}).on('error', function(e) {
|
2015-11-03 12:03:02 +01:00
|
|
|
node.error(e,msg);
|
2015-10-21 13:08:30 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("emoncms in",Emoncmsin);
|
2014-02-07 12:08:16 +01:00
|
|
|
}
|