mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Pushover image attachment feature (#509)
* Bugfix: node defaults not applying to messages * Implemented pushover attachment feature
This commit is contained in:
parent
73e4ae574c
commit
ca0b01d10e
@ -79,6 +79,7 @@
|
|||||||
<p><code>msg.topic</code>: set the title</p>
|
<p><code>msg.topic</code>: set the title</p>
|
||||||
<p><code>msg.device</code>: set the device</p>
|
<p><code>msg.device</code>: set the device</p>
|
||||||
<p><code>msg.priority</code>: set the priority</p>
|
<p><code>msg.priority</code>: set the priority</p>
|
||||||
|
<p><code>msg.attachment</code>: attach an image (Buffer or file path)</p>
|
||||||
<p><code>msg.url</code>: to add a web address</p>
|
<p><code>msg.url</code>: to add a web address</p>
|
||||||
<p><code>msg.url_title</code>: to add a url title if not already set in the properties</p>
|
<p><code>msg.url_title</code>: to add a url title if not already set in the properties</p>
|
||||||
<p><code>msg.sound</code>: set the notification sound, <i><a href="https://pushover.net/api#sounds" target="_new">see the available options</a></i></p>
|
<p><code>msg.sound</code>: set the notification sound, <i><a href="https://pushover.net/api#sounds" target="_new">see the available options</a></i></p>
|
||||||
|
@ -3,6 +3,7 @@ module.exports = function(RED) {
|
|||||||
"use strict";
|
"use strict";
|
||||||
var PushOver = require('pushover-notifications');
|
var PushOver = require('pushover-notifications');
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
var fs = require('fs');
|
||||||
|
|
||||||
function PushoverNode(n) {
|
function PushoverNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
@ -30,13 +31,14 @@ module.exports = function(RED) {
|
|||||||
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 title = node.title || msg.topic || "Node-RED";
|
||||||
var pri = this.priority || msg.priority || 0;
|
var pri = node.priority || msg.priority || 0;
|
||||||
var dev = this.device || msg.device;
|
var dev = node.device || msg.device;
|
||||||
var sound = this.sound || msg.sound || null;
|
var sound = node.sound || msg.sound || null;
|
||||||
var url = this.url || msg.url || null;
|
var url = node.url || msg.url || null;
|
||||||
var url_title = this.url_title || msg.url_title || null;
|
var url_title = node.url_title || msg.url_title || null;
|
||||||
var html = this.html || false;
|
var html = node.html || false;
|
||||||
|
var attachment = msg.attachment || null;
|
||||||
if (isNaN(pri)) {pri=0;}
|
if (isNaN(pri)) {pri=0;}
|
||||||
if (pri > 2) {pri = 2;}
|
if (pri > 2) {pri = 2;}
|
||||||
if (pri < -2) {pri = -2;}
|
if (pri < -2) {pri = -2;}
|
||||||
@ -47,7 +49,7 @@ module.exports = function(RED) {
|
|||||||
if (pusher) {
|
if (pusher) {
|
||||||
var pushmsg = {
|
var pushmsg = {
|
||||||
message: msg.payload,
|
message: msg.payload,
|
||||||
title: titl,
|
title: title,
|
||||||
priority: pri,
|
priority: pri,
|
||||||
retry: 30,
|
retry: 30,
|
||||||
expire: 600,
|
expire: 600,
|
||||||
@ -58,16 +60,50 @@ module.exports = function(RED) {
|
|||||||
if (typeof(url) === 'string') { pushmsg.url = url; }
|
if (typeof(url) === 'string') { pushmsg.url = url; }
|
||||||
if (typeof(url_title) === 'string') { pushmsg.url_title = url_title; }
|
if (typeof(url_title) === 'string') { pushmsg.url_title = url_title; }
|
||||||
if (html) { pushmsg.html = 1; }
|
if (html) { pushmsg.html = 1; }
|
||||||
//node.log("Sending "+JSON.stringify(pushmsg));
|
if (typeof(attachment) === 'string') {
|
||||||
pusher.send( pushmsg, function(err, response) {
|
// Treat attachment as a path
|
||||||
if (err) { node.error("Pushover Error: "+err); }
|
fs.readFile(attachment,function(err, data) {
|
||||||
//console.log(response);
|
if (err) {
|
||||||
});
|
node.error("[57-pushover.js] Error: File Read Error: "+err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pushmsg.file = { data: data };
|
||||||
|
pushMessage(pushmsg);
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if (attachment instanceof Buffer) {
|
||||||
|
// Is it base64 encoded or binary?
|
||||||
|
var attachmentString = attachment.toString();
|
||||||
|
var attachmentBuffer = Buffer.from(attachmentString,'base64');
|
||||||
|
if(attachmentString === attachmentBuffer.toString('base64')) {
|
||||||
|
// If converts back to same, then it was base64 so set to binary
|
||||||
|
// https://stackoverflow.com/a/48770228
|
||||||
|
attachment = attachmentBuffer;
|
||||||
|
}
|
||||||
|
// Unset these temporary values
|
||||||
|
attachmentBuffer = attachmentString = undefined;
|
||||||
|
// attach the buffer
|
||||||
|
pushmsg.file = { data: attachment };
|
||||||
|
}
|
||||||
|
else if (attachment) {
|
||||||
|
node.error("[57-pushover.js] Error: attachment property must be a path to a local file or a Buffer containing an image");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pushMessage(pushmsg);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
node.warn("Pushover credentials not set.");
|
node.warn("Pushover credentials not set.");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function pushMessage(pushmsg) {
|
||||||
|
pusher.send( pushmsg, function(err, response) {
|
||||||
|
if (err) { node.error("[57-pushover.js] Error: "+err); }
|
||||||
|
response = JSON.parse(response);
|
||||||
|
if (response.status !== 1) { node.error("[57-pushover.js] Error: "+response); }
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
RED.nodes.registerType("pushover",PushoverNode,{
|
RED.nodes.registerType("pushover",PushoverNode,{
|
||||||
credentials: {
|
credentials: {
|
||||||
|
@ -21,6 +21,7 @@ Optionally uses `msg.topic` to set the configuration, if not already set in the
|
|||||||
- `msg.device`: to set the device
|
- `msg.device`: to set the device
|
||||||
- `msg.priority`: to set the priority
|
- `msg.priority`: to set the priority
|
||||||
- `msg.topic`: to set the title
|
- `msg.topic`: to set the title
|
||||||
|
- `msg.attachment`: to specify an image to attach to message (path as a string or Buffer containing image)
|
||||||
- `msg.url`: to add a web address
|
- `msg.url`: to add a web address
|
||||||
- `msg.url_title`: to add a url title
|
- `msg.url_title`: to add a url title
|
||||||
- `msg.sound`: to set the alert sound, see the [available options](https://pushover.net/api#sounds)
|
- `msg.sound`: to set the alert sound, see the [available options](https://pushover.net/api#sounds)
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pushover",
|
"name" : "node-red-node-pushover",
|
||||||
"version" : "0.0.13",
|
"version" : "0.0.14",
|
||||||
"description" : "A Node-RED node to send alerts via Pushover",
|
"description" : "A Node-RED node to send alerts via Pushover",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"pushover-notifications" : "~0.2.4"
|
"pushover-notifications" : "^1.2.0"
|
||||||
},
|
},
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type":"git",
|
"type":"git",
|
||||||
@ -20,5 +20,12 @@
|
|||||||
"name": "Dave Conway-Jones",
|
"name": "Dave Conway-Jones",
|
||||||
"email": "ceejay@vnet.ibm.com",
|
"email": "ceejay@vnet.ibm.com",
|
||||||
"url": "http://nodered.org"
|
"url": "http://nodered.org"
|
||||||
}
|
},
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Damien Clark",
|
||||||
|
"email": "damo.clarky@gmail.com",
|
||||||
|
"url": "https://damos.world"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user