2021-10-05 19:03:56 +01:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
2021-10-07 18:11:33 +01:00
|
|
|
const Crypto = require("crypto");
|
2022-04-13 16:33:37 +01:00
|
|
|
const { log } = require("../../src/util");
|
2021-10-05 19:03:56 +01:00
|
|
|
|
|
|
|
class Matrix extends NotificationProvider {
|
|
|
|
name = "matrix";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 20:40:59 +01:00
|
|
|
let okMsg = "Sent Successfully.";
|
2021-10-05 19:03:56 +01:00
|
|
|
|
|
|
|
const size = 20;
|
2021-10-07 18:11:33 +01:00
|
|
|
const randomString = encodeURIComponent(
|
|
|
|
Crypto
|
|
|
|
.randomBytes(size)
|
|
|
|
.toString("base64")
|
|
|
|
.slice(0, size)
|
|
|
|
);
|
|
|
|
|
2022-04-13 16:33:37 +01:00
|
|
|
log.debug("notification", "Random String: " + randomString);
|
2021-10-07 18:11:33 +01:00
|
|
|
|
|
|
|
const roomId = encodeURIComponent(notification.internalRoomId);
|
|
|
|
|
2022-04-13 16:33:37 +01:00
|
|
|
log.debug("notification", "Matrix Room ID: " + roomId);
|
2021-10-05 19:03:56 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
let config = {
|
|
|
|
headers: {
|
|
|
|
"Authorization": `Bearer ${notification.accessToken}`,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let data = {
|
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": msg
|
|
|
|
};
|
|
|
|
|
2021-10-07 18:11:33 +01:00
|
|
|
await axios.put(`${notification.homeserverUrl}/_matrix/client/r0/rooms/${roomId}/send/m.room.message/${randomString}`, data, config);
|
2021-10-05 19:03:56 +01:00
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
|
|
this.throwGeneralAxiosError(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Matrix;
|