5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00
matterbridge/bridge/bridge.go

110 lines
2.3 KiB
Go
Raw Normal View History

2016-07-11 19:23:33 +00:00
package bridge
import (
"github.com/42wim/matterbridge/bridge/config"
2018-02-20 22:41:09 +00:00
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) (string, error)
Connect() error
JoinChannel(channel config.ChannelInfo) error
Disconnect() error
2016-07-11 19:23:33 +00:00
}
2016-11-13 22:06:37 +00:00
type Bridge struct {
Bridger
2017-03-28 21:56:58 +00:00
Name string
Account string
Protocol string
Channels map[string]config.ChannelInfo
Joined map[string]bool
2018-02-26 23:33:21 +00:00
Log *log.Entry
Config config.Config
General *config.Protocol
}
type Config struct {
// General *config.Protocol
Remote chan config.Message
Log *log.Entry
*Bridge
2016-11-13 22:06:37 +00:00
}
2018-02-26 23:33:21 +00:00
// Factory is the factory function to create a bridge
type Factory func(*Config) Bridger
2018-02-26 23:33:21 +00:00
func New(bridge *config.Bridge) *Bridge {
2016-11-13 22:06:37 +00:00
b := new(Bridge)
2017-03-28 21:56:58 +00:00
b.Channels = make(map[string]config.ChannelInfo)
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
b.Joined = make(map[string]bool)
2016-11-13 22:06:37 +00:00
return b
2016-08-15 22:08:38 +00:00
}
func (b *Bridge) JoinChannels() error {
err := b.joinChannels(b.Channels, b.Joined)
2017-07-13 22:35:01 +00:00
return err
}
2017-03-28 21:56:58 +00: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 23:33:21 +00: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 21:56:58 +00:00
exists[ID] = true
}
}
return nil
}
func (b *Bridge) GetBool(key string) bool {
val, ok := b.Config.GetBool(b.Account + "." + key)
if !ok {
val, _ = b.Config.GetBool("general." + key)
}
return val
}
func (b *Bridge) GetInt(key string) int {
val, ok := b.Config.GetInt(b.Account + "." + key)
if !ok {
val, _ = b.Config.GetInt("general." + key)
}
return val
}
func (b *Bridge) GetString(key string) string {
val, ok := b.Config.GetString(b.Account + "." + key)
if !ok {
val, _ = b.Config.GetString("general." + key)
}
return val
}
func (b *Bridge) GetStringSlice(key string) []string {
val, ok := b.Config.GetStringSlice(b.Account + "." + key)
if !ok {
val, _ = b.Config.GetStringSlice("general." + key)
}
return val
}
func (b *Bridge) GetStringSlice2D(key string) [][]string {
val, ok := b.Config.GetStringSlice2D(b.Account + "." + key)
if !ok {
val, _ = b.Config.GetStringSlice2D("general." + key)
}
return val
}