You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
853 B
32 lines
853 B
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class Kook extends NotificationProvider {
|
|
|
|
name = "Kook";
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
let okMsg = "Sent Successfully.";
|
|
let url = "https://www.kookapp.cn/api/v3/message/create";
|
|
let data = {
|
|
target_id: notification.kookGuildID,
|
|
content: msg,
|
|
};
|
|
let config = {
|
|
headers: {
|
|
"Authorization": "Bot " + notification.kookBotToken,
|
|
"Content-Type": "application/json",
|
|
},
|
|
};
|
|
try {
|
|
await axios.post(url, data, config);
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Kook;
|