mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40:27 +00:00
921f2dfcdf
* initial work on native keybase bridging * Hopefully make a functional keybase bridge * add keybase to bridgemap * send to right channel, try to figure out received msgs * add account and userid * i am a Dam Fool * Fix formatting for messages, handle /me * update vendors, ran golint and goimports * move handlers to handlers.go, clean up unused config options * add sample config, fix inconsistent remote nick handling * Update readme with keybase links * Resolve fixmie errors * Error -> Errorf * fix linting errors in go.mod and go.sum * explicitly join channels, ignore messages from non-specified channels * check that team names match before bridging message
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
package bkeybase
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/42wim/matterbridge/bridge"
|
|
"github.com/42wim/matterbridge/bridge/config"
|
|
"github.com/keybase/go-keybase-chat-bot/kbchat"
|
|
)
|
|
|
|
// Bkeybase bridge structure
|
|
type Bkeybase struct {
|
|
kbc *kbchat.API
|
|
user string
|
|
channel string
|
|
team string
|
|
*bridge.Config
|
|
}
|
|
|
|
// New initializes Bkeybase object and sets team
|
|
func New(cfg *bridge.Config) bridge.Bridger {
|
|
b := &Bkeybase{Config: cfg}
|
|
b.team = b.Config.GetString("Team")
|
|
return b
|
|
}
|
|
|
|
// Connect starts keybase API and listener loop
|
|
func (b *Bkeybase) Connect() error {
|
|
var err error
|
|
b.Log.Infof("Connecting %s", b.GetString("Team"))
|
|
|
|
// use default keybase location (`keybase`)
|
|
b.kbc, err = kbchat.Start(kbchat.RunOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
b.user = b.kbc.GetUsername()
|
|
b.Log.Info("Connection succeeded")
|
|
go b.handleKeybase()
|
|
return nil
|
|
}
|
|
|
|
// Disconnect doesn't do anything for now
|
|
func (b *Bkeybase) Disconnect() error {
|
|
return nil
|
|
}
|
|
|
|
// JoinChannel sets channel name in struct
|
|
func (b *Bkeybase) JoinChannel(channel config.ChannelInfo) error {
|
|
if _, err := b.kbc.JoinChannel(b.team, channel.Name); err != nil {
|
|
return err
|
|
}
|
|
b.channel = channel.Name
|
|
return nil
|
|
}
|
|
|
|
// Send receives bridge messages and sends them to Keybase chat room
|
|
func (b *Bkeybase) Send(msg config.Message) (string, error) {
|
|
b.Log.Debugf("=> Receiving %#v", msg)
|
|
|
|
// Handle /me events
|
|
if msg.Event == config.EventUserAction {
|
|
msg.Text = "_" + msg.Text + "_"
|
|
}
|
|
|
|
// Delete message if we have an ID
|
|
// Delete message not supported by keybase go library yet
|
|
|
|
// Upload a file if it exists
|
|
// kbchat lib does not support attachments yet
|
|
|
|
// Edit message if we have an ID
|
|
// kbchat lib does not support message editing yet
|
|
|
|
// Send regular message
|
|
resp, err := b.kbc.SendMessageByTeamName(b.team, msg.Username+msg.Text, &b.channel)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return strconv.Itoa(resp.Result.MsgID), err
|
|
}
|