uptime-kuma/server/notification-providers/matrix.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-10-05 14:03:56 -04:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const Crypto = require('crypto')
class Matrix extends NotificationProvider {
name = "matrix";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
2021-10-05 15:40:59 -04:00
let okMsg = "Sent Successfully.";
2021-10-05 14:03:56 -04:00
const size = 20;
const randomString = Crypto
.randomBytes(size)
.toString('base64')
.slice(0, size);
2021-10-05 15:36:01 -04:00
const roomId = notification
.internalRoomId
2021-10-05 15:59:58 -04:00
.replaceAll(":", "%3A")
2021-10-05 15:36:01 -04:00
.replaceAll("!", "%21");
2021-10-05 14:03:56 -04:00
try {
let config = {
headers: {
"Authorization": `Bearer ${notification.accessToken}`,
}
};
let data = {
"msgtype": "m.text",
"body": msg
};
2021-10-05 15:36:01 -04:00
await axios.put(`${notification.homeserverUrl}/_matrix/client/r0/rooms/${roomId}/send/m.room.message/${randomString}`, data, config)
2021-10-05 14:03:56 -04:00
return okMsg;
} catch (error) {
this.throwGeneralAxiosError(error);
}
}
}
module.exports = Matrix;