2021-09-07 11:32:05 -04:00
|
|
|
<template>
|
2021-09-07 22:25:03 -04:00
|
|
|
<div class="mb-3">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="telegram-bot-token" class="form-label">{{ $t("Bot Token") }}</label>
|
2022-10-13 07:28:02 -04:00
|
|
|
<HiddenInput id="telegram-bot-token" v-model="$parent.notification.telegramBotToken" :required="true" autocomplete="new-password"></HiddenInput>
|
2021-10-12 04:29:18 -04:00
|
|
|
<i18n-t tag="div" keypath="wayToGetTelegramToken" class="form-text">
|
|
|
|
<a href="https://t.me/BotFather" target="_blank">https://t.me/BotFather</a>
|
|
|
|
</i18n-t>
|
2021-09-07 22:25:03 -04:00
|
|
|
</div>
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-09-07 22:25:03 -04:00
|
|
|
<div class="mb-3">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="telegram-chat-id" class="form-label">{{ $t("Chat ID") }}</label>
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-09-07 22:25:03 -04:00
|
|
|
<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>
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-09-07 22:25:03 -04:00
|
|
|
<div class="form-text">
|
2021-09-21 01:02:41 -04:00
|
|
|
{{ $t("supportTelegramChatID") }}
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-09-07 22:25:03 -04:00
|
|
|
<p style="margin-top: 8px;">
|
2021-09-21 01:02:41 -04:00
|
|
|
{{ $t("wayToGetTelegramChatID") }}
|
2021-09-07 22:25:03 -04:00
|
|
|
</p>
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-09-07 22:25:03 -04:00
|
|
|
<p style="margin-top: 8px;">
|
2021-12-05 04:40:13 -05:00
|
|
|
<a :href="telegramGetUpdatesURL('withToken')" target="_blank" style="word-break: break-word;">{{ telegramGetUpdatesURL("masked") }}</a>
|
2021-09-07 22:25:03 -04:00
|
|
|
</p>
|
2021-09-07 11:32:05 -04:00
|
|
|
</div>
|
2021-09-07 22:25:03 -04:00
|
|
|
</div>
|
2021-09-07 11:32:05 -04:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
import axios from "axios";
|
2021-11-03 19:19:04 -04:00
|
|
|
import { useToast } from "vue-toastification";
|
2021-09-07 11:32:05 -04:00
|
|
|
const toast = useToast();
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
2021-11-03 19:19:04 -04:00
|
|
|
methods: {
|
2021-12-05 04:40:13 -05:00
|
|
|
telegramGetUpdatesURL(mode = "masked") {
|
2021-11-03 19:19:04 -04:00
|
|
|
let token = `<${this.$t("YOUR BOT TOKEN HERE")}>`;
|
2021-09-07 11:32:05 -04:00
|
|
|
|
2021-12-05 04:40:13 -05:00
|
|
|
if (this.$parent.notification.telegramBotToken) {
|
|
|
|
if (mode === "withToken") {
|
|
|
|
token = this.$parent.notification.telegramBotToken;
|
|
|
|
} else if (mode === "masked") {
|
|
|
|
token = "*".repeat(this.$parent.notification.telegramBotToken.length);
|
|
|
|
}
|
2021-09-07 11:32:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return `https://api.telegram.org/bot${token}/getUpdates`;
|
|
|
|
},
|
|
|
|
async autoGetTelegramChatID() {
|
|
|
|
try {
|
2021-12-05 04:40:13 -05:00
|
|
|
let res = await axios.get(this.telegramGetUpdatesURL("withToken"));
|
2021-09-07 11:32:05 -04:00
|
|
|
|
|
|
|
if (res.data.result.length >= 1) {
|
2021-11-03 19:19:04 -04:00
|
|
|
let update = res.data.result[res.data.result.length - 1];
|
2021-09-07 11:32:05 -04:00
|
|
|
|
|
|
|
if (update.channel_post) {
|
2022-02-15 10:30:07 -05:00
|
|
|
this.$parent.notification.telegramChatID = update.channel_post.chat.id;
|
2021-09-07 11:32:05 -04:00
|
|
|
} else if (update.message) {
|
2022-02-15 10:30:07 -05:00
|
|
|
this.$parent.notification.telegramChatID = update.message.chat.id;
|
2021-09-07 11:32:05 -04:00
|
|
|
} else {
|
2021-11-03 19:19:04 -04:00
|
|
|
throw new Error(this.$t("chatIDNotFound"));
|
2021-09-07 11:32:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2021-11-03 19:19:04 -04:00
|
|
|
throw new Error(this.$t("chatIDNotFound"));
|
2021-09-07 11:32:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
2021-11-03 19:19:04 -04:00
|
|
|
toast.error(error.message);
|
2021-09-07 11:32:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
2021-11-03 19:19:04 -04:00
|
|
|
};
|
2021-09-07 11:32:05 -04:00
|
|
|
</script>
|