mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-21 10:12:00 -08:00
Update handlers.go
Add ability to use FullName, FirstName, LastName, NickName or UserName(if neither is set) as nick for Mattermost
This commit is contained in:
parent
1addf9fca7
commit
5e38c949f2
@ -142,12 +142,30 @@ func (b *Bmattermost) handleMatterClient(messages chan *config.Message) {
|
||||
}
|
||||
}
|
||||
|
||||
// Use nickname instead of username if defined
|
||||
if !b.GetBool("useusername") {
|
||||
if nick := b.mc.GetNickName(rmsg.UserID); nick != "" {
|
||||
rmsg.Username = nick
|
||||
}
|
||||
}
|
||||
// Choose what to use as user nick Nickname/FullName/FirstName/LastName (or Username if neither is set)
|
||||
if b.GetBool("UseNickName") {
|
||||
if b.mc.GetNickName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetNickName(rmsg.UserID)
|
||||
}
|
||||
} else if b.GetBool("UseFirstName") {
|
||||
if b.mc.GetFirstName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetFirstName(rmsg.UserID)
|
||||
}
|
||||
} else if b.GetBool("UseLastName") {
|
||||
if b.mc.GetLastName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetLastName(rmsg.UserID)
|
||||
}
|
||||
} else if b.GetBool("UseFullName") {
|
||||
if b.mc.GetFirstName(rmsg.UserID) != "" && b.mc.GetLastName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetFirstName(rmsg.UserID) + " " + b.mc.GetLastName(rmsg.UserID)
|
||||
} else if b.mc.GetFirstName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetFirstName(rmsg.UserID)
|
||||
} else if b.mc.GetLastName(rmsg.UserID) != "" {
|
||||
rmsg.Username = b.mc.GetLastName(rmsg.UserID)
|
||||
} else {
|
||||
rmsg.Username = ""
|
||||
}
|
||||
}
|
||||
|
||||
messages <- rmsg
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user