summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-05-15 23:23:10 +0200
committerWim <wim@42.be>2017-05-15 23:23:10 +0200
commit2888fd64b0a25e40541d0ac8b4e176ba46905f9f (patch)
tree7791a37bb3b16a8e2d13e8e3a90404cfd86d48ba
parent27c0f37e49ef7de3a18b1771620941b4158ccefb (diff)
downloadmatterbridge-msglm-2888fd64b0a25e40541d0ac8b4e176ba46905f9f.tar.gz
matterbridge-msglm-2888fd64b0a25e40541d0ac8b4e176ba46905f9f.tar.bz2
matterbridge-msglm-2888fd64b0a25e40541d0ac8b4e176ba46905f9f.zip
Add UseFirstName option (telegram). Closes #144
-rw-r--r--bridge/config/config.go1
-rw-r--r--bridge/telegram/telegram.go7
-rw-r--r--matterbridge.toml.sample6
3 files changed, 13 insertions, 1 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go
index 6f34131f..2cd53666 100644
--- a/bridge/config/config.go
+++ b/bridge/config/config.go
@@ -70,6 +70,7 @@ type Protocol struct {
UseAPI bool // mattermost, slack
UseSASL bool // IRC
UseTLS bool // IRC
+ UseFirstName bool // telegram
}
type ChannelOptions struct {
diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go
index 32269241..8631f2f9 100644
--- a/bridge/telegram/telegram.go
+++ b/bridge/telegram/telegram.go
@@ -98,9 +98,14 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
message.Text = message.Text + b.Config.EditSuffix
}
if message.From != nil {
- username = message.From.FirstName
+ if b.Config.UseFirstName {
+ username = message.From.FirstName
+ }
if username == "" {
username = message.From.UserName
+ if username == "" {
+ username = message.From.FirstName
+ }
}
text = message.Text
channel = strconv.FormatInt(message.Chat.ID, 10)
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample
index de1304ad..0d4da80d 100644
--- a/matterbridge.toml.sample
+++ b/matterbridge.toml.sample
@@ -451,6 +451,12 @@ Token="Yourtokenhere"
#See https://core.telegram.org/bots/api#html-style
MessageFormat=""
+#If enabled use the "First Name" as username. If this is empty use the Username
+#If disabled use the "Username" as username. If this is empty use the First Name
+#If all names are empty, username will be "unknown"
+#OPTIONAL (default false)
+UseFirstName=false
+
#Disable sending of edits to other bridges
#OPTIONAL (default false)
EditDisable=false