mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Update node-red-nodes social nodes to use strict and pass jshint scan
This commit is contained in:
parent
9b487098ae
commit
62956b0bb8
@ -14,68 +14,70 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
module.exports = function(RED) {
|
||||||
var nma = require('nma');
|
"use strict";
|
||||||
var util = require('util');
|
var nma = require('nma');
|
||||||
|
var util = require('util');
|
||||||
|
|
||||||
function NMANode(n) {
|
function NMANode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
this.title = n.title;
|
this.title = n.title;
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
||||||
else { this.error("No NMA API key set"); }
|
else { this.error("No NMA API key set"); }
|
||||||
var node = this;
|
var node = this;
|
||||||
this.on("input",function(msg) {
|
this.on("input",function(msg) {
|
||||||
var titl = this.title||msg.topic||"Node-RED";
|
var titl = this.title||msg.topic||"Node-RED";
|
||||||
if (typeof(msg.payload) === 'object') {
|
if (typeof(msg.payload) === 'object') {
|
||||||
msg.payload = JSON.stringify(msg.payload);
|
msg.payload = JSON.stringify(msg.payload);
|
||||||
}
|
|
||||||
else { msg.payload = msg.payload.toString(); }
|
|
||||||
if (node.pushkey) {
|
|
||||||
try {
|
|
||||||
nma(node.pushkey, "Node-RED", titl, msg.payload, 0 );
|
|
||||||
} catch (e) {
|
|
||||||
node.warn("NMA error: "+ e);
|
|
||||||
}
|
}
|
||||||
}
|
else { msg.payload = msg.payload.toString(); }
|
||||||
else {
|
if (node.pushkey) {
|
||||||
node.warn("NMA credentials not set.");
|
try {
|
||||||
}
|
nma(node.pushkey, "Node-RED", titl, msg.payload, 0 );
|
||||||
});
|
} catch (e) {
|
||||||
}
|
node.warn("NMA error: "+ e);
|
||||||
|
}
|
||||||
RED.nodes.registerType("nma",NMANode);
|
}
|
||||||
|
else {
|
||||||
var querystring = require('querystring');
|
node.warn("NMA credentials not set.");
|
||||||
|
}
|
||||||
RED.httpAdmin.get('/nma/:id',function(req,res) {
|
});
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
if (credentials) {
|
|
||||||
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!="")}));
|
|
||||||
} else {
|
|
||||||
res.send(JSON.stringify({}));
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.delete('/nma/:id',function(req,res) {
|
RED.nodes.registerType("nma",NMANode);
|
||||||
RED.nodes.deleteCredentials(req.params.id);
|
|
||||||
res.send(200);
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.post('/nma/:id',function(req,res) {
|
var querystring = require('querystring');
|
||||||
var body = "";
|
|
||||||
req.on('data', function(chunk) {
|
RED.httpAdmin.get('/nma/:id',function(req,res) {
|
||||||
body+=chunk;
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
});
|
if (credentials) {
|
||||||
req.on('end', function(){
|
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!=="")}));
|
||||||
var newCreds = querystring.parse(body);
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
||||||
if (newCreds.pushkey == "") {
|
|
||||||
delete credentials.pushkey;
|
|
||||||
} else {
|
} else {
|
||||||
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
res.send(JSON.stringify({}));
|
||||||
}
|
}
|
||||||
RED.nodes.addCredentials(req.params.id,credentials);
|
});
|
||||||
|
|
||||||
|
RED.httpAdmin.delete('/nma/:id',function(req,res) {
|
||||||
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
RED.httpAdmin.post('/nma/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
if (newCreds.pushkey === "") {
|
||||||
|
delete credentials.pushkey;
|
||||||
|
} else {
|
||||||
|
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
||||||
|
}
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -14,26 +14,28 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
module.exports = function(RED) {
|
||||||
var growl = require('growl');
|
"use strict";
|
||||||
var imagefile = process.env.NODE_RED_HOME+"/public/node-red.png";
|
var growl = require('growl');
|
||||||
|
var imagefile = process.env.NODE_RED_HOME+"/public/node-red.png";
|
||||||
|
|
||||||
function NotifyNode(n) {
|
function NotifyNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
this.title = n.title;
|
this.title = n.title;
|
||||||
var node = this;
|
var node = this;
|
||||||
this.on("input",function(msg) {
|
this.on("input",function(msg) {
|
||||||
var titl = this.title || msg.topic;
|
var titl = this.title || msg.topic;
|
||||||
if (typeof(msg.payload) == 'object') {
|
if (typeof(msg.payload) == 'object') {
|
||||||
msg.payload = JSON.stringify(msg.payload);
|
msg.payload = JSON.stringify(msg.payload);
|
||||||
}
|
}
|
||||||
if (typeof(titl) != 'undefined') {
|
if (typeof(titl) != 'undefined') {
|
||||||
growl(msg.payload, { title: titl, image: imagefile });
|
growl(msg.payload, { title: titl, image: imagefile });
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
growl(msg.payload, { image: imagefile });
|
growl(msg.payload, { image: imagefile });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
RED.nodes.registerType("notify",NotifyNode);
|
||||||
}
|
}
|
||||||
|
|
||||||
RED.nodes.registerType("notify",NotifyNode);
|
|
||||||
|
@ -14,97 +14,99 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
module.exports = function(RED) {
|
||||||
var Prowl = require('node-prowl');
|
"use strict";
|
||||||
var util = require('util');
|
var Prowl = require('node-prowl');
|
||||||
|
var util = require('util');
|
||||||
|
|
||||||
// Either add a line like this to settings.js
|
// Either add a line like this to settings.js
|
||||||
// prowl: {prowlkey:'My-API-KEY'},
|
// prowl: {prowlkey:'My-API-KEY'},
|
||||||
// or create pushkey.js in dir ABOVE node-red, it just needs to be like
|
// or create pushkey.js in dir ABOVE node-red, it just needs to be like
|
||||||
// module.exports = {prowlkey:'My-API-KEY'}
|
// module.exports = {prowlkey:'My-API-KEY'}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var pushkeys = RED.settings.prowl || require(process.env.NODE_RED_HOME+"/../pushkey.js");
|
var pushkeys = RED.settings.prowl || require(process.env.NODE_RED_HOME+"/../pushkey.js");
|
||||||
}
|
|
||||||
catch(err) { }
|
|
||||||
|
|
||||||
function ProwlNode(n) {
|
|
||||||
RED.nodes.createNode(this,n);
|
|
||||||
this.title = n.title;
|
|
||||||
this.priority = parseInt(n.priority);
|
|
||||||
if (this.priority > 2) this.priority = 2;
|
|
||||||
if (this.priority < -2) this.priority = -2;
|
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
|
||||||
else {
|
|
||||||
if (pushkeys) { this.pushkey = pushkeys.prowlkey; }
|
|
||||||
else { this.error("No Prowl credentials set."); }
|
|
||||||
}
|
}
|
||||||
this.prowl = false;
|
catch(err) { }
|
||||||
if (this.pushkey) { this.prowl = new Prowl(this.pushkey); }
|
|
||||||
var node = this;
|
|
||||||
|
|
||||||
this.on("input",function(msg) {
|
function ProwlNode(n) {
|
||||||
var titl = this.title||msg.topic||"Node-RED";
|
RED.nodes.createNode(this,n);
|
||||||
var pri = msg.priority||this.priority;
|
this.title = n.title;
|
||||||
if (typeof(msg.payload) === 'object') {
|
this.priority = parseInt(n.priority);
|
||||||
msg.payload = JSON.stringify(msg.payload);
|
if (this.priority > 2) { this.priority = 2; }
|
||||||
|
if (this.priority < -2) { this.priority = -2; }
|
||||||
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
|
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
||||||
|
else {
|
||||||
|
if (pushkeys) { this.pushkey = pushkeys.prowlkey; }
|
||||||
|
else { this.error("No Prowl credentials set."); }
|
||||||
}
|
}
|
||||||
else { msg.payload = msg.payload.toString(); }
|
this.prowl = false;
|
||||||
if (node.pushkey) {
|
if (this.pushkey) { this.prowl = new Prowl(this.pushkey); }
|
||||||
try {
|
var node = this;
|
||||||
node.prowl.push(msg.payload, titl, { priority: pri }, function(err, remaining) {
|
|
||||||
if (err) node.error(err);
|
this.on("input",function(msg) {
|
||||||
node.log( remaining + ' calls to Prowl api during current hour.' );
|
var titl = this.title||msg.topic||"Node-RED";
|
||||||
});
|
var pri = msg.priority||this.priority;
|
||||||
|
if (typeof(msg.payload) === 'object') {
|
||||||
|
msg.payload = JSON.stringify(msg.payload);
|
||||||
}
|
}
|
||||||
catch (err) {
|
else { msg.payload = msg.payload.toString(); }
|
||||||
node.error(err);
|
if (node.pushkey) {
|
||||||
|
try {
|
||||||
|
node.prowl.push(msg.payload, titl, { priority: pri }, function(err, remaining) {
|
||||||
|
if (err) { node.error(err); }
|
||||||
|
node.log( remaining + ' calls to Prowl api during current hour.' );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
node.error(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
node.warn("Prowl credentials not set.");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
RED.nodes.registerType("prowl",ProwlNode);
|
||||||
|
|
||||||
|
var querystring = require('querystring');
|
||||||
|
|
||||||
|
RED.httpAdmin.get('/prowl/:id',function(req,res) {
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
if (credentials) {
|
||||||
|
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!=="")}));
|
||||||
|
}
|
||||||
|
else if (pushkeys && pushkeys.prowlkey) {
|
||||||
|
RED.nodes.addCredentials(req.params.id,{pushkey:pushkeys.prowlkey,global:true});
|
||||||
|
credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!==""),global:credentials.global}));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
node.warn("Prowl credentials not set.");
|
res.send(JSON.stringify({}));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
RED.nodes.registerType("prowl",ProwlNode);
|
|
||||||
|
|
||||||
var querystring = require('querystring');
|
RED.httpAdmin.delete('/prowl/:id',function(req,res) {
|
||||||
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
RED.httpAdmin.get('/prowl/:id',function(req,res) {
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
if (credentials) {
|
|
||||||
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!="")}));
|
|
||||||
}
|
|
||||||
else if (pushkeys && pushkeys.prowlkey) {
|
|
||||||
RED.nodes.addCredentials(req.params.id,{pushkey:pushkeys.prowlkey,global:true});
|
|
||||||
credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
res.send(JSON.stringify({hasPassword:(credentials.pushkey&&credentials.pushkey!=""),global:credentials.global}));;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
res.send(JSON.stringify({}));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.delete('/prowl/:id',function(req,res) {
|
|
||||||
RED.nodes.deleteCredentials(req.params.id);
|
|
||||||
res.send(200);
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.post('/prowl/:id',function(req,res) {
|
|
||||||
var body = "";
|
|
||||||
req.on('data', function(chunk) {
|
|
||||||
body+=chunk;
|
|
||||||
});
|
|
||||||
req.on('end', function(){
|
|
||||||
var newCreds = querystring.parse(body);
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
||||||
if (newCreds.pushkey == "") {
|
|
||||||
delete credentials.pushkey;
|
|
||||||
} else {
|
|
||||||
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
|
||||||
}
|
|
||||||
RED.nodes.addCredentials(req.params.id,credentials);
|
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
RED.httpAdmin.post('/prowl/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
if (newCreds.pushkey === "") {
|
||||||
|
delete credentials.pushkey;
|
||||||
|
} else {
|
||||||
|
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
||||||
|
}
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -14,105 +14,107 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
module.exports = function(RED) {
|
||||||
var PushBullet = require('pushbullet');
|
"use strict";
|
||||||
var util = require('util');
|
var PushBullet = require('pushbullet');
|
||||||
|
var util = require('util');
|
||||||
|
|
||||||
// Either create pushkey.js in dir ABOVE node-red, it just needs to be like
|
// Either create pushkey.js in dir ABOVE node-red, it just needs to be like
|
||||||
// module.exports = {pushbullet:'My-API-KEY', deviceid:'12345'}
|
// module.exports = {pushbullet:'My-API-KEY', deviceid:'12345'}
|
||||||
// or set them per node in the edit dialog
|
// or set them per node in the edit dialog
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var pushkeys = RED.settings.pushbullet || require(process.env.NODE_RED_HOME+"/../pushkey.js");
|
var pushkeys = RED.settings.pushbullet || require(process.env.NODE_RED_HOME+"/../pushkey.js");
|
||||||
}
|
|
||||||
catch(err) {
|
|
||||||
//util.log("[57-pushbullet.js] Warning: Failed to load global PushBullet credentials");
|
|
||||||
}
|
|
||||||
|
|
||||||
function PushbulletNode(n) {
|
|
||||||
RED.nodes.createNode(this,n);
|
|
||||||
this.title = n.title;
|
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
|
||||||
else {
|
|
||||||
if (pushkeys) { this.pushkey = pushkeys.pushbullet; }
|
|
||||||
else { this.error("No Pushbullet API key set"); }
|
|
||||||
}
|
}
|
||||||
if ((credentials) && (credentials.hasOwnProperty("deviceid"))) { this.deviceid = credentials.deviceid; }
|
catch(err) {
|
||||||
else {
|
//util.log("[57-pushbullet.js] Warning: Failed to load global PushBullet credentials");
|
||||||
if (pushkeys) { this.deviceid = pushkeys.deviceid; }
|
|
||||||
else { this.warn("No deviceid set"); }
|
|
||||||
}
|
}
|
||||||
this.pusher = new PushBullet(this.pushkey);
|
|
||||||
var node = this;
|
|
||||||
|
|
||||||
this.on("input",function(msg) {
|
function PushbulletNode(n) {
|
||||||
var titl = node.title||msg.topic||"Node-RED";
|
RED.nodes.createNode(this,n);
|
||||||
var dev = msg.deviceid||node.deviceid;
|
this.title = n.title;
|
||||||
if (typeof(msg.payload) === 'object') {
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
msg.payload = JSON.stringify(msg.payload);
|
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
||||||
|
else {
|
||||||
|
if (pushkeys) { this.pushkey = pushkeys.pushbullet; }
|
||||||
|
else { this.error("No Pushbullet API key set"); }
|
||||||
}
|
}
|
||||||
else { msg.payload = msg.payload.toString(); }
|
if ((credentials) && (credentials.hasOwnProperty("deviceid"))) { this.deviceid = credentials.deviceid; }
|
||||||
if (node.pushkey && dev) {
|
else {
|
||||||
try {
|
if (pushkeys) { this.deviceid = pushkeys.deviceid; }
|
||||||
if (!isNaN(dev)) { dev = Number(dev); }
|
else { this.warn("No deviceid set"); }
|
||||||
node.pusher.note(dev, titl, msg.payload, function(err, response) {
|
}
|
||||||
if (err) node.error("Pushbullet error: "+err);
|
this.pusher = new PushBullet(this.pushkey);
|
||||||
//console.log(response);
|
var node = this;
|
||||||
});
|
|
||||||
|
this.on("input",function(msg) {
|
||||||
|
var titl = node.title||msg.topic||"Node-RED";
|
||||||
|
var dev = msg.deviceid||node.deviceid;
|
||||||
|
if (typeof(msg.payload) === 'object') {
|
||||||
|
msg.payload = JSON.stringify(msg.payload);
|
||||||
}
|
}
|
||||||
catch (err) {
|
else { msg.payload = msg.payload.toString(); }
|
||||||
node.error(err);
|
if (node.pushkey && dev) {
|
||||||
|
try {
|
||||||
|
if (!isNaN(dev)) { dev = Number(dev); }
|
||||||
|
node.pusher.note(dev, titl, msg.payload, function(err, response) {
|
||||||
|
if (err) { node.error("Pushbullet error: "+err); }
|
||||||
|
//console.log(response);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
node.error(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
node.warn("Pushbullet credentials not set/found. See node info.");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
RED.nodes.registerType("pushbullet",PushbulletNode);
|
||||||
|
|
||||||
|
var querystring = require('querystring');
|
||||||
|
|
||||||
|
RED.httpAdmin.get('/pushbullet/:id',function(req,res) {
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
if (credentials) {
|
||||||
|
res.send(JSON.stringify({deviceid:credentials.deviceid,hasPassword:(credentials.pushkey&&credentials.pushkey!=="")}));
|
||||||
|
}
|
||||||
|
else if (pushkeys && pushkeys.pushbullet && pushkeys.deviceid) {
|
||||||
|
RED.nodes.addCredentials(req.params.id,{pushkey:pushkeys.pushbullet,deviceid:pushkeys.deviceid,global:true});
|
||||||
|
credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
res.send(JSON.stringify({deviceid:credentials.deviceid,global:credentials.global,hasPassword:(credentials.pushkey&&credentials.pushkey!=="")}));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
node.warn("Pushbullet credentials not set/found. See node info.");
|
res.send(JSON.stringify({}));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
RED.nodes.registerType("pushbullet",PushbulletNode);
|
|
||||||
|
|
||||||
var querystring = require('querystring');
|
RED.httpAdmin.delete('/pushbullet/:id',function(req,res) {
|
||||||
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
RED.httpAdmin.get('/pushbullet/:id',function(req,res) {
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
if (credentials) {
|
|
||||||
res.send(JSON.stringify({deviceid:credentials.deviceid,hasPassword:(credentials.pushkey&&credentials.pushkey!="")}));
|
|
||||||
}
|
|
||||||
else if (pushkeys && pushkeys.pushbullet && pushkeys.deviceid) {
|
|
||||||
RED.nodes.addCredentials(req.params.id,{pushkey:pushkeys.pushbullet,deviceid:pushkeys.deviceid,global:true});
|
|
||||||
credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
res.send(JSON.stringify({deviceid:credentials.deviceid,global:credentials.global,hasPassword:(credentials.pushkey&&credentials.pushkey!="")}));;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
res.send(JSON.stringify({}));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.delete('/pushbullet/:id',function(req,res) {
|
|
||||||
RED.nodes.deleteCredentials(req.params.id);
|
|
||||||
res.send(200);
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.post('/pushbullet/:id',function(req,res) {
|
|
||||||
var body = "";
|
|
||||||
req.on('data', function(chunk) {
|
|
||||||
body+=chunk;
|
|
||||||
});
|
|
||||||
req.on('end', function(){
|
|
||||||
var newCreds = querystring.parse(body);
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
||||||
if (newCreds.deviceid == null || newCreds.deviceid == "") {
|
|
||||||
delete credentials.deviceid;
|
|
||||||
} else {
|
|
||||||
credentials.deviceid = newCreds.deviceid;
|
|
||||||
}
|
|
||||||
if (newCreds.pushkey == "") {
|
|
||||||
delete credentials.pushkey;
|
|
||||||
} else {
|
|
||||||
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
|
||||||
}
|
|
||||||
RED.nodes.addCredentials(req.params.id,credentials);
|
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
RED.httpAdmin.post('/pushbullet/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
if (newCreds.deviceid === null || newCreds.deviceid === "") {
|
||||||
|
delete credentials.deviceid;
|
||||||
|
} else {
|
||||||
|
credentials.deviceid = newCreds.deviceid;
|
||||||
|
}
|
||||||
|
if (newCreds.pushkey === "") {
|
||||||
|
delete credentials.pushkey;
|
||||||
|
} else {
|
||||||
|
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
||||||
|
}
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -17,142 +17,141 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
module.exports = function(RED) {
|
||||||
|
"use strict";
|
||||||
|
var Pusher = require('pusher');
|
||||||
|
var PusherClient = require('pusher-client');
|
||||||
|
|
||||||
var Pusher = require('pusher');
|
//node for subscribing to an event/channel
|
||||||
var PusherClient = require('pusher-client');
|
function PusherNode(n) {
|
||||||
|
// Create a RED node
|
||||||
|
RED.nodes.createNode(this,n);
|
||||||
|
|
||||||
// Require main module
|
var node = this;
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
|
|
||||||
//node for subscribing to an event/channel
|
if ((credentials) && (credentials.hasOwnProperty("pusherappkey_sub"))) { this.appkey = credentials.pusherappkey_sub; }
|
||||||
function PusherNode(n) {
|
else { this.error("No Pusher app key set for input node"); }
|
||||||
// Create a RED node
|
|
||||||
RED.nodes.createNode(this,n);
|
|
||||||
|
|
||||||
var node = this;
|
//get parameters from user
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
this.channel = n.channel;
|
||||||
|
this.eventname = n.eventname;
|
||||||
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pusherappkey_sub"))) { this.appkey = credentials.pusherappkey_sub; }
|
//create a subscription to the channel and event defined by user
|
||||||
else { this.error("No Pusher app key set for input node"); }
|
var socket = new PusherClient(''+this.appkey);
|
||||||
|
var my_channel = socket.subscribe(''+this.channel);
|
||||||
|
socket.bind(''+this.eventname,
|
||||||
|
function(data) {
|
||||||
|
var msg = {};
|
||||||
|
if (data.hasOwnProperty("payload")) { msg.payload = data.payload; }
|
||||||
|
else { msg.payload = data; }
|
||||||
|
node.send(msg);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
//get parameters from user
|
this.on("close", function() {
|
||||||
this.channel = n.channel;
|
socket.disconnect();
|
||||||
this.eventname = n.eventname;
|
|
||||||
|
|
||||||
//create a subscription to the channel and event defined by user
|
|
||||||
var socket = new PusherClient(''+this.appkey);
|
|
||||||
var my_channel = socket.subscribe(''+this.channel);
|
|
||||||
socket.bind(''+this.eventname,
|
|
||||||
function(data) {
|
|
||||||
var msg = {};
|
|
||||||
if (data.hasOwnProperty("payload")) { msg.payload = data.payload; }
|
|
||||||
else { msg.payload = data; }
|
|
||||||
node.send(msg);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
this.on("close", function() {
|
|
||||||
socket.disconnect();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
//Node for sending Pusher events
|
|
||||||
function PusherNodeSend(n) {
|
|
||||||
// Create a RED node
|
|
||||||
RED.nodes.createNode(this,n);
|
|
||||||
|
|
||||||
var node = this;
|
|
||||||
|
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
|
||||||
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pusherappid"))) { this.appid = credentials.pusherappid; }
|
|
||||||
else { this.error("No Pusher api token set"); }
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pusherappsecret"))) { this.appsecret = credentials.pusherappsecret; }
|
|
||||||
else { this.error("No Pusher user secret set"); }
|
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pusherappkey"))) { this.appkey = credentials.pusherappkey; }
|
|
||||||
else { this.error("No Pusher user key set"); }
|
|
||||||
|
|
||||||
//get parameters from user
|
|
||||||
this.channel = n.channel;
|
|
||||||
this.eventname = n.eventname;
|
|
||||||
|
|
||||||
var pusher = new Pusher({
|
|
||||||
appId: this.appid,
|
|
||||||
key: this.appkey,
|
|
||||||
secret: this.appsecret
|
|
||||||
});
|
|
||||||
|
|
||||||
this.on("input", function(msg){
|
|
||||||
pusher.trigger(this.channel, this.eventname, {
|
|
||||||
"payload": msg.payload
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
this.on("close", function() {
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
//debugging on the output:
|
|
||||||
var displayResult = function(result) {
|
|
||||||
node.log(result);
|
|
||||||
};
|
|
||||||
|
|
||||||
var displayError = function(err) {
|
|
||||||
node.log("Error: "+err);
|
|
||||||
};
|
|
||||||
|
|
||||||
RED.nodes.registerType("pusher in",PusherNode);
|
|
||||||
RED.nodes.registerType("pusher out",PusherNodeSend);
|
|
||||||
|
|
||||||
var querystring = require('querystring');
|
|
||||||
|
|
||||||
RED.httpAdmin.get('/pusher/:id',function(req,res) {
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
if (credentials) {
|
|
||||||
res.send(JSON.stringify({pusherappid:credentials.pusherappid,pusherappsecret:credentials.pusherappsecret, pusherappkey:credentials.pusherappkey, pusherappkey_sub:credentials.pusherappkey_sub}));
|
|
||||||
} else {
|
|
||||||
res.send(JSON.stringify({}));
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.delete('/pusher/:id',function(req,res) {
|
//Node for sending Pusher events
|
||||||
RED.nodes.deleteCredentials(req.params.id);
|
function PusherNodeSend(n) {
|
||||||
res.send(200);
|
// Create a RED node
|
||||||
});
|
RED.nodes.createNode(this,n);
|
||||||
|
|
||||||
RED.httpAdmin.post('/pusher/:id',function(req,res) {
|
var node = this;
|
||||||
var body = "";
|
|
||||||
req.on('data', function(chunk) {
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
body+=chunk;
|
|
||||||
|
if ((credentials) && (credentials.hasOwnProperty("pusherappid"))) { this.appid = credentials.pusherappid; }
|
||||||
|
else { this.error("No Pusher api token set"); }
|
||||||
|
if ((credentials) && (credentials.hasOwnProperty("pusherappsecret"))) { this.appsecret = credentials.pusherappsecret; }
|
||||||
|
else { this.error("No Pusher user secret set"); }
|
||||||
|
if ((credentials) && (credentials.hasOwnProperty("pusherappkey"))) { this.appkey = credentials.pusherappkey; }
|
||||||
|
else { this.error("No Pusher user key set"); }
|
||||||
|
|
||||||
|
//get parameters from user
|
||||||
|
this.channel = n.channel;
|
||||||
|
this.eventname = n.eventname;
|
||||||
|
|
||||||
|
var pusher = new Pusher({
|
||||||
|
appId: this.appid,
|
||||||
|
key: this.appkey,
|
||||||
|
secret: this.appsecret
|
||||||
|
});
|
||||||
|
|
||||||
|
this.on("input", function(msg){
|
||||||
|
pusher.trigger(this.channel, this.eventname, {
|
||||||
|
"payload": msg.payload
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
this.on("close", function() {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//debugging on the output:
|
||||||
|
var displayResult = function(result) {
|
||||||
|
node.log(result);
|
||||||
|
};
|
||||||
|
|
||||||
|
var displayError = function(err) {
|
||||||
|
node.log("Error: "+err);
|
||||||
|
};
|
||||||
|
|
||||||
|
RED.nodes.registerType("pusher in",PusherNode);
|
||||||
|
RED.nodes.registerType("pusher out",PusherNodeSend);
|
||||||
|
|
||||||
|
var querystring = require('querystring');
|
||||||
|
|
||||||
|
RED.httpAdmin.get('/pusher/:id',function(req,res) {
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
if (credentials) {
|
||||||
|
res.send(JSON.stringify({pusherappid:credentials.pusherappid,pusherappsecret:credentials.pusherappsecret, pusherappkey:credentials.pusherappkey, pusherappkey_sub:credentials.pusherappkey_sub}));
|
||||||
|
} else {
|
||||||
|
res.send(JSON.stringify({}));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
req.on('end', function(){
|
|
||||||
var newCreds = querystring.parse(body);
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
||||||
|
|
||||||
if (newCreds.pusherappid == null || newCreds.pusherappid == "") {
|
RED.httpAdmin.delete('/pusher/:id',function(req,res) {
|
||||||
delete credentials.pusherappid;
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
} else {
|
|
||||||
credentials.pusherappid = newCreds.pusherappid;
|
|
||||||
}
|
|
||||||
if (newCreds.pusherappkey == "") {
|
|
||||||
delete credentials.pusherappkey;
|
|
||||||
} else {
|
|
||||||
credentials.pusherappkey = newCreds.pusherappkey||credentials.pusherappkey;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newCreds.pusherappsecret == "") {
|
|
||||||
delete credentials.pusherappsecret;
|
|
||||||
} else {
|
|
||||||
credentials.pusherappsecret = newCreds.pusherappsecret||credentials.pusherappsecret;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newCreds.pusherappkey_sub == "") {
|
|
||||||
delete credentials.pusherappkey_sub;
|
|
||||||
} else {
|
|
||||||
credentials.pusherappkey_sub = newCreds.pusherappkey_sub||credentials.pusherappkey_sub;
|
|
||||||
}
|
|
||||||
|
|
||||||
RED.nodes.addCredentials(req.params.id,credentials);
|
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
RED.httpAdmin.post('/pusher/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
|
||||||
|
if (newCreds.pusherappid === null || newCreds.pusherappid === "") {
|
||||||
|
delete credentials.pusherappid;
|
||||||
|
} else {
|
||||||
|
credentials.pusherappid = newCreds.pusherappid;
|
||||||
|
}
|
||||||
|
if (newCreds.pusherappkey === "") {
|
||||||
|
delete credentials.pusherappkey;
|
||||||
|
} else {
|
||||||
|
credentials.pusherappkey = newCreds.pusherappkey||credentials.pusherappkey;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newCreds.pusherappsecret === "") {
|
||||||
|
delete credentials.pusherappsecret;
|
||||||
|
} else {
|
||||||
|
credentials.pusherappsecret = newCreds.pusherappsecret||credentials.pusherappsecret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newCreds.pusherappkey_sub === "") {
|
||||||
|
delete credentials.pusherappkey_sub;
|
||||||
|
} else {
|
||||||
|
credentials.pusherappkey_sub = newCreds.pusherappkey_sub||credentials.pusherappkey_sub;
|
||||||
|
}
|
||||||
|
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -14,97 +14,99 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
module.exports = function(RED) {
|
||||||
var PushOver = require('pushover-notifications');
|
"use strict";
|
||||||
var util = require('util');
|
var PushOver = require('pushover-notifications');
|
||||||
|
var util = require('util');
|
||||||
|
|
||||||
function PushoverNode(n) {
|
function PushoverNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
this.title = n.title;
|
this.title = n.title;
|
||||||
this.priority = n.priority;
|
this.priority = n.priority;
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
if ((credentials) && (credentials.hasOwnProperty("pushkey"))) { this.pushkey = credentials.pushkey; }
|
||||||
else { this.error("No Pushover api token set"); }
|
else { this.error("No Pushover api token set"); }
|
||||||
if ((credentials) && (credentials.hasOwnProperty("deviceid"))) { this.deviceid = credentials.deviceid; }
|
if ((credentials) && (credentials.hasOwnProperty("deviceid"))) { this.deviceid = credentials.deviceid; }
|
||||||
else { this.error("No Pushover user key set"); }
|
else { this.error("No Pushover user key set"); }
|
||||||
var pusher = false;
|
var pusher = false;
|
||||||
if (this.pushkey && this.deviceid) {
|
if (this.pushkey && this.deviceid) {
|
||||||
pusher = new PushOver({
|
pusher = new PushOver({
|
||||||
user: this.deviceid,
|
user: this.deviceid,
|
||||||
token: this.pushkey,
|
token: this.pushkey,
|
||||||
onerror: function(err) {
|
onerror: function(err) {
|
||||||
util.log('[57-pushover.js] Error: '+err);
|
util.log('[57-pushover.js] Error: '+err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
var node = this;
|
||||||
|
|
||||||
|
this.on("input",function(msg) {
|
||||||
|
var titl = this.title || msg.topic || "Node-RED";
|
||||||
|
var pri = this.priority || msg.priority || 0;
|
||||||
|
if (isNaN(pri)) {pri=0;}
|
||||||
|
if (pri > 2) {pri = 2;}
|
||||||
|
if (pri < -1) {pri = -1;}
|
||||||
|
if (typeof(msg.payload) === 'object') {
|
||||||
|
msg.payload = JSON.stringify(msg.payload);
|
||||||
|
}
|
||||||
|
else { msg.payload = msg.payload.toString(); }
|
||||||
|
if (pusher) {
|
||||||
|
var pushmsg = {
|
||||||
|
message: msg.payload,
|
||||||
|
title: titl,
|
||||||
|
priority: pri,
|
||||||
|
retry: 30,
|
||||||
|
expire: 600
|
||||||
|
};
|
||||||
|
//console.log("Sending",pushmsg);
|
||||||
|
pusher.send( pushmsg, function(err, response) {
|
||||||
|
if (err) { node.error("Pushover Error: "+err); }
|
||||||
|
//console.log(response);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
node.warn("Pushover credentials not set.");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
var node = this;
|
RED.nodes.registerType("pushover",PushoverNode);
|
||||||
|
|
||||||
this.on("input",function(msg) {
|
var querystring = require('querystring');
|
||||||
var titl = this.title || msg.topic || "Node-RED";
|
|
||||||
var pri = this.priority || msg.priority || 0;
|
RED.httpAdmin.get('/pushover/:id',function(req,res) {
|
||||||
if (isNaN(pri)) {pri=0;}
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
if (pri > 2) {pri = 2;}
|
if (credentials) {
|
||||||
if (pri < -1) {pri = -1;}
|
res.send(JSON.stringify({deviceid:credentials.deviceid,hasPassword:(credentials.pushkey&&credentials.pushkey!=="")}));
|
||||||
if (typeof(msg.payload) === 'object') {
|
} else {
|
||||||
msg.payload = JSON.stringify(msg.payload);
|
res.send(JSON.stringify({}));
|
||||||
}
|
|
||||||
else { msg.payload = msg.payload.toString(); }
|
|
||||||
if (pusher) {
|
|
||||||
var pushmsg = {
|
|
||||||
message: msg.payload,
|
|
||||||
title: titl,
|
|
||||||
priority: pri,
|
|
||||||
retry: 30,
|
|
||||||
expire: 600
|
|
||||||
};
|
|
||||||
//console.log("Sending",pushmsg);
|
|
||||||
pusher.send( pushmsg, function(err, response) {
|
|
||||||
if (err) node.error("Pushover Error: "+err);
|
|
||||||
//console.log(response);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
node.warn("Pushover credentials not set.");
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
RED.nodes.registerType("pushover",PushoverNode);
|
|
||||||
|
|
||||||
var querystring = require('querystring');
|
RED.httpAdmin.delete('/pushover/:id',function(req,res) {
|
||||||
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
RED.httpAdmin.get('/pushover/:id',function(req,res) {
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
||||||
if (credentials) {
|
|
||||||
res.send(JSON.stringify({deviceid:credentials.deviceid,hasPassword:(credentials.pushkey&&credentials.pushkey!="")}));
|
|
||||||
} else {
|
|
||||||
res.send(JSON.stringify({}));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.delete('/pushover/:id',function(req,res) {
|
|
||||||
RED.nodes.deleteCredentials(req.params.id);
|
|
||||||
res.send(200);
|
|
||||||
});
|
|
||||||
|
|
||||||
RED.httpAdmin.post('/pushover/:id',function(req,res) {
|
|
||||||
var body = "";
|
|
||||||
req.on('data', function(chunk) {
|
|
||||||
body+=chunk;
|
|
||||||
});
|
|
||||||
req.on('end', function(){
|
|
||||||
var newCreds = querystring.parse(body);
|
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
||||||
if (newCreds.deviceid == null || newCreds.deviceid == "") {
|
|
||||||
delete credentials.deviceid;
|
|
||||||
} else {
|
|
||||||
credentials.deviceid = newCreds.deviceid;
|
|
||||||
}
|
|
||||||
if (newCreds.pushkey == "") {
|
|
||||||
delete credentials.pushkey;
|
|
||||||
} else {
|
|
||||||
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
|
||||||
}
|
|
||||||
RED.nodes.addCredentials(req.params.id,credentials);
|
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
RED.httpAdmin.post('/pushover/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
if (newCreds.deviceid === null || newCreds.deviceid === "") {
|
||||||
|
delete credentials.deviceid;
|
||||||
|
} else {
|
||||||
|
credentials.deviceid = newCreds.deviceid;
|
||||||
|
}
|
||||||
|
if (newCreds.pushkey === "") {
|
||||||
|
delete credentials.pushkey;
|
||||||
|
} else {
|
||||||
|
credentials.pushkey = newCreds.pushkey||credentials.pushkey;
|
||||||
|
}
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user