mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-22 03:30:26 +00:00
Merge pull request #12 from fdevibe/msgprefix
Add config option to prefix messages (IRC->MM) with nick
This commit is contained in:
commit
4759ee6132
@ -56,6 +56,8 @@ SkipTLSVerify=true
|
|||||||
nick="matterbot"
|
nick="matterbot"
|
||||||
channel="#matterbridge"
|
channel="#matterbridge"
|
||||||
UseSlackCircumfix=false
|
UseSlackCircumfix=false
|
||||||
|
#whether to prefix messages from IRC to mattermost with the sender's nick. Useful if username overrides for incoming webhooks isn't enabled on the mattermost server
|
||||||
|
PrefixMessagesWithNick=false
|
||||||
|
|
||||||
[mattermost]
|
[mattermost]
|
||||||
#url is your incoming webhook url (account settings - integrations - incoming webhooks)
|
#url is your incoming webhook url (account settings - integrations - incoming webhooks)
|
||||||
|
17
config.go
17
config.go
@ -8,14 +8,15 @@ import (
|
|||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
IRC struct {
|
IRC struct {
|
||||||
UseTLS bool
|
UseTLS bool
|
||||||
SkipTLSVerify bool
|
SkipTLSVerify bool
|
||||||
Server string
|
Server string
|
||||||
Port int
|
Port int
|
||||||
Nick string
|
Nick string
|
||||||
Password string
|
Password string
|
||||||
Channel string
|
Channel string
|
||||||
UseSlackCircumfix bool
|
UseSlackCircumfix bool
|
||||||
|
PrefixMessagesWithNick bool
|
||||||
}
|
}
|
||||||
Mattermost struct {
|
Mattermost struct {
|
||||||
URL string
|
URL string
|
||||||
|
@ -6,6 +6,7 @@ SkipTLSVerify=true
|
|||||||
nick="matterbot"
|
nick="matterbot"
|
||||||
channel="#matterbridge"
|
channel="#matterbridge"
|
||||||
UseSlackCircumfix=false
|
UseSlackCircumfix=false
|
||||||
|
PrefixMessagesWithNick=false
|
||||||
|
|
||||||
[mattermost]
|
[mattermost]
|
||||||
url="http://yourdomain/hooks/yourhookkey"
|
url="http://yourdomain/hooks/yourhookkey"
|
||||||
|
@ -92,8 +92,12 @@ func (b *Bridge) SendType(nick string, message string, channel string, mtype str
|
|||||||
matterMessage := matterhook.OMessage{IconURL: b.Config.Mattermost.IconURL}
|
matterMessage := matterhook.OMessage{IconURL: b.Config.Mattermost.IconURL}
|
||||||
matterMessage.Channel = channel
|
matterMessage.Channel = channel
|
||||||
matterMessage.UserName = nick
|
matterMessage.UserName = nick
|
||||||
matterMessage.Text = message
|
|
||||||
matterMessage.Type = mtype
|
matterMessage.Type = mtype
|
||||||
|
if (b.Config.IRC.PrefixMessagesWithNick) {
|
||||||
|
matterMessage.Text = nick + ": " + message
|
||||||
|
} else {
|
||||||
|
matterMessage.Text = message
|
||||||
|
}
|
||||||
err := b.m.Send(matterMessage)
|
err := b.m.Send(matterMessage)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
Loading…
Reference in New Issue
Block a user