2021-09-07 15:42:46 +01:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class Octopush extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "octopush";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 20:40:59 +01:00
|
|
|
let okMsg = "Sent Successfully.";
|
2021-09-07 15:42:46 +01:00
|
|
|
|
|
|
|
try {
|
2021-10-05 18:43:04 +01:00
|
|
|
// Default - V2
|
2022-10-01 15:03:28 +01:00
|
|
|
if (notification.octopushVersion === "2" || !notification.octopushVersion) {
|
2021-10-05 18:43:04 +01:00
|
|
|
let config = {
|
2021-09-13 09:22:05 +01:00
|
|
|
headers: {
|
2021-10-05 18:43:04 +01:00
|
|
|
"api-key": notification.octopushAPIKey,
|
|
|
|
"api-login": notification.octopushLogin,
|
|
|
|
"cache-control": "no-cache"
|
2021-09-07 15:42:46 +01:00
|
|
|
}
|
2021-10-05 18:43:04 +01:00
|
|
|
};
|
|
|
|
let data = {
|
2021-09-13 09:22:05 +01:00
|
|
|
"recipients": [
|
2021-10-05 18:43:04 +01:00
|
|
|
{
|
2021-09-13 09:22:05 +01:00
|
|
|
"phone_number": notification.octopushPhoneNumber
|
2021-10-05 18:43:04 +01:00
|
|
|
}
|
2021-09-13 09:22:05 +01:00
|
|
|
],
|
|
|
|
//octopush not supporting non ascii char
|
|
|
|
"text": msg.replace(/[^\x00-\x7F]/g, ""),
|
|
|
|
"type": notification.octopushSMSType,
|
|
|
|
"purpose": "alert",
|
|
|
|
"sender": notification.octopushSenderName
|
2021-10-05 18:43:04 +01:00
|
|
|
};
|
2022-04-13 17:30:32 +01:00
|
|
|
await axios.post("https://api.octopush.com/v1/public/sms-campaign/send", data, config);
|
2022-10-01 15:03:28 +01:00
|
|
|
} else if (notification.octopushVersion === "1") {
|
2021-10-05 18:43:04 +01:00
|
|
|
let data = {
|
2021-09-13 09:22:05 +01:00
|
|
|
"user_login": notification.octopushDMLogin,
|
2021-10-05 18:43:04 +01:00
|
|
|
"api_key": notification.octopushDMAPIKey,
|
|
|
|
"sms_recipients": notification.octopushDMPhoneNumber,
|
|
|
|
"sms_sender": notification.octopushDMSenderName,
|
2022-04-17 08:43:03 +01:00
|
|
|
"sms_type": (notification.octopushDMSMSType === "sms_premium") ? "FR" : "XXX",
|
2021-10-05 18:43:04 +01:00
|
|
|
"transactional": "1",
|
|
|
|
//octopush not supporting non ascii char
|
|
|
|
"sms_text": msg.replace(/[^\x00-\x7F]/g, ""),
|
|
|
|
};
|
2021-09-13 09:22:05 +01:00
|
|
|
|
2021-10-05 18:43:04 +01:00
|
|
|
let config = {
|
|
|
|
headers: {
|
|
|
|
"cache-control": "no-cache"
|
|
|
|
},
|
|
|
|
params: data
|
|
|
|
};
|
2022-10-01 15:42:34 +01:00
|
|
|
|
|
|
|
// V1 API returns 200 even on error so we must check
|
|
|
|
// response data
|
|
|
|
let response = await axios.post("https://www.octopush-dm.com/api/sms/json", {}, config);
|
|
|
|
if ("error_code" in response.data) {
|
2022-10-01 19:48:00 +01:00
|
|
|
if (response.data.error_code !== "000") {
|
|
|
|
this.throwGeneralAxiosError(`Octopush error ${JSON.stringify(response.data)}`);
|
|
|
|
}
|
2022-10-01 15:42:34 +01:00
|
|
|
}
|
2021-10-05 18:43:04 +01:00
|
|
|
} else {
|
|
|
|
throw new Error("Unknown Octopush version!");
|
|
|
|
}
|
2021-09-07 15:42:46 +01:00
|
|
|
|
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
|
|
this.throwGeneralAxiosError(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Octopush;
|