diff --git a/server/notification-providers/google-chat.js b/server/notification-providers/google-chat.js new file mode 100644 index 00000000..1610553c --- /dev/null +++ b/server/notification-providers/google-chat.js @@ -0,0 +1,47 @@ +const NotificationProvider = require("./notification-provider"); +const axios = require("axios"); +const { setting } = require("../util-server"); +const { getMonitorRelativeURL } = require("../../src/util"); +const { DOWN, UP } = require("../../src/util"); + +class GoogleChat extends NotificationProvider { + + name = "Google Chat"; + + async send(notification, msg, monitorJSON = null, heartbeatJSON = null) { + let okMsg = "Sent Successfully."; + try { + // Google Chat message formatting: https://developers.google.com/chat/api/guides/message-formats/basic + + let textMsg = '' + if (heartbeatJSON && heartbeatJSON.status === UP) { + textMsg = `✅ Application is back online\n`; + } else if (heartbeatJSON && heartbeatJSON.status === DOWN) { + textMsg = `🔴 Application went down\n`; + } + + if (monitorJSON && monitorJSON.name) { + textMsg += `*${monitorJSON.name}*\n`; + } + + textMsg += `${msg}`; + + const baseURL = await setting("primaryBaseURL"); + if (baseURL) { + textMsg += `\n${baseURL + getMonitorRelativeURL(monitorJSON.id)}`; + } + + const data = { + "text": textMsg, + }; + + await axios.post(notification.googleChatWebhookURL, data); + return okMsg; + } catch (error) { + this.throwGeneralAxiosError(error); + } + + } +} + +module.exports = GoogleChat; diff --git a/server/notification.js b/server/notification.js index 868e11fa..4d72c81c 100644 --- a/server/notification.js +++ b/server/notification.js @@ -26,6 +26,7 @@ const Bark = require("./notification-providers/bark"); const SerwerSMS = require("./notification-providers/serwersms"); const Stackfield = require("./notification-providers/stackfield"); const WeCom = require("./notification-providers/wecom"); +const GoogleChat = require("./notification-providers/google-chat"); class Notification { @@ -64,6 +65,7 @@ class Notification { new SerwerSMS(), new Stackfield(), new WeCom(), + new GoogleChat() ]; for (let item of list) { diff --git a/src/components/notifications/GoogleChat.vue b/src/components/notifications/GoogleChat.vue new file mode 100644 index 00000000..c19cae0d --- /dev/null +++ b/src/components/notifications/GoogleChat.vue @@ -0,0 +1,13 @@ + diff --git a/src/components/notifications/index.js b/src/components/notifications/index.js index 15cc09c7..be73d9ef 100644 --- a/src/components/notifications/index.js +++ b/src/components/notifications/index.js @@ -1,4 +1,4 @@ -import STMP from "./SMTP.vue" +import STMP from "./SMTP.vue"; import Telegram from "./Telegram.vue"; import Discord from "./Discord.vue"; import Webhook from "./Webhook.vue"; @@ -25,6 +25,7 @@ import Bark from "./Bark.vue"; import SerwerSMS from "./SerwerSMS.vue"; import Stackfield from './Stackfield.vue'; import WeCom from "./WeCom.vue"; +import GoogleChat from "./GoogleChat.vue"; /** * Manage all notification form. @@ -59,6 +60,7 @@ const NotificationFormList = { "serwersms": SerwerSMS, "stackfield": Stackfield, "WeCom": WeCom, -} + "Google Chat (Google Workspace only)": GoogleChat +}; -export default NotificationFormList +export default NotificationFormList; diff --git a/src/languages/bg-BG.js b/src/languages/bg-BG.js index 180b766d..a731ad09 100644 --- a/src/languages/bg-BG.js +++ b/src/languages/bg-BG.js @@ -200,7 +200,7 @@ export default { "Primary Base URL": "Основен базов URL адрес", "Push URL": "Генериран Push URL адрес", needPushEvery: "Необходимо е да извършвате заявка към този URL адрес на всеки {0} секунди", - pushOptionalParams: "Допълнителни, но незадължителни параметри: {0}", + pushOptionalParams: "Допълнителни, но не задължителни параметри: {0}", defaultNotificationName: "Моето {notification} известяване ({number})", here: "тук", Required: "Задължително поле", @@ -351,4 +351,13 @@ export default { serwersmsPhoneNumber: "Телефон номер", serwersmsSenderName: "SMS Подател име (регистриран през клиентския портал)", stackfield: "Stackfield", + smtpDkimSettings: "DKIM Настройки", + smtpDkimDesc: "Моля, вижте Nodemailer DKIM {0} за инструкции.", + documentation: "документация", + smtpDkimDomain: "Домейн", + smtpDkimKeySelector: "Селектор на ключ", + smtpDkimPrivateKey: "Частен ключ", + smtpDkimHashAlgo: "Хеш алгоритъм (по желание)", + smtpDkimheaderFieldNames: "Хедър ключове за подписване (по желание)", + smtpDkimskipFields: "Хедър ключове, които да не се подписеат (по желание)", }; diff --git a/src/languages/fr-FR.js b/src/languages/fr-FR.js index bf98dd8d..04dede1b 100644 --- a/src/languages/fr-FR.js +++ b/src/languages/fr-FR.js @@ -207,7 +207,7 @@ export default { "Discord Webhook URL": "Discord Webhook URL", wayToGetDiscordURL: "Vous pouvez l'obtenir en allant dans 'Paramètres du Serveur' -> 'Intégrations' -> 'Créer un Webhook'", "Bot Display Name": "Nom du bot (affiché)", - "Prefix Custom Message": "Prefix Custom Message", + "Prefix Custom Message": "Prefixe du message personnalisé", "Hello @everyone is...": "Bonjour {'@'}everyone il...", teams: "Microsoft Teams", "Webhook URL": "Webhook URL", @@ -229,7 +229,7 @@ export default { aboutWebhooks: "Plus d'informations sur les Webhooks ici : {0}", aboutChannelName: "Mettez le nom du salon dans {0} dans 'Channel Name' si vous voulez bypass le salon Webhook. Ex : #autre-salon", aboutKumaURL: "Si vous laissez l'URL d'Uptime Kuma vierge, elle redirigera vers la page du projet GitHub.", - emojiCheatSheet: "Emoji cheat sheet : {0}", + emojiCheatSheet: "Aide emoji : {0}", "rocket.chat": "Rocket.chat", pushover: "Pushover", pushy: "Pushy", @@ -262,9 +262,9 @@ export default { appriseInstalled: "Apprise est installé.", appriseNotInstalled: "Apprise n'est pas installé. {0}", "Access Token": "Access Token", - "Channel access token": "Channel access token", - "Line Developers Console": "Line Developers Console", - lineDevConsoleTo: "Line Developers Console - {0}", + "Channel access token": "Token d'accès au canal", + "Line Developers Console": "Ligne console de développeurs", + lineDevConsoleTo: "Ligne console de développeurs - {0}", "Basic Settings": "Paramètres de base", "User ID": "Identifiant utilisateur", "Messaging API": "Messaging API", diff --git a/src/languages/it-IT.js b/src/languages/it-IT.js index 5a38a5aa..9aff1de0 100644 --- a/src/languages/it-IT.js +++ b/src/languages/it-IT.js @@ -351,4 +351,13 @@ export default { serwersmsPhoneNumber: "Numero di Telefono", serwersmsSenderName: "Nome del mittente SMS (registrato via portale cliente)", stackfield: "Stackfield", + smtpDkimSettings: "Impostazioni DKIM", + smtpDkimDesc: "Fare riferimento a Nodemailer DKIM {0} per l'utilizzo.", + documentation: "documentazione", + smtpDkimDomain: "Dominio", + smtpDkimKeySelector: "Selettore Chiave", + smtpDkimPrivateKey: "Chiave Privata", + smtpDkimHashAlgo: "Algoritmo di hashing (opzionale)", + smtpDkimheaderFieldNames: "Campi Intestazione da firmare (opzionale)", + smtpDkimskipFields: "Campi Intestazione da non firmare (opzionale)", };