From 4bda29cb3896ac65c3aafa784c8faac73c3c111b Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 19 Sep 2017 23:58:05 +0200 Subject: [PATCH] Try quoting previous messsage (telegram). #237 --- bridge/telegram/telegram.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go index d6acf49c..00ed6deb 100644 --- a/bridge/telegram/telegram.go +++ b/bridge/telegram/telegram.go @@ -160,6 +160,27 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) { if message.Document != nil && b.Config.UseInsecureURL { text = text + " " + message.Document.FileName + " : " + b.getFileDirectURL(message.Document.FileID) } + + // quote the previous message + if message.ReplyToMessage != nil { + usernameReply := "" + if message.ReplyToMessage.From != nil { + if b.Config.UseFirstName { + usernameReply = message.ReplyToMessage.From.FirstName + } + if usernameReply == "" { + usernameReply = message.ReplyToMessage.From.UserName + if usernameReply == "" { + usernameReply = message.ReplyToMessage.From.FirstName + } + } + } + if usernameReply == "" { + usernameReply = "unknown" + } + text = text + " (re @" + usernameReply + ":" + message.ReplyToMessage.Text + ")" + } + if text != "" { flog.Debugf("Sending message from %s on %s to gateway", username, b.Account) msg := config.Message{Username: username, Text: text, Channel: channel, Account: b.Account, UserID: strconv.Itoa(message.From.ID), ID: strconv.Itoa(message.MessageID)}