diff options
author | Wim <wim@42.be> | 2017-11-24 22:55:24 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-11-24 22:55:24 +0100 |
commit | 7ec95f786d55aab69541cb3065ea2c9b8eaf9c43 (patch) | |
tree | 1ad62ec1669c40ba9a9ad88474df43866d60450e /bridge/xmpp/xmpp.go | |
parent | 1efe40add50a76b7a0ad95187f6034cc75845d16 (diff) | |
download | matterbridge-msglm-7ec95f786d55aab69541cb3065ea2c9b8eaf9c43.tar.gz matterbridge-msglm-7ec95f786d55aab69541cb3065ea2c9b8eaf9c43.tar.bz2 matterbridge-msglm-7ec95f786d55aab69541cb3065ea2c9b8eaf9c43.zip |
Use mediaserver urls for irc,gitter and xmpp
Diffstat (limited to 'bridge/xmpp/xmpp.go')
-rw-r--r-- | bridge/xmpp/xmpp.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 6999e801..b5429b1f 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -85,6 +85,19 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) { return "", nil } flog.Debugf("Receiving %#v", msg) + if msg.Extra != nil { + if len(msg.Extra["file"]) > 0 { + for _, f := range msg.Extra["file"] { + fi := f.(config.FileInfo) + if fi.URL != "" { + msg.Text = fi.URL + } + b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.Config.Muc, Text: msg.Username + msg.Text}) + } + return "", nil + } + } + b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.Config.Muc, Text: msg.Username + msg.Text}) return "", nil } |