mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
b1e95968c0
Co-authored-by: Nicolas Verlhiac <[email protected]> Co-authored-by: Frank Elsinga <[email protected]>
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class SMSPartner extends NotificationProvider {
|
|
name = "SMSPartner";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
const url = "https://api.smspartner.fr/v1/send";
|
|
|
|
try {
|
|
// smspartner does not support non ascii characters and only a maximum 639 characters
|
|
let cleanMsg = msg.replace(/[^\x00-\x7F]/g, "").substring(0, 639);
|
|
|
|
let data = {
|
|
"apiKey": notification.smspartnerApikey,
|
|
"sender": notification.smspartnerSenderName.substring(0, 11),
|
|
"phoneNumbers": notification.smspartnerPhoneNumber,
|
|
"message": cleanMsg,
|
|
};
|
|
|
|
let config = {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"cache-control": "no-cache",
|
|
"Accept": "application/json",
|
|
}
|
|
};
|
|
|
|
let resp = await axios.post(url, data, config);
|
|
|
|
if (resp.data.success !== true) {
|
|
throw Error(`Api returned ${resp.data.response.status}.`);
|
|
}
|
|
|
|
return okMsg;
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SMSPartner;
|