Merge 0645d0ad10 into 9169a647cb
This commit is contained in:
commit
34356a3943
60
server/notification-providers/google-sheets.js
Normal file
60
server/notification-providers/google-sheets.js
Normal file
@ -0,0 +1,60 @@
|
||||
const NotificationProvider = require("./notification-provider");
|
||||
const axios = require("axios");
|
||||
const { DOWN, UP } = require("../../src/util");
|
||||
|
||||
class GoogleSheets extends NotificationProvider {
|
||||
name = "GoogleSheets";
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
||||
const okMsg = "Sent Successfully.";
|
||||
|
||||
try {
|
||||
// Prepare the data to be logged
|
||||
const timestamp = new Date().toISOString();
|
||||
let status = "N/A";
|
||||
let monitorName = "N/A";
|
||||
let monitorUrl = "N/A";
|
||||
let responseTime = "N/A";
|
||||
let statusCode = "N/A";
|
||||
|
||||
if (monitorJSON) {
|
||||
monitorName = monitorJSON.name || "N/A";
|
||||
monitorUrl = this.extractAddress(monitorJSON) || "N/A";
|
||||
}
|
||||
|
||||
if (heartbeatJSON) {
|
||||
status = heartbeatJSON.status === DOWN ? "DOWN" : heartbeatJSON.status === UP ? "UP" : "UNKNOWN";
|
||||
responseTime = heartbeatJSON.ping || "N/A";
|
||||
statusCode = heartbeatJSON.statusCode || "N/A";
|
||||
}
|
||||
|
||||
// Send data to Google Apps Script webhook
|
||||
const config = this.getAxiosConfigWithProxy({
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
});
|
||||
|
||||
const data = {
|
||||
timestamp,
|
||||
status,
|
||||
monitorName,
|
||||
monitorUrl,
|
||||
message: msg,
|
||||
responseTime,
|
||||
statusCode,
|
||||
};
|
||||
|
||||
await axios.post(notification.googleSheetsWebhookUrl, data, config);
|
||||
|
||||
return okMsg;
|
||||
} catch (error) {
|
||||
this.throwGeneralAxiosError(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = GoogleSheets;
|
||||
@ -17,6 +17,7 @@ const Feishu = require("./notification-providers/feishu");
|
||||
const Notifery = require("./notification-providers/notifery");
|
||||
const FreeMobile = require("./notification-providers/freemobile");
|
||||
const GoogleChat = require("./notification-providers/google-chat");
|
||||
const GoogleSheets = require("./notification-providers/google-sheets");
|
||||
const Gorush = require("./notification-providers/gorush");
|
||||
const Gotify = require("./notification-providers/gotify");
|
||||
const GrafanaOncall = require("./notification-providers/grafana-oncall");
|
||||
@ -117,6 +118,7 @@ class Notification {
|
||||
new Feishu(),
|
||||
new FreeMobile(),
|
||||
new GoogleChat(),
|
||||
new GoogleSheets(),
|
||||
new Gorush(),
|
||||
new Gotify(),
|
||||
new GrafanaOncall(),
|
||||
|
||||
@ -305,7 +305,9 @@ export default {
|
||||
};
|
||||
|
||||
// Other Integrations
|
||||
let other = {};
|
||||
let other = {
|
||||
GoogleSheets: "Google Sheets",
|
||||
};
|
||||
|
||||
// Regional - Not supported in most regions or documentation is not in English
|
||||
let regional = {
|
||||
|
||||
94
src/components/notifications/GoogleSheets.vue
Normal file
94
src/components/notifications/GoogleSheets.vue
Normal file
@ -0,0 +1,94 @@
|
||||
<template>
|
||||
<div class="mb-3">
|
||||
<label for="google-sheets-webhook-url" class="form-label">{{ $t("Google Apps Script Webhook URL") }}</label>
|
||||
<HiddenInput
|
||||
id="google-sheets-webhook-url"
|
||||
v-model="$parent.notification.googleSheetsWebhookUrl"
|
||||
:required="true"
|
||||
placeholder="https://script.google.com/macros/s/YOUR_SCRIPT_ID/exec"
|
||||
autocomplete="off"
|
||||
/>
|
||||
<div class="form-text">
|
||||
<p>{{ $t("Deploy a Google Apps Script as a web app and paste the URL here") }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-info" style="border-radius: 8px">
|
||||
<h6 style="margin-bottom: 12px; font-weight: 600">{{ $t("Quick Setup Guide") }}:</h6>
|
||||
<ol style="margin-bottom: 0; padding-left: 20px; line-height: 1.8">
|
||||
<li>{{ $t("Open your Google Spreadsheet") }}</li>
|
||||
<li>{{ $t("Go to Extensions → Apps Script") }}</li>
|
||||
<li>{{ $t("Paste the script code (see below)") }}</li>
|
||||
<li>{{ $t("Click Deploy → New deployment → Web app") }}</li>
|
||||
<li>{{ $t("Set 'Execute as: Me' and 'Who has access: Anyone'") }}</li>
|
||||
<li>{{ $t("Copy the web app URL and paste it above") }}</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<ToggleSection :heading="$t('Google Apps Script Code')">
|
||||
<div class="mb-3">
|
||||
<textarea
|
||||
readonly
|
||||
class="form-control"
|
||||
rows="15"
|
||||
style="font-family: monospace; font-size: 12px"
|
||||
:value="scriptCode"
|
||||
/>
|
||||
<button type="button" class="btn btn-outline-secondary btn-sm mt-2" @click="copyScript">
|
||||
{{ $t("Copy to Clipboard") }}
|
||||
</button>
|
||||
</div>
|
||||
</ToggleSection>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import HiddenInput from "../HiddenInput.vue";
|
||||
import ToggleSection from "../ToggleSection.vue";
|
||||
|
||||
// Google Apps Script code for logging to spreadsheet
|
||||
const GOOGLE_APPS_SCRIPT_CODE = `function doPost(e) {
|
||||
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
|
||||
var data = JSON.parse(e.postData.contents);
|
||||
|
||||
// Add header row if sheet is empty
|
||||
if (sheet.getLastRow() === 0) {
|
||||
sheet.appendRow(['Timestamp', 'Status', 'Monitor Name', 'URL', 'Message', 'Response Time', 'Status Code']);
|
||||
}
|
||||
|
||||
// Add data row
|
||||
sheet.appendRow([
|
||||
data.timestamp,
|
||||
data.status,
|
||||
data.monitorName,
|
||||
data.monitorUrl,
|
||||
data.message,
|
||||
data.responseTime,
|
||||
data.statusCode
|
||||
]);
|
||||
|
||||
return ContentService.createTextOutput(JSON.stringify({result: 'success'}))
|
||||
.setMimeType(ContentService.MimeType.JSON);
|
||||
}`;
|
||||
|
||||
export default {
|
||||
components: {
|
||||
HiddenInput,
|
||||
ToggleSection,
|
||||
},
|
||||
computed: {
|
||||
scriptCode() {
|
||||
return GOOGLE_APPS_SCRIPT_CODE;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
copyScript() {
|
||||
try {
|
||||
navigator.clipboard.writeText(GOOGLE_APPS_SCRIPT_CODE);
|
||||
alert(this.$t("Copied to clipboard!"));
|
||||
} catch (error) {
|
||||
alert(this.$t("Failed to copy to clipboard"));
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
@ -15,6 +15,7 @@ import Elks from "./46elks.vue";
|
||||
import Feishu from "./Feishu.vue";
|
||||
import FreeMobile from "./FreeMobile.vue";
|
||||
import GoogleChat from "./GoogleChat.vue";
|
||||
import GoogleSheets from "./GoogleSheets.vue";
|
||||
import Gorush from "./Gorush.vue";
|
||||
import Gotify from "./Gotify.vue";
|
||||
import GrafanaOncall from "./GrafanaOncall.vue";
|
||||
@ -105,6 +106,7 @@ const NotificationFormList = {
|
||||
Feishu: Feishu,
|
||||
FreeMobile: FreeMobile,
|
||||
GoogleChat: GoogleChat,
|
||||
GoogleSheets: GoogleSheets,
|
||||
gorush: Gorush,
|
||||
gotify: Gotify,
|
||||
GrafanaOncall: GrafanaOncall,
|
||||
|
||||
@ -733,6 +733,19 @@
|
||||
"pushyToken": "Device token",
|
||||
"apprise": "Apprise (Support 50+ Notification services)",
|
||||
"GoogleChat": "Google Chat (Google Workspace only)",
|
||||
"Google Apps Script Webhook URL": "Google Apps Script Webhook URL",
|
||||
"Deploy a Google Apps Script as a web app and paste the URL here": "Deploy a Google Apps Script as a web app and paste the URL here",
|
||||
"Quick Setup Guide": "Quick Setup Guide",
|
||||
"Open your Google Spreadsheet": "Open your Google Spreadsheet",
|
||||
"Go to Extensions → Apps Script": "Go to Extensions → Apps Script",
|
||||
"Paste the script code (see below)": "Paste the script code (see below)",
|
||||
"Click Deploy → New deployment → Web app": "Click Deploy → New deployment → Web app",
|
||||
"Set 'Execute as: Me' and 'Who has access: Anyone'": "Set 'Execute as: Me' and 'Who has access: Anyone'",
|
||||
"Copy the web app URL and paste it above": "Copy the web app URL and paste it above",
|
||||
"Google Apps Script Code": "Google Apps Script Code",
|
||||
"Copy to Clipboard": "Copy to Clipboard",
|
||||
"Copied to clipboard!": "Copied to clipboard!",
|
||||
"Failed to copy to clipboard": "Failed to copy to clipboard",
|
||||
"Template plain text instead of using cards": "Template plain text instead of using cards",
|
||||
"issueWithGoogleChatOnAndroidHelptext": "This also allows to get around bugs upstream like {issuetackerURL}",
|
||||
"wayToGetKookBotToken": "Create application and get your bot token at {0}",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user