mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-30 02:12:34 +02:00
171 lines
6.3 KiB
Vue
171 lines
6.3 KiB
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="telegram-bot-token" class="form-label">{{ $t("Bot Token") }}</label>
|
|
<HiddenInput id="telegram-bot-token" v-model="$parent.notification.telegramBotToken" :required="true" autocomplete="new-password"></HiddenInput>
|
|
<i18n-t tag="div" keypath="wayToGetTelegramToken" class="form-text">
|
|
<a href="https://t.me/BotFather" target="_blank">https://t.me/BotFather</a>
|
|
</i18n-t>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="telegram-chat-id" class="form-label">{{ $t("Chat ID") }}</label>
|
|
|
|
<div class="input-group mb-3">
|
|
<input id="telegram-chat-id" v-model="$parent.notification.telegramChatID" type="text" class="form-control" required>
|
|
<button v-if="$parent.notification.telegramBotToken" class="btn btn-outline-secondary" type="button" @click="autoGetTelegramChatID">
|
|
{{ $t("Auto Get") }}
|
|
</button>
|
|
</div>
|
|
|
|
<div class="form-text">
|
|
{{ $t("supportTelegramChatID") }}
|
|
|
|
<p style="margin-top: 8px;">
|
|
{{ $t("wayToGetTelegramChatID") }}
|
|
</p>
|
|
|
|
<p style="margin-top: 8px;">
|
|
<a :href="telegramGetUpdatesURL('withToken')" target="_blank" style="word-break: break-word;">{{ telegramGetUpdatesURL("masked") }}</a>
|
|
</p>
|
|
</div>
|
|
|
|
<label for="message_thread_id" class="form-label">{{ $t("telegramMessageThreadID") }}</label>
|
|
<input id="message_thread_id" v-model="$parent.notification.telegramMessageThreadID" type="text" class="form-control">
|
|
<p class="form-text">{{ $t("telegramMessageThreadIDDescription") }}</p>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<div class="form-check form-switch">
|
|
<input v-model="$parent.notification.telegramUseTemplate" class="form-check-input" type="checkbox">
|
|
<label class="form-check-label">{{ $t("telegramUseTemplate") }}</label>
|
|
</div>
|
|
|
|
<div class="form-text">
|
|
{{ $t("telegramUseTemplateDescription") }}
|
|
</div>
|
|
</div>
|
|
|
|
<template v-if="$parent.notification.telegramUseTemplate">
|
|
<div class="mb-3">
|
|
<label class="form-label" for="message_parse_mode">{{ $t("Message Format") }}</label>
|
|
<select
|
|
id="message_parse_mode"
|
|
v-model="$parent.notification.telegramTemplateParseMode"
|
|
class="form-select"
|
|
required
|
|
>
|
|
<option value="plain">{{ $t("Plain Text") }}</option>
|
|
<option value="HTML">HTML</option>
|
|
<option value="MarkdownV2">MarkdownV2</option>
|
|
</select>
|
|
<i18n-t tag="p" keypath="telegramTemplateFormatDescription" class="form-text">
|
|
<a href="https://core.telegram.org/bots/api#formatting-options" target="_blank">{{ $t("documentation") }}</a>
|
|
</i18n-t>
|
|
|
|
<label class="form-label" for="message_template">{{ $t('Message Template') }}</label>
|
|
<TemplatedTextarea id="message_template" v-model="$parent.notification.telegramTemplate" :required="true" :placeholder="telegramTemplatedTextareaPlaceholder"></TemplatedTextarea>
|
|
</div>
|
|
</template>
|
|
|
|
<div class="mb-3">
|
|
<div class="form-check form-switch">
|
|
<input v-model="$parent.notification.telegramSendSilently" class="form-check-input" type="checkbox">
|
|
<label class="form-check-label">{{ $t("telegramSendSilently") }}</label>
|
|
</div>
|
|
|
|
<div class="form-text">
|
|
{{ $t("telegramSendSilentlyDescription") }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<div class="form-check form-switch">
|
|
<input v-model="$parent.notification.telegramProtectContent" class="form-check-input" type="checkbox">
|
|
<label class="form-check-label">{{ $t("telegramProtectContent") }}</label>
|
|
</div>
|
|
|
|
<div class="form-text">
|
|
{{ $t("telegramProtectContentDescription") }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
import TemplatedTextarea from "../TemplatedTextarea.vue";
|
|
import axios from "axios";
|
|
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
TemplatedTextarea,
|
|
},
|
|
computed: {
|
|
telegramTemplatedTextareaPlaceholder() {
|
|
return this.$t("Example:", [
|
|
`
|
|
Uptime Kuma Alert{% if monitorJSON %} - {{ monitorJSON['name'] }}{% endif %}
|
|
|
|
{{ msg }}
|
|
`,
|
|
]);
|
|
}
|
|
},
|
|
methods: {
|
|
/**
|
|
* Get the URL for telegram updates
|
|
* @param {string} mode Should the token be masked?
|
|
* @returns {string} formatted URL
|
|
*/
|
|
telegramGetUpdatesURL(mode = "masked") {
|
|
let token = `<${this.$t("YOUR BOT TOKEN HERE")}>`;
|
|
|
|
if (this.$parent.notification.telegramBotToken) {
|
|
if (mode === "withToken") {
|
|
token = this.$parent.notification.telegramBotToken;
|
|
} else if (mode === "masked") {
|
|
token = "*".repeat(this.$parent.notification.telegramBotToken.length);
|
|
}
|
|
}
|
|
|
|
return `https://api.telegram.org/bot${token}/getUpdates`;
|
|
},
|
|
|
|
/**
|
|
* Get the telegram chat ID
|
|
* @returns {Promise<void>}
|
|
* @throws The chat ID could not be found
|
|
*/
|
|
async autoGetTelegramChatID() {
|
|
try {
|
|
let res = await axios.get(this.telegramGetUpdatesURL("withToken"));
|
|
|
|
if (res.data.result.length >= 1) {
|
|
let update = res.data.result[res.data.result.length - 1];
|
|
|
|
if (update.channel_post) {
|
|
this.$parent.notification.telegramChatID = update.channel_post.chat.id;
|
|
} else if (update.message) {
|
|
this.$parent.notification.telegramChatID = update.message.chat.id;
|
|
} else {
|
|
throw new Error(this.$t("chatIDNotFound"));
|
|
}
|
|
|
|
} else {
|
|
throw new Error(this.$t("chatIDNotFound"));
|
|
}
|
|
|
|
} catch (error) {
|
|
this.$root.toastError(error.message);
|
|
}
|
|
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
textarea {
|
|
min-height: 150px;
|
|
}
|
|
</style>
|