mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Return all feed data (#743)
This commit is contained in:
parent
a57bf5383f
commit
fbe2078324
@ -83,7 +83,9 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-help-name="emoncms in">
|
<script type="text/x-red" data-help-name="emoncms in">
|
||||||
<p>Fetches data from emoncms.</p>
|
<p>Fetches data from emoncms.</p>
|
||||||
<p>The <code>msg.payload</code> contains last emoncms feed value
|
<p>The <code>msg.topic</code> contains the name of the Feed</p>
|
||||||
|
<p>The <code>msg.payload</code> contains last emoncms feed value</p>
|
||||||
|
<p>The <code>msg.feed_data</code> contains all the feed data</p>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -160,7 +160,7 @@ module.exports = function(RED) {
|
|||||||
if (this.baseurl.substring(0,5) === "https") { http = require("https"); }
|
if (this.baseurl.substring(0,5) === "https") { http = require("https"); }
|
||||||
else { http = require("http"); }
|
else { http = require("http"); }
|
||||||
this.on("input", function(msg) {
|
this.on("input", function(msg) {
|
||||||
this.url = this.baseurl + '/feed/value.json';
|
this.url = this.baseurl + '/feed/aget.json';
|
||||||
this.url += '&apikey='+this.apikey;
|
this.url += '&apikey='+this.apikey;
|
||||||
var feedid = this.feedid || msg.feedid;
|
var feedid = this.feedid || msg.feedid;
|
||||||
if (feedid !== "") {
|
if (feedid !== "") {
|
||||||
@ -169,14 +169,17 @@ module.exports = function(RED) {
|
|||||||
http.get(this.url, function(res) {
|
http.get(this.url, function(res) {
|
||||||
msg.rc = res.statusCode;
|
msg.rc = res.statusCode;
|
||||||
msg.payload = "";
|
msg.payload = "";
|
||||||
|
msg.feed_data = "";
|
||||||
res.setEncoding('utf8');
|
res.setEncoding('utf8');
|
||||||
res.on('data', function(chunk) {
|
res.on('data', function(chunk) {
|
||||||
msg.payload += chunk;
|
msg.feed_data += chunk;
|
||||||
});
|
});
|
||||||
res.on('end', function() {
|
res.on('end', function() {
|
||||||
if (msg.rc === 200) {
|
if (msg.rc === 200) {
|
||||||
try {
|
try {
|
||||||
msg.payload = JSON.parse(msg.payload);
|
msg.feed_data = JSON.parse(msg.feed_data);
|
||||||
|
msg.topic = msg.feed_data.name;
|
||||||
|
msg.payload = msg.feed_data.value;
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
// Failed to parse, pass it on
|
// Failed to parse, pass it on
|
||||||
|
Loading…
x
Reference in New Issue
Block a user