mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-12 21:50:26 +00:00
Add Telegram Bot Command /chatId (telegram) (#1703)
* feat(telegram): command to get chat id * Gofumpt Co-authored-by: Ivan Zuev <i-zuev@yandex-team.ru> Co-authored-by: Wim <wim@42.be>
This commit is contained in:
parent
6a7412bf2b
commit
4801850013
@ -1,6 +1,7 @@
|
|||||||
package btelegram
|
package btelegram
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"html"
|
"html"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
@ -15,8 +16,20 @@ import (
|
|||||||
func (b *Btelegram) handleUpdate(rmsg *config.Message, message, posted, edited *tgbotapi.Message) *tgbotapi.Message {
|
func (b *Btelegram) handleUpdate(rmsg *config.Message, message, posted, edited *tgbotapi.Message) *tgbotapi.Message {
|
||||||
// handle channels
|
// handle channels
|
||||||
if posted != nil {
|
if posted != nil {
|
||||||
message = posted
|
if posted.Text == "/chatId" {
|
||||||
rmsg.Text = message.Text
|
chatID := strconv.FormatInt(posted.Chat.ID, 10)
|
||||||
|
|
||||||
|
_, err := b.Send(config.Message{
|
||||||
|
Channel: chatID,
|
||||||
|
Text: fmt.Sprintf("ID of this chat: %s", chatID),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
b.Log.Warnf("Unable to send chatID to %s", chatID)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
message = posted
|
||||||
|
rmsg.Text = message.Text
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// edited channel message
|
// edited channel message
|
||||||
|
Loading…
Reference in New Issue
Block a user