matterbridge/bridge/bridge.go

62 lines
1.3 KiB
Go
Raw Normal View History

2016-07-11 12:23:33 -07:00
package bridge
import (
"github.com/42wim/matterbridge/bridge/config"
2018-02-20 14:41:09 -08:00
log "github.com/sirupsen/logrus"
2016-07-11 12:23:33 -07:00
"strings"
)
2016-11-13 14:06:37 -08:00
type Bridger interface {
Send(msg config.Message) (string, error)
Connect() error
JoinChannel(channel config.ChannelInfo) error
Disconnect() error
2016-07-11 12:23:33 -07:00
}
2016-11-13 14:06:37 -08:00
type Bridge struct {
Config config.Protocol
Bridger
2017-03-28 14:56:58 -07:00
Name string
Account string
Protocol string
Channels map[string]config.ChannelInfo
Joined map[string]bool
2018-02-26 15:33:21 -08:00
Log *log.Entry
2016-11-13 14:06:37 -08:00
}
2018-02-26 15:33:21 -08:00
// Factory is the factory function to create a bridge
type Factory func(*config.BridgeConfig) Bridger
2018-02-26 15:33:21 -08:00
func New(bridge *config.Bridge) *Bridge {
2016-11-13 14:06:37 -08:00
b := new(Bridge)
2017-03-28 14:56:58 -07:00
b.Channels = make(map[string]config.ChannelInfo)
accInfo := strings.Split(bridge.Account, ".")
protocol := accInfo[0]
name := accInfo[1]
2016-11-13 14:06:37 -08:00
b.Name = name
b.Protocol = protocol
b.Account = bridge.Account
b.Joined = make(map[string]bool)
2016-11-13 14:06:37 -08:00
return b
2016-08-15 15:08:38 -07:00
}
func (b *Bridge) JoinChannels() error {
err := b.joinChannels(b.Channels, b.Joined)
2017-07-13 15:35:01 -07:00
return err
}
2017-03-28 14:56:58 -07:00
func (b *Bridge) joinChannels(channels map[string]config.ChannelInfo, exists map[string]bool) error {
for ID, channel := range channels {
if !exists[ID] {
2018-02-26 15:33:21 -08:00
b.Log.Infof("%s: joining %s (ID: %s)", b.Account, channel.Name, ID)
err := b.JoinChannel(channel)
if err != nil {
return err
}
2017-03-28 14:56:58 -07:00
exists[ID] = true
}
}
return nil
}