5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/bridge/bridge.go

100 lines
2.8 KiB
Go
Raw Normal View History

2016-07-11 19:23:33 +00:00
package bridge
import (
"github.com/42wim/matterbridge/bridge/config"
2016-09-19 18:53:26 +00:00
"github.com/42wim/matterbridge/bridge/discord"
2016-09-04 18:03:07 +00:00
"github.com/42wim/matterbridge/bridge/gitter"
"github.com/42wim/matterbridge/bridge/irc"
"github.com/42wim/matterbridge/bridge/mattermost"
2016-12-02 23:10:29 +00:00
"github.com/42wim/matterbridge/bridge/rocketchat"
2016-09-05 14:34:37 +00:00
"github.com/42wim/matterbridge/bridge/slack"
2016-11-15 22:15:57 +00:00
"github.com/42wim/matterbridge/bridge/telegram"
"github.com/42wim/matterbridge/bridge/xmpp"
log "github.com/Sirupsen/logrus"
2016-07-11 19:23:33 +00:00
"strings"
)
2016-11-13 22:06:37 +00:00
type Bridger interface {
Send(msg config.Message) error
Connect() error
JoinChannel(channel string) error
Disconnect() error
2016-07-11 19:23:33 +00:00
}
2016-11-13 22:06:37 +00:00
type Bridge struct {
Config config.Protocol
Bridger
Name string
Account string
Protocol string
ChannelsIn map[string]config.ChannelOptions
ChannelsOut map[string]config.ChannelOptions
2016-11-13 22:06:37 +00:00
}
func New(cfg *config.Config, bridge *config.Bridge, c chan config.Message) *Bridge {
b := new(Bridge)
b.ChannelsIn = make(map[string]config.ChannelOptions)
b.ChannelsOut = make(map[string]config.ChannelOptions)
accInfo := strings.Split(bridge.Account, ".")
protocol := accInfo[0]
name := accInfo[1]
2016-11-13 22:06:37 +00:00
b.Name = name
b.Protocol = protocol
b.Account = bridge.Account
// override config from environment
config.OverrideCfgFromEnv(cfg, protocol, name)
switch protocol {
case "mattermost":
2016-11-13 22:06:37 +00:00
b.Config = cfg.Mattermost[name]
b.Bridger = bmattermost.New(cfg.Mattermost[name], bridge.Account, c)
2016-08-15 22:08:38 +00:00
case "irc":
2016-11-13 22:06:37 +00:00
b.Config = cfg.IRC[name]
b.Bridger = birc.New(cfg.IRC[name], bridge.Account, c)
2016-09-04 18:03:07 +00:00
case "gitter":
2016-11-13 22:06:37 +00:00
b.Config = cfg.Gitter[name]
b.Bridger = bgitter.New(cfg.Gitter[name], bridge.Account, c)
2016-09-05 14:34:37 +00:00
case "slack":
2016-11-13 22:06:37 +00:00
b.Config = cfg.Slack[name]
b.Bridger = bslack.New(cfg.Slack[name], bridge.Account, c)
case "xmpp":
2016-11-13 22:06:37 +00:00
b.Config = cfg.Xmpp[name]
b.Bridger = bxmpp.New(cfg.Xmpp[name], bridge.Account, c)
2016-09-19 18:53:26 +00:00
case "discord":
2016-11-13 22:06:37 +00:00
b.Config = cfg.Discord[name]
b.Bridger = bdiscord.New(cfg.Discord[name], bridge.Account, c)
2016-11-15 22:15:57 +00:00
case "telegram":
b.Config = cfg.Telegram[name]
b.Bridger = btelegram.New(cfg.Telegram[name], bridge.Account, c)
2016-12-02 23:10:29 +00:00
case "rocketchat":
b.Config = cfg.Rocketchat[name]
b.Bridger = brocketchat.New(cfg.Rocketchat[name], bridge.Account, c)
2016-08-15 22:08:38 +00:00
}
2016-11-13 22:06:37 +00:00
return b
2016-08-15 22:08:38 +00:00
}
func (b *Bridge) JoinChannels() error {
exists := make(map[string]bool)
b.joinChannels(b.ChannelsIn, exists)
b.joinChannels(b.ChannelsOut, exists)
return nil
}
func (b *Bridge) joinChannels(cMap map[string]config.ChannelOptions, exists map[string]bool) error {
mychannel := ""
for channel, info := range cMap {
if !exists[channel] {
mychannel = channel
log.Infof("%s: joining %s", b.Account, channel)
if b.Protocol == "irc" && info.Key != "" {
log.Debugf("using key %s for channel %s", info.Key, channel)
mychannel = mychannel + " " + info.Key
}
b.JoinChannel(mychannel)
exists[channel] = true
}
}
return nil
}