2016-09-18 19:21:15 +02:00
|
|
|
|
package gateway
|
|
|
|
|
|
|
|
|
|
import (
|
2017-11-24 22:36:19 +01:00
|
|
|
|
"bytes"
|
2018-12-06 00:40:55 +01:00
|
|
|
|
"crypto/sha1" //nolint:gosec
|
2016-10-08 21:57:03 +02:00
|
|
|
|
"fmt"
|
2018-06-08 22:30:35 +02:00
|
|
|
|
"io/ioutil"
|
|
|
|
|
"net/http"
|
|
|
|
|
"os"
|
2018-11-13 20:51:19 +01:00
|
|
|
|
"path/filepath"
|
|
|
|
|
"regexp"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
2016-09-18 19:21:15 +02:00
|
|
|
|
"github.com/42wim/matterbridge/bridge"
|
|
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
2018-06-08 22:30:35 +02:00
|
|
|
|
"github.com/hashicorp/golang-lru"
|
|
|
|
|
"github.com/peterhellberg/emojilib"
|
2018-11-13 20:51:19 +01:00
|
|
|
|
log "github.com/sirupsen/logrus"
|
2016-09-18 19:21:15 +02:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Gateway struct {
|
2018-11-13 23:30:56 +01:00
|
|
|
|
config.Config
|
|
|
|
|
|
2017-07-25 20:11:52 +02:00
|
|
|
|
Router *Router
|
|
|
|
|
MyConfig *config.Gateway
|
|
|
|
|
Bridges map[string]*bridge.Bridge
|
|
|
|
|
Channels map[string]*config.ChannelInfo
|
|
|
|
|
ChannelOptions map[string]config.ChannelOptions
|
|
|
|
|
Message chan config.Message
|
|
|
|
|
Name string
|
2017-08-28 00:33:17 +02:00
|
|
|
|
Messages *lru.Cache
|
2017-08-27 22:59:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:33:17 +02:00
|
|
|
|
type BrMsgID struct {
|
2018-01-20 21:58:59 +01:00
|
|
|
|
br *bridge.Bridge
|
|
|
|
|
ID string
|
|
|
|
|
ChannelID string
|
2016-09-18 19:21:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-21 00:20:25 +01:00
|
|
|
|
var flog *log.Entry
|
|
|
|
|
|
2018-11-08 22:20:03 +01:00
|
|
|
|
const (
|
|
|
|
|
apiProtocol = "api"
|
|
|
|
|
)
|
|
|
|
|
|
2017-07-25 20:11:52 +02:00
|
|
|
|
func New(cfg config.Gateway, r *Router) *Gateway {
|
2018-11-08 22:33:03 +01:00
|
|
|
|
flog = log.WithFields(log.Fields{"prefix": "gateway"})
|
2017-07-25 20:11:52 +02:00
|
|
|
|
gw := &Gateway{Channels: make(map[string]*config.ChannelInfo), Message: r.Message,
|
|
|
|
|
Router: r, Bridges: make(map[string]*bridge.Bridge), Config: r.Config}
|
2017-08-28 00:33:17 +02:00
|
|
|
|
cache, _ := lru.New(5000)
|
|
|
|
|
gw.Messages = cache
|
2017-07-25 20:11:52 +02:00
|
|
|
|
gw.AddConfig(&cfg)
|
2016-11-08 23:44:16 +01:00
|
|
|
|
return gw
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 09:14:31 +01:00
|
|
|
|
// Find the canonical ID that the message is keyed under in cache
|
2018-11-19 21:28:23 +01:00
|
|
|
|
func (gw *Gateway) FindCanonicalMsgID(protocol string, mID string) string {
|
|
|
|
|
ID := protocol + " " + mID
|
|
|
|
|
if gw.Messages.Contains(ID) {
|
2018-11-07 09:14:31 +01:00
|
|
|
|
return mID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If not keyed, iterate through cache for downstream, and infer upstream.
|
|
|
|
|
for _, mid := range gw.Messages.Keys() {
|
|
|
|
|
v, _ := gw.Messages.Peek(mid)
|
|
|
|
|
ids := v.([]*BrMsgID)
|
|
|
|
|
for _, downstreamMsgObj := range ids {
|
2018-11-19 21:28:23 +01:00
|
|
|
|
if ID == downstreamMsgObj.ID {
|
|
|
|
|
return strings.Replace(mid.(string), protocol+" ", "", 1)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-08 23:44:16 +01:00
|
|
|
|
func (gw *Gateway) AddBridge(cfg *config.Bridge) error {
|
2017-07-25 20:11:52 +02:00
|
|
|
|
br := gw.Router.getBridge(cfg.Account)
|
|
|
|
|
if br == nil {
|
2018-02-27 00:33:21 +01:00
|
|
|
|
br = bridge.New(cfg)
|
2018-03-04 23:52:14 +01:00
|
|
|
|
br.Config = gw.Router.Config
|
2018-11-15 20:43:43 +01:00
|
|
|
|
br.General = &gw.BridgeValues().General
|
2018-02-27 00:33:21 +01:00
|
|
|
|
// set logging
|
|
|
|
|
br.Log = log.WithFields(log.Fields{"prefix": "bridge"})
|
2018-03-04 23:52:14 +01:00
|
|
|
|
brconfig := &bridge.Config{Remote: gw.Message, Log: log.WithFields(log.Fields{"prefix": br.Protocol}), Bridge: br}
|
2018-02-27 00:33:21 +01:00
|
|
|
|
// add the actual bridger for this protocol to this bridge using the bridgeMap
|
2018-11-30 23:53:00 +01:00
|
|
|
|
br.Bridger = gw.Router.BridgeMap[br.Protocol](brconfig)
|
2016-11-08 23:44:16 +01:00
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
gw.mapChannelsToBridge(br)
|
2016-11-13 23:06:37 +01:00
|
|
|
|
gw.Bridges[cfg.Account] = br
|
2016-09-18 19:21:15 +02:00
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-01 17:24:19 +02:00
|
|
|
|
func (gw *Gateway) AddConfig(cfg *config.Gateway) error {
|
|
|
|
|
gw.Name = cfg.Name
|
|
|
|
|
gw.MyConfig = cfg
|
|
|
|
|
gw.mapChannels()
|
|
|
|
|
for _, br := range append(gw.MyConfig.In, append(gw.MyConfig.InOut, gw.MyConfig.Out...)...) {
|
2018-11-08 22:29:34 +01:00
|
|
|
|
br := br //scopelint
|
2017-04-01 17:24:19 +02:00
|
|
|
|
err := gw.AddBridge(&br)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-28 23:56:58 +02:00
|
|
|
|
func (gw *Gateway) mapChannelsToBridge(br *bridge.Bridge) {
|
|
|
|
|
for ID, channel := range gw.Channels {
|
|
|
|
|
if br.Account == channel.Account {
|
|
|
|
|
br.Channels[ID] = *channel
|
2017-02-14 23:52:45 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-14 21:12:02 +01:00
|
|
|
|
func (gw *Gateway) reconnectBridge(br *bridge.Bridge) {
|
|
|
|
|
br.Disconnect()
|
|
|
|
|
time.Sleep(time.Second * 5)
|
|
|
|
|
RECONNECT:
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Infof("Reconnecting %s", br.Account)
|
2017-02-14 21:12:02 +01:00
|
|
|
|
err := br.Connect()
|
|
|
|
|
if err != nil {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Errorf("Reconnection failed: %s. Trying again in 60 seconds", err)
|
2017-02-14 21:12:02 +01:00
|
|
|
|
time.Sleep(time.Second * 60)
|
|
|
|
|
goto RECONNECT
|
|
|
|
|
}
|
2017-04-01 17:24:19 +02:00
|
|
|
|
br.Joined = make(map[string]bool)
|
2017-02-14 21:12:02 +01:00
|
|
|
|
br.JoinChannels()
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-22 17:25:22 +02:00
|
|
|
|
func (gw *Gateway) mapChannelConfig(cfg []config.Bridge, direction string) {
|
|
|
|
|
for _, br := range cfg {
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if isAPI(br.Account) {
|
2018-11-08 22:20:03 +01:00
|
|
|
|
br.Channel = apiProtocol
|
2017-06-15 00:40:23 +02:00
|
|
|
|
}
|
2018-01-28 19:15:13 +01:00
|
|
|
|
// make sure to lowercase irc channels in config #348
|
|
|
|
|
if strings.HasPrefix(br.Account, "irc.") {
|
|
|
|
|
br.Channel = strings.ToLower(br.Channel)
|
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
ID := br.Channel + br.Account
|
2017-07-22 17:25:22 +02:00
|
|
|
|
if _, ok := gw.Channels[ID]; !ok {
|
|
|
|
|
channel := &config.ChannelInfo{Name: br.Channel, Direction: direction, ID: ID, Options: br.Options, Account: br.Account,
|
2017-07-25 20:11:52 +02:00
|
|
|
|
SameChannel: make(map[string]bool)}
|
2017-04-01 17:24:19 +02:00
|
|
|
|
channel.SameChannel[gw.Name] = br.SameChannel
|
2017-03-28 23:56:58 +02:00
|
|
|
|
gw.Channels[channel.ID] = channel
|
2017-07-22 17:25:22 +02:00
|
|
|
|
} else {
|
|
|
|
|
// if we already have a key and it's not our current direction it means we have a bidirectional inout
|
|
|
|
|
if gw.Channels[ID].Direction != direction {
|
|
|
|
|
gw.Channels[ID].Direction = "inout"
|
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
}
|
2017-04-01 17:24:19 +02:00
|
|
|
|
gw.Channels[ID].SameChannel[gw.Name] = br.SameChannel
|
2016-11-20 23:01:44 +01:00
|
|
|
|
}
|
2017-07-22 17:25:22 +02:00
|
|
|
|
}
|
2017-07-25 20:11:52 +02:00
|
|
|
|
|
2017-07-22 17:25:22 +02:00
|
|
|
|
func (gw *Gateway) mapChannels() error {
|
|
|
|
|
gw.mapChannelConfig(gw.MyConfig.In, "in")
|
|
|
|
|
gw.mapChannelConfig(gw.MyConfig.Out, "out")
|
|
|
|
|
gw.mapChannelConfig(gw.MyConfig.InOut, "inout")
|
2016-09-18 19:21:15 +02:00
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-01 17:24:19 +02:00
|
|
|
|
func (gw *Gateway) getDestChannel(msg *config.Message, dest bridge.Bridge) []config.ChannelInfo {
|
2017-03-28 23:56:58 +02:00
|
|
|
|
var channels []config.ChannelInfo
|
2018-01-21 12:21:55 +01:00
|
|
|
|
|
|
|
|
|
// for messages received from the api check that the gateway is the specified one
|
2018-11-08 22:20:03 +01:00
|
|
|
|
if msg.Protocol == apiProtocol && gw.Name != msg.Gateway {
|
2018-01-21 12:21:55 +01:00
|
|
|
|
return channels
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-22 17:25:22 +02:00
|
|
|
|
// if source channel is in only, do nothing
|
|
|
|
|
for _, channel := range gw.Channels {
|
|
|
|
|
// lookup the channel from the message
|
|
|
|
|
if channel.ID == getChannelID(*msg) {
|
|
|
|
|
// we only have destinations if the original message is from an "in" (sending) channel
|
|
|
|
|
if !strings.Contains(channel.Direction, "in") {
|
|
|
|
|
return channels
|
|
|
|
|
}
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
for _, channel := range gw.Channels {
|
2017-04-01 17:24:19 +02:00
|
|
|
|
if _, ok := gw.Channels[getChannelID(*msg)]; !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2017-06-27 00:28:18 +02:00
|
|
|
|
|
2018-02-21 00:20:25 +01:00
|
|
|
|
// do samechannelgateway flogic
|
2017-06-27 00:28:18 +02:00
|
|
|
|
if channel.SameChannel[msg.Gateway] {
|
|
|
|
|
if msg.Channel == channel.Name && msg.Account != dest.Account {
|
|
|
|
|
channels = append(channels, *channel)
|
|
|
|
|
}
|
|
|
|
|
continue
|
|
|
|
|
}
|
2018-11-08 00:29:30 +01:00
|
|
|
|
if strings.Contains(channel.Direction, "out") && channel.Account == dest.Account && gw.validGatewayDest(msg) {
|
2017-03-28 23:56:58 +02:00
|
|
|
|
channels = append(channels, *channel)
|
2016-10-23 20:58:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
return channels
|
2016-09-18 19:21:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 09:14:31 +01:00
|
|
|
|
func (gw *Gateway) getDestMsgID(msgID string, dest *bridge.Bridge, channel config.ChannelInfo) string {
|
|
|
|
|
if res, ok := gw.Messages.Get(msgID); ok {
|
|
|
|
|
IDs := res.([]*BrMsgID)
|
|
|
|
|
for _, id := range IDs {
|
|
|
|
|
// check protocol, bridge name and channelname
|
|
|
|
|
// for people that reuse the same bridge multiple times. see #342
|
|
|
|
|
if dest.Protocol == id.br.Protocol && dest.Name == id.br.Name && channel.ID == id.ChannelID {
|
2018-11-19 21:28:23 +01:00
|
|
|
|
return strings.Replace(id.ID, dest.Protocol+" ", "", 1)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:33:17 +02:00
|
|
|
|
func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrMsgID {
|
|
|
|
|
var brMsgIDs []*BrMsgID
|
2017-09-18 23:51:27 +02:00
|
|
|
|
|
2018-02-27 22:16:44 +01:00
|
|
|
|
// if we have an attached file, or other info
|
2017-09-18 23:51:27 +02:00
|
|
|
|
if msg.Extra != nil {
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if len(msg.Extra[config.EventFileFailureSize]) != 0 {
|
2017-09-18 23:51:27 +02:00
|
|
|
|
if msg.Text == "" {
|
|
|
|
|
return brMsgIDs
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-20 00:54:35 +01:00
|
|
|
|
|
|
|
|
|
// Avatar downloads are only relevant for telegram and mattermost for now
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if msg.Event == config.EventAvatarDownload {
|
2018-02-20 00:54:35 +01:00
|
|
|
|
if dest.Protocol != "mattermost" &&
|
|
|
|
|
dest.Protocol != "telegram" {
|
|
|
|
|
return brMsgIDs
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
|
|
|
|
// only relay join/part when configured
|
2018-12-01 00:24:07 +01:00
|
|
|
|
if msg.Event == config.EventJoinLeave && !dest.GetBool("ShowJoinPart") {
|
2017-08-28 00:33:17 +02:00
|
|
|
|
return brMsgIDs
|
2017-04-03 22:18:29 +02:00
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
2018-11-26 10:47:04 +01:00
|
|
|
|
// only relay topic change when used in some way on other side
|
|
|
|
|
if msg.Event == config.EventTopicChange &&
|
2018-12-01 00:24:07 +01:00
|
|
|
|
dest.GetBool("ShowTopicChange") &&
|
|
|
|
|
dest.GetBool("SyncTopic") {
|
2018-02-02 21:04:43 +01:00
|
|
|
|
return brMsgIDs
|
|
|
|
|
}
|
2018-02-20 00:54:35 +01:00
|
|
|
|
|
2017-03-28 23:56:58 +02:00
|
|
|
|
// broadcast to every out channel (irc QUIT)
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if msg.Channel == "" && msg.Event != config.EventJoinLeave {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Debug("empty channel")
|
2017-08-28 00:33:17 +02:00
|
|
|
|
return brMsgIDs
|
2016-11-14 22:53:06 +01:00
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
2018-11-07 09:14:31 +01:00
|
|
|
|
// Get the ID of the parent message in thread
|
|
|
|
|
var canonicalParentMsgID string
|
2018-12-01 00:24:07 +01:00
|
|
|
|
if msg.ParentID != "" && dest.GetBool("PreserveThreading") {
|
2018-11-19 21:28:23 +01:00
|
|
|
|
canonicalParentMsgID = gw.FindCanonicalMsgID(msg.Protocol, msg.ParentID)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-23 22:23:20 +02:00
|
|
|
|
originchannel := msg.Channel
|
2017-05-24 22:10:21 +02:00
|
|
|
|
origmsg := msg
|
2017-07-25 20:11:52 +02:00
|
|
|
|
channels := gw.getDestChannel(&msg, *dest)
|
|
|
|
|
for _, channel := range channels {
|
2018-02-20 00:54:35 +01:00
|
|
|
|
// Only send the avatar download event to ourselves.
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if msg.Event == config.EventAvatarDownload {
|
2018-02-20 00:54:35 +01:00
|
|
|
|
if channel.ID != getChannelID(origmsg) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// do not send to ourself for any other event
|
|
|
|
|
if channel.ID == getChannelID(origmsg) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2016-09-18 19:21:15 +02:00
|
|
|
|
}
|
2018-11-08 20:45:40 +01:00
|
|
|
|
|
|
|
|
|
// Too noisy to log like other events
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if msg.Event != config.EventUserTyping {
|
2018-11-08 20:45:40 +01:00
|
|
|
|
flog.Debugf("=> Sending %#v from %s (%s) to %s (%s)", msg, msg.Account, originchannel, dest.Account, channel.Name)
|
|
|
|
|
}
|
2018-11-07 09:14:31 +01:00
|
|
|
|
|
2017-03-28 23:56:58 +02:00
|
|
|
|
msg.Channel = channel.Name
|
2017-07-21 17:04:03 +02:00
|
|
|
|
msg.Avatar = gw.modifyAvatar(origmsg, dest)
|
|
|
|
|
msg.Username = gw.modifyUsername(origmsg, dest)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
|
2018-11-19 21:28:23 +01:00
|
|
|
|
msg.ID = gw.getDestMsgID(origmsg.Protocol+" "+origmsg.ID, dest, channel)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
|
2017-02-18 23:10:22 +01:00
|
|
|
|
// for api we need originchannel as channel
|
2018-11-08 22:20:03 +01:00
|
|
|
|
if dest.Protocol == apiProtocol {
|
2017-02-18 23:10:22 +01:00
|
|
|
|
msg.Channel = originchannel
|
|
|
|
|
}
|
2018-11-07 09:14:31 +01:00
|
|
|
|
|
2018-11-19 21:28:23 +01:00
|
|
|
|
msg.ParentID = gw.getDestMsgID(origmsg.Protocol+" "+canonicalParentMsgID, dest, channel)
|
2018-11-07 09:14:31 +01:00
|
|
|
|
if msg.ParentID == "" {
|
2018-11-07 20:36:50 +01:00
|
|
|
|
msg.ParentID = canonicalParentMsgID
|
2018-11-07 09:14:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-11 21:56:12 +01:00
|
|
|
|
// if we are using mattermost plugin account, send messages to MattermostPlugin channel
|
|
|
|
|
// that can be picked up by the mattermost matterbridge plugin
|
|
|
|
|
if dest.Account == "mattermost.plugin" {
|
|
|
|
|
gw.Router.MattermostPlugin <- msg
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:33:17 +02:00
|
|
|
|
mID, err := dest.Send(msg)
|
2016-10-08 21:57:03 +02:00
|
|
|
|
if err != nil {
|
2018-02-25 00:39:24 +01:00
|
|
|
|
flog.Error(err)
|
2016-10-08 21:57:03 +02:00
|
|
|
|
}
|
2018-11-07 09:14:31 +01:00
|
|
|
|
|
2017-08-28 00:33:17 +02:00
|
|
|
|
// append the message ID (mID) from this bridge (dest) to our brMsgIDs slice
|
2017-08-29 20:28:44 +02:00
|
|
|
|
if mID != "" {
|
2018-02-28 22:23:29 +01:00
|
|
|
|
flog.Debugf("mID %s: %s", dest.Account, mID)
|
2018-11-19 21:28:23 +01:00
|
|
|
|
brMsgIDs = append(brMsgIDs, &BrMsgID{dest, dest.Protocol + " " + mID, channel.ID})
|
2017-08-29 20:28:44 +02:00
|
|
|
|
}
|
2016-09-18 19:21:15 +02:00
|
|
|
|
}
|
2017-08-28 00:33:17 +02:00
|
|
|
|
return brMsgIDs
|
2016-09-18 19:21:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (gw *Gateway) ignoreMessage(msg *config.Message) bool {
|
2017-07-30 16:09:05 +02:00
|
|
|
|
// if we don't have the bridge, ignore it
|
|
|
|
|
if _, ok := gw.Bridges[msg.Account]; !ok {
|
2017-07-25 20:11:52 +02:00
|
|
|
|
return true
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
|
|
|
|
// check if we need to ignore a empty message
|
2017-03-02 23:51:19 +01:00
|
|
|
|
if msg.Text == "" {
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if msg.Event == config.EventUserTyping {
|
2018-11-08 20:45:40 +01:00
|
|
|
|
return false
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
// we have an attachment or actual bytes, do not ignore
|
2018-02-03 01:11:11 +01:00
|
|
|
|
if msg.Extra != nil &&
|
|
|
|
|
(msg.Extra["attachments"] != nil ||
|
|
|
|
|
len(msg.Extra["file"]) > 0 ||
|
2018-11-15 20:43:43 +01:00
|
|
|
|
len(msg.Extra[config.EventFileFailureSize]) > 0) {
|
2017-09-18 23:51:27 +02:00
|
|
|
|
return false
|
|
|
|
|
}
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Debugf("ignoring empty message %#v from %s", msg, msg.Account)
|
2017-03-02 23:51:19 +01:00
|
|
|
|
return true
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
|
|
|
|
// is the username in IgnoreNicks field
|
2018-03-04 23:52:14 +01:00
|
|
|
|
for _, entry := range strings.Fields(gw.Bridges[msg.Account].GetString("IgnoreNicks")) {
|
2016-09-18 19:21:15 +02:00
|
|
|
|
if msg.Username == entry {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Debugf("ignoring %s from %s", msg.Username, msg.Account)
|
2016-09-18 19:21:15 +02:00
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
|
|
|
|
// does the message match regex in IgnoreMessages field
|
2017-06-18 01:08:11 +02:00
|
|
|
|
// TODO do not compile regexps everytime
|
2018-03-04 23:52:14 +01:00
|
|
|
|
for _, entry := range strings.Fields(gw.Bridges[msg.Account].GetString("IgnoreMessages")) {
|
2017-06-18 01:08:11 +02:00
|
|
|
|
if entry != "" {
|
|
|
|
|
re, err := regexp.Compile(entry)
|
|
|
|
|
if err != nil {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Errorf("incorrect regexp %s for %s", entry, msg.Account)
|
2017-06-18 01:08:11 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if re.MatchString(msg.Text) {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Debugf("matching %s. ignoring %s from %s", entry, msg.Text, msg.Account)
|
2017-06-18 01:08:11 +02:00
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-18 19:21:15 +02:00
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 17:04:03 +02:00
|
|
|
|
func (gw *Gateway) modifyUsername(msg config.Message, dest *bridge.Bridge) string {
|
2016-11-13 23:06:37 +01:00
|
|
|
|
br := gw.Bridges[msg.Account]
|
2017-02-18 23:10:22 +01:00
|
|
|
|
msg.Protocol = br.Protocol
|
2018-12-01 00:24:07 +01:00
|
|
|
|
if dest.GetBool("StripNick") {
|
2017-10-27 00:07:33 +02:00
|
|
|
|
re := regexp.MustCompile("[^a-zA-Z0-9]+")
|
|
|
|
|
msg.Username = re.ReplaceAllString(msg.Username, "")
|
|
|
|
|
}
|
2018-03-04 23:52:14 +01:00
|
|
|
|
nick := dest.GetString("RemoteNickFormat")
|
2017-11-20 23:27:27 +01:00
|
|
|
|
|
|
|
|
|
// loop to replace nicks
|
2018-03-04 23:52:14 +01:00
|
|
|
|
for _, outer := range br.GetStringSlice2D("ReplaceNicks") {
|
2017-11-20 23:27:27 +01:00
|
|
|
|
search := outer[0]
|
|
|
|
|
replace := outer[1]
|
|
|
|
|
// TODO move compile to bridge init somewhere
|
|
|
|
|
re, err := regexp.Compile(search)
|
|
|
|
|
if err != nil {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Errorf("regexp in %s failed: %s", msg.Account, err)
|
2017-11-20 23:27:27 +01:00
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
msg.Username = re.ReplaceAllString(msg.Username, replace)
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-07 23:54:50 +02:00
|
|
|
|
if len(msg.Username) > 0 {
|
2017-06-15 00:07:12 +02:00
|
|
|
|
// fix utf-8 issue #193
|
|
|
|
|
i := 0
|
|
|
|
|
for index := range msg.Username {
|
|
|
|
|
if i == 1 {
|
|
|
|
|
i = index
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
i++
|
|
|
|
|
}
|
|
|
|
|
nick = strings.Replace(nick, "{NOPINGNICK}", msg.Username[:i]+""+msg.Username[i:], -1)
|
2017-06-07 23:54:50 +02:00
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
2016-11-13 23:06:37 +01:00
|
|
|
|
nick = strings.Replace(nick, "{BRIDGE}", br.Name, -1)
|
|
|
|
|
nick = strings.Replace(nick, "{PROTOCOL}", br.Protocol, -1)
|
2018-10-07 15:22:15 +02:00
|
|
|
|
nick = strings.Replace(nick, "{GATEWAY}", gw.Name, -1)
|
2018-03-04 23:52:14 +01:00
|
|
|
|
nick = strings.Replace(nick, "{LABEL}", br.GetString("Label"), -1)
|
2018-01-14 16:55:32 +01:00
|
|
|
|
nick = strings.Replace(nick, "{NICK}", msg.Username, -1)
|
2018-10-23 21:53:11 +02:00
|
|
|
|
nick = strings.Replace(nick, "{CHANNEL}", msg.Channel, -1)
|
2017-07-21 17:04:03 +02:00
|
|
|
|
return nick
|
2016-11-13 23:06:37 +01:00
|
|
|
|
}
|
2017-03-28 23:56:58 +02:00
|
|
|
|
|
2017-07-21 17:04:03 +02:00
|
|
|
|
func (gw *Gateway) modifyAvatar(msg config.Message, dest *bridge.Bridge) string {
|
2018-12-01 00:24:07 +01:00
|
|
|
|
iconurl := dest.GetString("IconURL")
|
2017-04-08 00:16:46 +02:00
|
|
|
|
iconurl = strings.Replace(iconurl, "{NICK}", msg.Username, -1)
|
|
|
|
|
if msg.Avatar == "" {
|
|
|
|
|
msg.Avatar = iconurl
|
|
|
|
|
}
|
2017-07-21 17:04:03 +02:00
|
|
|
|
return msg.Avatar
|
2017-04-08 00:16:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-09 13:59:50 +02:00
|
|
|
|
func (gw *Gateway) modifyMessage(msg *config.Message) {
|
|
|
|
|
// replace :emoji: to unicode
|
|
|
|
|
msg.Text = emojilib.Replace(msg.Text)
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
2017-11-15 23:32:49 +01:00
|
|
|
|
br := gw.Bridges[msg.Account]
|
|
|
|
|
// loop to replace messages
|
2018-03-04 23:52:14 +01:00
|
|
|
|
for _, outer := range br.GetStringSlice2D("ReplaceMessages") {
|
2017-11-15 23:32:49 +01:00
|
|
|
|
search := outer[0]
|
|
|
|
|
replace := outer[1]
|
|
|
|
|
// TODO move compile to bridge init somewhere
|
|
|
|
|
re, err := regexp.Compile(search)
|
|
|
|
|
if err != nil {
|
2018-02-21 00:20:25 +01:00
|
|
|
|
flog.Errorf("regexp in %s failed: %s", msg.Account, err)
|
2017-11-15 23:32:49 +01:00
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
msg.Text = re.ReplaceAllString(msg.Text, replace)
|
|
|
|
|
}
|
2018-01-21 12:21:55 +01:00
|
|
|
|
|
|
|
|
|
// messages from api have Gateway specified, don't overwrite
|
2018-11-08 22:20:03 +01:00
|
|
|
|
if msg.Protocol != apiProtocol {
|
2018-01-21 12:21:55 +01:00
|
|
|
|
msg.Gateway = gw.Name
|
|
|
|
|
}
|
2017-07-09 13:59:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 22:30:35 +02:00
|
|
|
|
// handleFiles uploads or places all files on the given msg to the MediaServer and
|
|
|
|
|
// adds the new URL of the file on the MediaServer onto the given msg.
|
2017-11-24 22:36:19 +01:00
|
|
|
|
func (gw *Gateway) handleFiles(msg *config.Message) {
|
2018-05-06 20:32:09 +02:00
|
|
|
|
reg := regexp.MustCompile("[^a-zA-Z0-9]+")
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
|
|
|
|
// If we don't have a attachfield or we don't have a mediaserver configured return
|
2018-11-13 23:30:56 +01:00
|
|
|
|
if msg.Extra == nil ||
|
2018-11-15 20:43:43 +01:00
|
|
|
|
(gw.BridgeValues().General.MediaServerUpload == "" &&
|
|
|
|
|
gw.BridgeValues().General.MediaDownloadPath == "") {
|
2017-11-24 22:36:19 +01:00
|
|
|
|
return
|
|
|
|
|
}
|
2018-02-27 22:16:44 +01:00
|
|
|
|
|
2018-06-08 22:30:35 +02:00
|
|
|
|
// If we don't have files, nothing to upload.
|
|
|
|
|
if len(msg.Extra["file"]) == 0 {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
client := &http.Client{
|
|
|
|
|
Timeout: time.Second * 5,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for i, f := range msg.Extra["file"] {
|
|
|
|
|
fi := f.(config.FileInfo)
|
|
|
|
|
ext := filepath.Ext(fi.Name)
|
|
|
|
|
fi.Name = fi.Name[0 : len(fi.Name)-len(ext)]
|
|
|
|
|
fi.Name = reg.ReplaceAllString(fi.Name, "_")
|
2018-11-08 00:46:34 +01:00
|
|
|
|
fi.Name += ext
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
2018-12-06 00:40:55 +01:00
|
|
|
|
sha1sum := fmt.Sprintf("%x", sha1.Sum(*fi.Data))[:8] //nolint:gosec
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
2018-11-15 20:43:43 +01:00
|
|
|
|
if gw.BridgeValues().General.MediaServerUpload != "" {
|
2018-06-08 22:30:35 +02:00
|
|
|
|
// Use MediaServerUpload. Upload using a PUT HTTP request and basicauth.
|
|
|
|
|
|
2018-11-15 20:43:43 +01:00
|
|
|
|
url := gw.BridgeValues().General.MediaServerUpload + "/" + sha1sum + "/" + fi.Name
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
|
|
|
|
req, err := http.NewRequest("PUT", url, bytes.NewReader(*fi.Data))
|
2018-05-06 20:14:16 +02:00
|
|
|
|
if err != nil {
|
2018-06-08 22:30:35 +02:00
|
|
|
|
flog.Errorf("mediaserver upload failed, could not create request: %#v", err)
|
2018-05-06 20:14:16 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
|
|
|
|
flog.Debugf("mediaserver upload url: %s", url)
|
|
|
|
|
|
2017-11-24 22:36:19 +01:00
|
|
|
|
req.Header.Set("Content-Type", "binary/octet-stream")
|
2018-05-06 20:14:16 +02:00
|
|
|
|
_, err = client.Do(req)
|
2017-11-24 22:36:19 +01:00
|
|
|
|
if err != nil {
|
2018-06-08 22:30:35 +02:00
|
|
|
|
flog.Errorf("mediaserver upload failed, could not Do request: %#v", err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Use MediaServerPath. Place the file on the current filesystem.
|
|
|
|
|
|
2018-11-15 20:43:43 +01:00
|
|
|
|
dir := gw.BridgeValues().General.MediaDownloadPath + "/" + sha1sum
|
2018-06-08 22:30:35 +02:00
|
|
|
|
err := os.Mkdir(dir, os.ModePerm)
|
|
|
|
|
if err != nil && !os.IsExist(err) {
|
|
|
|
|
flog.Errorf("mediaserver path failed, could not mkdir: %s %#v", err, err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
path := dir + "/" + fi.Name
|
|
|
|
|
flog.Debugf("mediaserver path placing file: %s", path)
|
|
|
|
|
|
|
|
|
|
err = ioutil.WriteFile(path, *fi.Data, os.ModePerm)
|
|
|
|
|
if err != nil {
|
|
|
|
|
flog.Errorf("mediaserver path failed, could not writefile: %s %#v", err, err)
|
2018-02-20 00:54:35 +01:00
|
|
|
|
continue
|
2017-11-24 22:36:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
|
|
|
|
// Download URL.
|
2018-11-15 20:43:43 +01:00
|
|
|
|
durl := gw.BridgeValues().General.MediaServerDownload + "/" + sha1sum + "/" + fi.Name
|
2018-06-08 22:30:35 +02:00
|
|
|
|
|
|
|
|
|
flog.Debugf("mediaserver download URL = %s", durl)
|
|
|
|
|
|
|
|
|
|
// We uploaded/placed the file successfully. Add the SHA and URL.
|
|
|
|
|
extra := msg.Extra["file"][i].(config.FileInfo)
|
|
|
|
|
extra.URL = durl
|
|
|
|
|
extra.SHA = sha1sum
|
|
|
|
|
msg.Extra["file"][i] = extra
|
2017-11-24 22:36:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-08 00:29:30 +01:00
|
|
|
|
func (gw *Gateway) validGatewayDest(msg *config.Message) bool {
|
2017-07-25 20:11:52 +02:00
|
|
|
|
return msg.Gateway == gw.Name
|
2017-04-01 17:24:19 +02:00
|
|
|
|
}
|
2017-06-15 00:40:23 +02:00
|
|
|
|
|
2018-02-27 22:16:44 +01:00
|
|
|
|
func getChannelID(msg config.Message) string {
|
|
|
|
|
return msg.Channel + msg.Account
|
2017-06-15 00:40:23 +02:00
|
|
|
|
}
|
2018-02-27 00:33:21 +01:00
|
|
|
|
|
2018-11-15 20:43:43 +01:00
|
|
|
|
func isAPI(account string) bool {
|
2018-02-27 22:16:44 +01:00
|
|
|
|
return strings.HasPrefix(account, "api.")
|
|
|
|
|
}
|