mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-22 14:00:27 +00:00
Add samechannel gateway. See #35
This commit is contained in:
parent
0e527a4252
commit
fff6f08cb6
@ -56,6 +56,13 @@ type Gateway struct {
|
|||||||
Out []Bridge
|
Out []Bridge
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SameChannelGateway struct {
|
||||||
|
Name string
|
||||||
|
Enable bool
|
||||||
|
Channels []string
|
||||||
|
Accounts []string
|
||||||
|
}
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
IRC map[string]Protocol
|
IRC map[string]Protocol
|
||||||
Mattermost map[string]Protocol
|
Mattermost map[string]Protocol
|
||||||
@ -64,6 +71,7 @@ type Config struct {
|
|||||||
Xmpp map[string]Protocol
|
Xmpp map[string]Protocol
|
||||||
Discord map[string]Protocol
|
Discord map[string]Protocol
|
||||||
Gateway []Gateway
|
Gateway []Gateway
|
||||||
|
SameChannelGateway []SameChannelGateway
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewConfig(cfgfile string) *Config {
|
func NewConfig(cfgfile string) *Config {
|
||||||
|
84
gateway/samechannel/samechannel.go
Normal file
84
gateway/samechannel/samechannel.go
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
package samechannelgateway
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/42wim/matterbridge/bridge"
|
||||||
|
"github.com/42wim/matterbridge/bridge/config"
|
||||||
|
log "github.com/Sirupsen/logrus"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SameChannelGateway struct {
|
||||||
|
*config.Config
|
||||||
|
MyConfig *config.SameChannelGateway
|
||||||
|
Bridges []bridge.Bridge
|
||||||
|
Channels []string
|
||||||
|
ignoreNicks map[string][]string
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
func New(cfg *config.Config, gateway *config.SameChannelGateway) error {
|
||||||
|
c := make(chan config.Message)
|
||||||
|
gw := &SameChannelGateway{}
|
||||||
|
gw.Name = gateway.Name
|
||||||
|
gw.Config = cfg
|
||||||
|
gw.MyConfig = gateway
|
||||||
|
gw.Channels = gateway.Channels
|
||||||
|
for _, account := range gateway.Accounts {
|
||||||
|
br := config.Bridge{Account: account}
|
||||||
|
log.Infof("Starting bridge: %s", account)
|
||||||
|
gw.Bridges = append(gw.Bridges, bridge.New(cfg, &br, c))
|
||||||
|
}
|
||||||
|
for _, br := range gw.Bridges {
|
||||||
|
br.Connect()
|
||||||
|
for _, channel := range gw.Channels {
|
||||||
|
log.Infof("%s: joining %s", br.FullOrigin(), channel)
|
||||||
|
br.JoinChannel(channel)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
gw.handleReceive(c)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gw *SameChannelGateway) handleReceive(c chan config.Message) {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case msg := <-c:
|
||||||
|
for _, br := range gw.Bridges {
|
||||||
|
gw.handleMessage(msg, br)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gw *SameChannelGateway) handleMessage(msg config.Message, dest bridge.Bridge) {
|
||||||
|
// do not send the message to the bridge we come from if also the channel is the same
|
||||||
|
if msg.FullOrigin == dest.FullOrigin() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
gw.modifyMessage(&msg, dest)
|
||||||
|
log.Debugf("Sending %#v from %s to %s", msg, msg.FullOrigin, dest.FullOrigin())
|
||||||
|
dest.Send(msg)
|
||||||
|
}
|
||||||
|
|
||||||
|
func setNickFormat(msg *config.Message, format string) {
|
||||||
|
if format == "" {
|
||||||
|
msg.Username = msg.Protocol + "." + msg.Origin + "-" + msg.Username + ": "
|
||||||
|
return
|
||||||
|
}
|
||||||
|
msg.Username = strings.Replace(format, "{NICK}", msg.Username, -1)
|
||||||
|
msg.Username = strings.Replace(msg.Username, "{BRIDGE}", msg.Origin, -1)
|
||||||
|
msg.Username = strings.Replace(msg.Username, "{PROTOCOL}", msg.Protocol, -1)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gw *SameChannelGateway) modifyMessage(msg *config.Message, dest bridge.Bridge) {
|
||||||
|
switch dest.Protocol() {
|
||||||
|
case "irc":
|
||||||
|
setNickFormat(msg, gw.Config.IRC[dest.Origin()].RemoteNickFormat)
|
||||||
|
case "mattermost":
|
||||||
|
setNickFormat(msg, gw.Config.Mattermost[dest.Origin()].RemoteNickFormat)
|
||||||
|
case "slack":
|
||||||
|
setNickFormat(msg, gw.Config.Slack[dest.Origin()].RemoteNickFormat)
|
||||||
|
case "discord":
|
||||||
|
setNickFormat(msg, gw.Config.Discord[dest.Origin()].RemoteNickFormat)
|
||||||
|
}
|
||||||
|
}
|
@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/42wim/matterbridge/bridge/config"
|
"github.com/42wim/matterbridge/bridge/config"
|
||||||
"github.com/42wim/matterbridge/gateway"
|
"github.com/42wim/matterbridge/gateway"
|
||||||
|
"github.com/42wim/matterbridge/gateway/samechannel"
|
||||||
log "github.com/Sirupsen/logrus"
|
log "github.com/Sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -30,6 +31,19 @@ func main() {
|
|||||||
}
|
}
|
||||||
fmt.Println("running version", version)
|
fmt.Println("running version", version)
|
||||||
cfg := config.NewConfig(*flagConfig)
|
cfg := config.NewConfig(*flagConfig)
|
||||||
|
for _, gw := range cfg.SameChannelGateway {
|
||||||
|
if !gw.Enable {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
fmt.Printf("starting samechannel gateway %#v\n", gw.Name)
|
||||||
|
go func(gw config.SameChannelGateway) {
|
||||||
|
err := samechannelgateway.New(cfg, &gw)
|
||||||
|
if err != nil {
|
||||||
|
log.Debugf("starting gateway failed %#v", err)
|
||||||
|
}
|
||||||
|
}(gw)
|
||||||
|
}
|
||||||
|
|
||||||
for _, gw := range cfg.Gateway {
|
for _, gw := range cfg.Gateway {
|
||||||
if !gw.Enable {
|
if !gw.Enable {
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user