44 lines
1.7 KiB
JavaScript
44 lines
1.7 KiB
JavaScript
|
const NotificationProvider = require("./notification-provider");
|
||
|
const axios = require("axios");
|
||
|
const qs = require("qs");
|
||
|
const { DOWN, UP } = require("../../src/util");
|
||
|
|
||
|
class LineNotify extends NotificationProvider {
|
||
|
|
||
|
name = "LineNotify";
|
||
|
|
||
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
||
|
let okMsg = "Sent Successfully.";
|
||
|
try {
|
||
|
let lineAPIUrl = "https://notify-api.line.me/api/notify";
|
||
|
let config = {
|
||
|
headers: {
|
||
|
"Content-Type": "application/x-www-form-urlencoded",
|
||
|
"Authorization": "Bearer " + notification.lineNotifyAccessToken
|
||
|
}
|
||
|
};
|
||
|
if (heartbeatJSON == null) {
|
||
|
let testMessage = {
|
||
|
"message": msg,
|
||
|
};
|
||
|
await axios.post(lineAPIUrl, qs.stringify(testMessage), config);
|
||
|
} else if (heartbeatJSON["status"] === DOWN) {
|
||
|
let downMessage = {
|
||
|
"message": "\n[🔴 Down]\n" + "Name: " + monitorJSON["name"] + " \n" + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"]
|
||
|
};
|
||
|
await axios.post(lineAPIUrl, qs.stringify(downMessage), config);
|
||
|
} else if (heartbeatJSON["status"] === UP) {
|
||
|
let upMessage = {
|
||
|
"message": "\n[✅ Up]\n" + "Name: " + monitorJSON["name"] + " \n" + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"]
|
||
|
};
|
||
|
await axios.post(lineAPIUrl, qs.stringify(upMessage), config);
|
||
|
}
|
||
|
return okMsg;
|
||
|
} catch (error) {
|
||
|
this.throwGeneralAxiosError(error);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = LineNotify;
|