2013-11-13 22:27:35 +01:00
|
|
|
|
2014-07-27 21:09:19 +02:00
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var twilio = require('twilio');
|
2013-11-13 22:27:35 +01:00
|
|
|
|
2014-07-27 21:09:19 +02:00
|
|
|
try {
|
|
|
|
var twiliokey = RED.settings.twilio || require(process.env.NODE_RED_HOME+"/../twiliokey.js");
|
|
|
|
}
|
|
|
|
catch(err) {
|
2014-04-09 12:23:46 +02:00
|
|
|
}
|
|
|
|
|
2015-02-06 22:10:14 +01:00
|
|
|
RED.httpAdmin.get('/twilio-api/global', RED.auth.needsPermission("twilio.read"), function(req,res) {
|
2017-09-11 12:57:32 +02:00
|
|
|
res.json({hasToken:!!(twiliokey && twiliokey.account && twiliokey.authtoken)});
|
2014-07-27 21:09:19 +02:00
|
|
|
});
|
2013-11-13 22:27:35 +01:00
|
|
|
|
2014-07-27 21:09:19 +02:00
|
|
|
function TwilioAPINode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.sid = n.sid;
|
|
|
|
this.from = n.from;
|
|
|
|
this.name = n.name;
|
2015-02-06 22:10:14 +01:00
|
|
|
var credentials = this.credentials;
|
2017-06-05 18:26:05 +02:00
|
|
|
if (credentials) { this.token = credentials.token; }
|
2014-07-27 21:09:19 +02:00
|
|
|
}
|
2015-02-06 22:10:14 +01:00
|
|
|
RED.nodes.registerType("twilio-api",TwilioAPINode,{
|
2017-09-11 12:57:32 +02:00
|
|
|
credentials: { token:"password" }
|
2015-02-06 22:10:14 +01:00
|
|
|
});
|
2014-07-27 21:09:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
function TwilioOutNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.number = n.number;
|
|
|
|
|
|
|
|
this.api = RED.nodes.getNode(n.twilio);
|
|
|
|
|
|
|
|
if (this.api) {
|
|
|
|
this.twilioClient = twilio(this.api.sid,this.api.token);
|
|
|
|
this.fromNumber = this.api.from;
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (twiliokey) {
|
2014-07-27 21:09:19 +02:00
|
|
|
this.twilioClient = twilio(twiliokey.account, twiliokey.authtoken);
|
|
|
|
this.fromNumber = twiliokey.from;
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-07-27 21:09:19 +02:00
|
|
|
this.error("missing twilio credentials");
|
|
|
|
return;
|
2014-02-09 12:55:01 +01:00
|
|
|
}
|
2014-07-27 21:09:19 +02:00
|
|
|
|
2014-12-06 17:42:59 +01:00
|
|
|
this.twilioType = n.twilioType;
|
|
|
|
this.url = n.url;
|
2014-07-27 21:09:19 +02:00
|
|
|
var node = this;
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
if (typeof(msg.payload) == 'object') {
|
|
|
|
msg.payload = JSON.stringify(msg.payload);
|
|
|
|
}
|
|
|
|
try {
|
2014-11-26 21:37:54 +01:00
|
|
|
// decide if we are to Send SMS
|
2014-07-27 21:09:19 +02:00
|
|
|
var tonum = node.number || msg.topic;
|
2015-05-11 20:25:39 +02:00
|
|
|
if ( this.twilioType == "call" ) {
|
2014-12-06 17:42:59 +01:00
|
|
|
// Make a call
|
|
|
|
var twimlurl = node.url || msg.payload;
|
2018-03-29 09:50:51 +02:00
|
|
|
node.twilioClient.calls.create({to: tonum, from: node.fromNumber, url: twimlurl}).catch(function(err) {
|
|
|
|
node.error(err.message,msg);
|
2014-11-26 21:37:54 +01:00
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-12-06 17:42:59 +01:00
|
|
|
// Send SMS
|
2018-03-29 09:50:51 +02:00
|
|
|
node.twilioClient.messages.create({to: tonum, from: node.fromNumber, body: msg.payload}).catch( function(err) {
|
|
|
|
node.error(err.message,msg);
|
2014-11-26 21:37:54 +01:00
|
|
|
});
|
2014-12-06 17:42:59 +01:00
|
|
|
}
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
catch (err) {
|
2017-06-05 14:27:05 +02:00
|
|
|
node.error(err,msg);
|
2014-07-27 21:09:19 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("twilio out",TwilioOutNode);
|
2013-11-13 22:27:35 +01:00
|
|
|
}
|