uptime-kuma/src/components/NotificationDialog.vue

428 lines
21 KiB
Vue
Raw Normal View History

2021-06-29 04:06:20 -04:00
<template>
2021-07-09 02:14:03 -04:00
<form @submit.prevent="submit">
<div class="modal fade" tabindex="-1" ref="modal" data-bs-backdrop="static">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Setup Notification</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="mb-3">
<label for="type" class="form-label">Notification Type</label>
<select class="form-select" id="type" v-model="notification.type">
<option value="telegram">Telegram</option>
<option value="webhook">Webhook</option>
2021-07-09 13:08:08 -04:00
<option value="smtp">Email (SMTP)</option>
2021-07-09 02:14:03 -04:00
<option value="discord">Discord</option>
2021-07-12 16:06:03 -04:00
<option value="signal">Signal</option>
2021-07-14 05:25:10 -04:00
<option value="gotify">Gotify</option>
2021-07-14 11:38:38 -04:00
<option value="slack">Slack</option>
2021-07-17 08:19:56 -04:00
<option value="pushover">Pushover</option>
2021-07-09 02:14:03 -04:00
</select>
</div>
<div class="mb-3">
<label for="name" class="form-label">Friendly Name</label>
<input type="text" class="form-control" id="name" required v-model="notification.name">
</div>
2021-07-09 07:33:22 -04:00
<template v-if="notification.type === 'telegram'">
<div class="mb-3">
<label for="telegram-bot-token" class="form-label">Bot Token</label>
<input type="text" class="form-control" id="telegram-bot-token" required v-model="notification.telegramBotToken">
<div class="form-text">You can get a token from <a href="https://t.me/BotFather" target="_blank">https://t.me/BotFather</a>.</div>
</div>
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<div class="mb-3">
<label for="telegram-chat-id" class="form-label">Chat ID</label>
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<div class="input-group mb-3">
<input type="text" class="form-control" id="telegram-chat-id" required v-model="notification.telegramChatID">
<button class="btn btn-outline-secondary" type="button" @click="autoGetTelegramChatID" v-if="notification.telegramBotToken">Auto Get</button>
</div>
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<div class="form-text">
Support Direct Chat / Group / Channel's Chat ID
<p style="margin-top: 8px;">
You can get your chat id by sending message to the bot and go to this url to view the chat_id:
</p>
2021-07-09 07:33:22 -04:00
<p style="margin-top: 8px;">
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<template v-if="notification.telegramBotToken">
<a :href="telegramGetUpdatesURL" target="_blank">{{ telegramGetUpdatesURL }}</a>
</template>
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<template v-else>
{{ telegramGetUpdatesURL }}
</template>
</p>
</div>
</div>
</template>
2021-07-09 02:14:03 -04:00
2021-07-09 07:33:22 -04:00
<template v-if="notification.type === 'webhook'">
<div class="mb-3">
<label for="webhook-url" class="form-label">Post URL</label>
<input type="url" pattern="https?://.+" class="form-control" id="webhook-url" required v-model="notification.webhookURL">
</div>
<div class="mb-3">
<label for="webhook-content-type" class="form-label">Content Type</label>
<select class="form-select" id="webhook-content-type" v-model="notification.webhookContentType" required>
<option value="json">application/json</option>
<option value="form-data">multipart/form-data</option>
</select>
<div class="form-text">
<p>"application/json" is good for any modern http servers such as express.js</p>
<p>"multipart/form-data" is good for PHP, you just need to parse the json by <strong>json_decode($_POST['data'])</strong></p>
2021-07-09 02:14:03 -04:00
</div>
</div>
2021-07-09 07:33:22 -04:00
</template>
2021-07-09 02:14:03 -04:00
2021-07-09 13:08:08 -04:00
<template v-if="notification.type === 'smtp'">
<div class="mb-3">
<label for="hostname" class="form-label">Hostname</label>
<input type="text" class="form-control" id="hostname" required v-model="notification.smtpHost">
</div>
<div class="mb-3">
<label for="port" class="form-label">Port</label>
<input type="number" class="form-control" id="port" v-model="notification.smtpPort" required min="0" max="65535" step="1">
</div>
2021-07-09 23:38:00 -04:00
<div class="mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="secure" v-model="notification.smtpSecure">
<label class="form-check-label" for="secure">
Secure
</label>
</div>
<div class="form-text">Generally, true for 465, false for other ports.</div>
2021-07-09 13:08:08 -04:00
</div>
<div class="mb-3">
<label for="username" class="form-label">Username</label>
2021-07-12 13:02:50 -04:00
<input type="text" class="form-control" id="username" v-model="notification.smtpUsername" autocomplete="false">
2021-07-09 13:08:08 -04:00
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
2021-07-12 13:02:50 -04:00
<input type="password" class="form-control" id="password" v-model="notification.smtpPassword" autocomplete="false">
2021-07-09 13:08:08 -04:00
</div>
<div class="mb-3">
<label for="from-email" class="form-label">From Email</label>
<input type="email" class="form-control" id="from-email" required v-model="notification.smtpFrom" autocomplete="false">
</div>
<div class="mb-3">
<label for="to-email" class="form-label">To Email</label>
<input type="email" class="form-control" id="to-email" required v-model="notification.smtpTo" autocomplete="false">
</div>
</template>
2021-07-09 02:14:03 -04:00
2021-07-09 23:38:00 -04:00
<template v-if="notification.type === 'discord'">
<div class="mb-3">
<label for="discord-webhook-url" class="form-label">Discord Webhook URL</label>
<input type="text" class="form-control" id="discord-webhook-url" required v-model="notification.discordWebhookUrl" autocomplete="false">
<div class="form-text">You can get this by going to Server Settings -> Integrations -> Create Webhook</div>
2021-07-09 23:38:00 -04:00
</div>
</template>
2021-07-12 16:06:03 -04:00
<template v-if="notification.type === 'signal'">
<div class="mb-3">
<label for="signal-url" class="form-label">Post URL</label>
<input type="url" pattern="https?://.+" class="form-control" id="signal-url" required v-model="notification.signalURL">
</div>
<div class="mb-3">
<label for="signal-number" class="form-label">Number</label>
<input type="text" class="form-control" id="signal-number" required v-model="notification.signalNumber">
</div>
<div class="mb-3">
<label for="signal-recipients" class="form-label">Recipients</label>
<input type="text" class="form-control" id="signal-recipients" required v-model="notification.signalRecipients">
<div class="form-text">
You need to have a signal client with REST API.
<p style="margin-top: 8px;">
You can check this url to view how to setup one:
</p>
<p style="margin-top: 8px;">
<a href="https://github.com/bbernhard/signal-cli-rest-api" target="_blank">https://github.com/bbernhard/signal-cli-rest-api</a>
</p>
<p style="margin-top: 8px;">
IMPORTANT: You cannot mix groups and numbers in recipients!
</p>
</div>
</div>
</template>
2021-07-14 05:25:10 -04:00
<template v-if="notification.type === 'gotify'">
<div class="mb-3">
<label for="gotify-application-token" class="form-label">Application Token</label>
<input type="text" class="form-control" id="gotify-application-token" required v-model="notification.gotifyapplicationToken">
</div>
<div class="mb-3">
<label for="gotify-server-url" class="form-label">Server URL</label>
<div class="input-group mb-3">
<input type="text" class="form-control" id="gotify-server-url" required v-model="notification.gotifyserverurl">
</div>
</div>
<div class="mb-3">
<label for="gotify-priority" class="form-label">Priority</label>
<input type="number" class="form-control" id="gotify-priority" v-model="notification.gotifyPriority" required min="0" max="10" step="1">
</div>
2021-07-14 05:25:10 -04:00
</template>
2021-07-15 13:44:51 -04:00
2021-07-14 11:38:38 -04:00
<template v-if="notification.type === 'slack'">
<div class="mb-3">
<label for="slack-webhook-url" class="form-label">Slack Webhook URL</label>
<input type="text" class="form-control" id="slack-webhook-url" required v-model="notification.slackwebhookURL" autocomplete="false">
<label for="gotify-server-url" class="form-label">Uptime Kuma URL</label>
<div class="input-group mb-3">
<input type="text" class="form-control" id="slack-button" required v-model="notification.slackbutton" autocomplete="false">
</div>
<p style="margin-top: 8px;">
More info on: <a href="https://api.slack.com/messaging/webhooks" target="_blank">https://api.slack.com/messaging/webhooks</a>
</p>
</div>
</template>
2021-07-17 08:19:56 -04:00
<template v-if="notification.type === 'pushover'">
<div class="mb-3">
<label for="pushover-app-token" class="form-label">Application Token<span style="color:red;"><sup>*</sup></span></label>
<input type="text" class="form-control" id="pushover-app-token" required v-model="notification.pushoverapptoken">
<label for="pushover-user" class="form-label">User Key<span style="color:red;"><sup>*</sup></span></label>
<input type="text" class="form-control" id="pushover-user" required v-model="notification.pushoveruserkey">
<label for="pushover-device" class="form-label">Device</label>
<input type="text" class="form-control" id="pushover-device" v-model="notification.pushoverdevice">
<label for="pushover-device" class="form-label">Message Title</label>
<input type="text" class="form-control" id="pushover-title" v-model="notification.pushovertitle">
<label for="pushover-priority" class="form-label">Priority</label>
<input type="text" class="form-control" id="pushover-priority" v-model="notification.pushoverpriority">
<label for="pushover-sound" class="form-label">Notification Sound</label>
<select class="form-select" id="pushover-sound" v-model="notification.pushoversounds">
<option>pushover</option>
<option>bike</option>
<option>bugle</option>
<option>cashregister</option>
<option>classical</option>
<option>cosmic</option>
<option>falling</option>
<option>gamelan</option>
<option>incoming</option>
<option>intermission</option>
<option>mechanical</option>
<option>pianobar</option>
<option>siren</option>
<option>spacealarm</option>
<option>tugboat</option>
<option>alien</option>
<option>climb</option>
<option>persistent</option>
<option>echo</option>
<option>updown</option>
<option>vibrate</option>
<option>none</option>
</select>
<div class="form-text">
<span style="color:red;"><sup>*</sup></span>Required
<p style="margin-top: 8px;">
2021-07-17 09:12:54 -04:00
More info on: <a href="https://pushover.net/api" target="_blank">https://pushover.net/api</a>
2021-07-17 08:19:56 -04:00
</p>
<p style="margin-top: 8px;">
Emergency priority(2) has default 30 second timeout between retries and will expire after 1 hour.
</p>
</div>
</div>
</template>
2021-07-14 05:25:10 -04:00
2021-07-09 02:14:03 -04:00
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" @click="deleteConfirm" :disabled="processing" v-if="id">Delete</button>
2021-07-09 02:14:03 -04:00
<button type="button" class="btn btn-warning" @click="test" :disabled="processing">Test</button>
<button type="submit" class="btn btn-primary" :disabled="processing">Save</button>
</div>
2021-06-29 04:06:20 -04:00
</div>
</div>
</div>
2021-07-09 02:14:03 -04:00
</form>
<Confirm ref="confirmDelete" @yes="deleteNotification" btn-style="btn-danger">Are you sure want to delete this notification for all monitors?</Confirm>
2021-06-29 04:06:20 -04:00
</template>
<script>
import { Modal } from 'bootstrap'
import { ucfirst } from '../util-frontend'
2021-07-09 02:14:03 -04:00
import axios from "axios";
import { useToast } from 'vue-toastification'
import Confirm from "./Confirm.vue";
2021-07-09 02:14:03 -04:00
const toast = useToast()
2021-06-29 04:06:20 -04:00
export default {
components: {Confirm},
2021-06-29 04:06:20 -04:00
props: {
},
data() {
return {
model: null,
2021-07-09 02:14:03 -04:00
processing: false,
id: null,
notification: {
name: "",
type: null,
gotifyPriority: 8
2021-07-09 02:14:03 -04:00
},
2021-06-29 04:06:20 -04:00
}
},
mounted() {
this.modal = new Modal(this.$refs.modal)
2021-07-09 02:14:03 -04:00
// TODO: for edit
this.$root.getSocket().emit("getSettings", "notification", (data) => {
// this.notification = data
})
2021-06-29 04:06:20 -04:00
},
methods: {
2021-07-09 02:14:03 -04:00
deleteConfirm() {
this.modal.hide();
this.$refs.confirmDelete.show()
},
2021-07-09 02:14:03 -04:00
show(notificationID) {
if (notificationID) {
this.id = notificationID;
for (let n of this.$root.notificationList) {
if (n.id === notificationID) {
this.notification = JSON.parse(n.config);
break;
}
}
} else {
this.id = null;
this.notification = {
name: "",
2021-07-14 16:00:15 -04:00
type: null,
2021-07-09 02:14:03 -04:00
}
2021-07-15 13:44:51 -04:00
2021-07-09 02:14:03 -04:00
// Default set to Telegram
this.notification.type = "telegram"
this.notification.gotifyPriority = 8
2021-07-09 02:14:03 -04:00
}
2021-06-29 04:06:20 -04:00
this.modal.show()
},
2021-07-09 02:14:03 -04:00
2021-06-29 04:06:20 -04:00
submit() {
2021-07-09 02:14:03 -04:00
this.processing = true;
this.$root.getSocket().emit("addNotification", this.notification, this.id, (res) => {
this.$root.toastRes(res)
this.processing = false;
2021-06-29 04:06:20 -04:00
2021-07-09 02:14:03 -04:00
if (res.ok) {
this.modal.hide()
}
})
},
test() {
this.processing = true;
this.$root.getSocket().emit("testNotification", this.notification, (res) => {
this.$root.toastRes(res)
this.processing = false;
})
},
deleteNotification() {
this.processing = true;
this.$root.getSocket().emit("deleteNotification", this.id, (res) => {
this.$root.toastRes(res)
this.processing = false;
if (res.ok) {
this.modal.hide()
}
})
},
async autoGetTelegramChatID() {
try {
let res = await axios.get(this.telegramGetUpdatesURL)
if (res.data.result.length >= 1) {
let update = res.data.result[res.data.result.length - 1]
if (update.channel_post) {
this.notification.telegramChatID = update.channel_post.chat.id;
} else if (update.message) {
this.notification.telegramChatID = update.message.chat.id;
} else {
throw new Error("Chat ID is not found, please send a message to this bot first")
}
2021-07-09 02:14:03 -04:00
} else {
throw new Error("Chat ID is not found, please send a message to this bot first")
}
} catch (error) {
toast.error(error.message)
}
},
},
computed: {
telegramGetUpdatesURL() {
let token = "<YOUR BOT TOKEN HERE>"
if (this.notification.telegramBotToken) {
token = this.notification.telegramBotToken;
}
return `https://api.telegram.org/bot${token}/getUpdates`;
},
2021-06-29 04:06:20 -04:00
},
watch: {
2021-07-09 02:14:03 -04:00
"notification.type"(to, from) {
2021-06-29 04:06:20 -04:00
let oldName;
if (from) {
2021-07-09 02:14:03 -04:00
oldName = `My ${ucfirst(from)} Alert (1)`;
2021-06-29 04:06:20 -04:00
} else {
oldName = "";
}
2021-07-09 02:14:03 -04:00
if (! this.notification.name || this.notification.name === oldName) {
this.notification.name = `My ${ucfirst(to)} Alert (1)`
2021-06-29 04:06:20 -04:00
}
}
}
}
</script>
<style scoped>
</style>