[Teams] change handleTestNotification to GeneralNotification

This commit is contained in:
LouisLam 2021-09-15 16:38:28 +08:00
parent a0838543b9
commit 1693873f4a

View File

@ -11,7 +11,7 @@ class Teams extends NotificationProvider {
} else if (status === UP) { } else if (status === UP) {
return `✅ Application [${monitorName}] is back online`; return `✅ Application [${monitorName}] is back online`;
} }
return "Notification test"; return "Notification";
}; };
_getThemeColor = (status) => { _getThemeColor = (status) => {
@ -34,6 +34,23 @@ class Teams extends NotificationProvider {
status, status,
monitorName monitorName
); );
const facts = [];
if (monitorName) {
facts.push({
name: "Monitor",
value: monitorName,
});
}
if (monitorUrl) {
facts.push({
name: "URL",
value: monitorUrl,
});
}
return { return {
"@context": "https://schema.org/extensions", "@context": "https://schema.org/extensions",
"@type": "MessageCard", "@type": "MessageCard",
@ -51,16 +68,7 @@ class Teams extends NotificationProvider {
{ {
activityTitle: "**Description**", activityTitle: "**Description**",
text: monitorMessage, text: monitorMessage,
facts: [ facts,
{
name: "Monitor",
value: monitorName,
},
{
name: "URL",
value: monitorUrl,
},
],
}, },
], ],
}; };
@ -70,11 +78,9 @@ class Teams extends NotificationProvider {
await axios.post(webhookUrl, payload); await axios.post(webhookUrl, payload);
}; };
_handleTestNotification = (webhookUrl) => { _handleGeneralNotification = (webhookUrl, msg) => {
const payload = this._notificationPayloadFactory({ const payload = this._notificationPayloadFactory({
monitorMessage: "Just a test", monitorMessage: msg
monitorName: "Test Notification",
monitorUrl: "http://localhost:3000",
}); });
return this._sendNotification(webhookUrl, payload); return this._sendNotification(webhookUrl, payload);
@ -85,7 +91,7 @@ class Teams extends NotificationProvider {
try { try {
if (heartbeatJSON == null) { if (heartbeatJSON == null) {
await this._handleTestNotification(notification.webhookUrl); await this._handleGeneralNotification(notification.webhookUrl, msg);
return okMsg; return okMsg;
} }
@ -101,7 +107,7 @@ class Teams extends NotificationProvider {
} }
const payload = this._notificationPayloadFactory({ const payload = this._notificationPayloadFactory({
monitorMessage: heartbeatJSON.msg || msg, monitorMessage: heartbeatJSON.msg,
monitorName: monitorJSON.name, monitorName: monitorJSON.name,
monitorUrl: url, monitorUrl: url,
status: heartbeatJSON.status, status: heartbeatJSON.status,