2023-03-25 12:56:01 -04:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class Twilio extends NotificationProvider {
|
|
|
|
name = "twilio";
|
|
|
|
|
2023-08-11 03:46:41 -04:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2023-03-25 12:56:01 -04:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2024-03-14 09:21:15 -04:00
|
|
|
const okMsg = "Sent Successfully.";
|
2023-03-25 12:56:01 -04:00
|
|
|
|
2024-03-14 09:21:15 -04:00
|
|
|
let apiKey = notification.twilioApiKey ? notification.twilioApiKey : notification.twilioAccountSID;
|
2023-03-25 12:56:01 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
let config = {
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
|
2024-03-14 09:21:15 -04:00
|
|
|
"Authorization": "Basic " + Buffer.from(apiKey + ":" + notification.twilioAuthToken).toString("base64"),
|
2023-03-25 12:56:01 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let data = new URLSearchParams();
|
|
|
|
data.append("To", notification.twilioToNumber);
|
|
|
|
data.append("From", notification.twilioFromNumber);
|
|
|
|
data.append("Body", msg);
|
|
|
|
|
2024-03-14 09:21:15 -04:00
|
|
|
await axios.post(`https://api.twilio.com/2010-04-01/Accounts/${(notification.twilioAccountSID)}/Messages.json`, data, config);
|
2023-03-25 12:56:01 -04:00
|
|
|
|
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
|
|
this.throwGeneralAxiosError(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Twilio;
|