2016-08-14 19:48:51 +00:00
|
|
|
package bxmpp
|
|
|
|
|
|
|
|
import (
|
2017-02-14 20:12:02 +00:00
|
|
|
"crypto/tls"
|
2016-08-14 19:48:51 +00:00
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
2017-07-20 21:16:43 +00:00
|
|
|
"github.com/jpillora/backoff"
|
2016-08-14 19:48:51 +00:00
|
|
|
"github.com/mattn/go-xmpp"
|
|
|
|
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Bxmpp struct {
|
2016-11-13 22:06:37 +00:00
|
|
|
xc *xmpp.Client
|
|
|
|
xmppMap map[string]string
|
2017-12-19 22:15:03 +00:00
|
|
|
*config.BridgeConfig
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 17:21:15 +00:00
|
|
|
var flog *log.Entry
|
|
|
|
var protocol = "xmpp"
|
2016-08-14 19:48:51 +00:00
|
|
|
|
|
|
|
func init() {
|
2016-09-18 17:21:15 +00:00
|
|
|
flog = log.WithFields(log.Fields{"module": protocol})
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 22:15:03 +00:00
|
|
|
func New(cfg *config.BridgeConfig) *Bxmpp {
|
|
|
|
b := &Bxmpp{BridgeConfig: cfg}
|
2016-08-14 19:48:51 +00:00
|
|
|
b.xmppMap = make(map[string]string)
|
2016-08-15 21:16:07 +00:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bxmpp) Connect() error {
|
|
|
|
var err error
|
2016-09-19 22:03:01 +00:00
|
|
|
flog.Infof("Connecting %s", b.Config.Server)
|
2016-08-14 19:48:51 +00:00
|
|
|
b.xc, err = b.createXMPP()
|
|
|
|
if err != nil {
|
2016-09-18 17:21:15 +00:00
|
|
|
flog.Debugf("%#v", err)
|
2016-08-15 21:16:07 +00:00
|
|
|
return err
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
2016-09-18 17:21:15 +00:00
|
|
|
flog.Info("Connection succeeded")
|
2017-07-20 21:16:43 +00:00
|
|
|
go func() {
|
|
|
|
initial := true
|
|
|
|
bf := &backoff.Backoff{
|
|
|
|
Min: time.Second,
|
|
|
|
Max: 5 * time.Minute,
|
|
|
|
Jitter: true,
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
if initial {
|
|
|
|
b.handleXmpp()
|
|
|
|
initial = false
|
|
|
|
}
|
|
|
|
d := bf.Duration()
|
|
|
|
flog.Infof("Disconnected. Reconnecting in %s", d)
|
|
|
|
time.Sleep(d)
|
|
|
|
b.xc, err = b.createXMPP()
|
|
|
|
if err == nil {
|
|
|
|
b.Remote <- config.Message{Username: "system", Text: "rejoin", Channel: "", Account: b.Account, Event: config.EVENT_REJOIN_CHANNELS}
|
|
|
|
b.handleXmpp()
|
|
|
|
bf.Reset()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2016-08-15 21:16:07 +00:00
|
|
|
return nil
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 20:12:02 +00:00
|
|
|
func (b *Bxmpp) Disconnect() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-12 12:51:41 +00:00
|
|
|
func (b *Bxmpp) JoinChannel(channel config.ChannelInfo) error {
|
|
|
|
b.xc.JoinMUCNoHistory(channel.Name+"@"+b.Config.Muc, b.Config.Nick)
|
2016-09-18 17:21:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-27 20:59:37 +00:00
|
|
|
func (b *Bxmpp) Send(msg config.Message) (string, error) {
|
2017-09-11 20:45:15 +00:00
|
|
|
// ignore delete messages
|
|
|
|
if msg.Event == config.EVENT_MSG_DELETE {
|
|
|
|
return "", nil
|
|
|
|
}
|
2016-09-19 22:03:01 +00:00
|
|
|
flog.Debugf("Receiving %#v", msg)
|
2017-11-24 21:55:24 +00:00
|
|
|
if msg.Extra != nil {
|
|
|
|
if len(msg.Extra["file"]) > 0 {
|
|
|
|
for _, f := range msg.Extra["file"] {
|
|
|
|
fi := f.(config.FileInfo)
|
|
|
|
if fi.URL != "" {
|
|
|
|
msg.Text = fi.URL
|
|
|
|
}
|
|
|
|
b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.Config.Muc, Text: msg.Username + msg.Text})
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-13 22:06:37 +00:00
|
|
|
b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.Config.Muc, Text: msg.Username + msg.Text})
|
2017-08-27 20:59:37 +00:00
|
|
|
return "", nil
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bxmpp) createXMPP() (*xmpp.Client, error) {
|
2017-01-13 23:35:45 +00:00
|
|
|
tc := new(tls.Config)
|
|
|
|
tc.InsecureSkipVerify = b.Config.SkipTLSVerify
|
2017-01-18 20:01:42 +00:00
|
|
|
tc.ServerName = strings.Split(b.Config.Server, ":")[0]
|
2016-08-14 19:48:51 +00:00
|
|
|
options := xmpp.Options{
|
2017-02-14 20:12:02 +00:00
|
|
|
Host: b.Config.Server,
|
|
|
|
User: b.Config.Jid,
|
|
|
|
Password: b.Config.Password,
|
|
|
|
NoTLS: true,
|
|
|
|
StartTLS: true,
|
2017-01-13 23:35:45 +00:00
|
|
|
TLSConfig: tc,
|
|
|
|
|
2016-08-14 19:48:51 +00:00
|
|
|
//StartTLS: false,
|
|
|
|
Debug: true,
|
|
|
|
Session: true,
|
|
|
|
Status: "",
|
|
|
|
StatusMessage: "",
|
|
|
|
Resource: "",
|
|
|
|
InsecureAllowUnencryptedAuth: false,
|
|
|
|
//InsecureAllowUnencryptedAuth: true,
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
b.xc, err = options.NewClient()
|
|
|
|
return b.xc, err
|
|
|
|
}
|
|
|
|
|
2016-11-26 14:02:39 +00:00
|
|
|
func (b *Bxmpp) xmppKeepAlive() chan bool {
|
|
|
|
done := make(chan bool)
|
2016-08-14 19:48:51 +00:00
|
|
|
go func() {
|
|
|
|
ticker := time.NewTicker(90 * time.Second)
|
2016-11-26 14:02:39 +00:00
|
|
|
defer ticker.Stop()
|
2016-08-14 19:48:51 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
2017-07-20 21:16:43 +00:00
|
|
|
flog.Debugf("PING")
|
|
|
|
err := b.xc.PingC2S("", "")
|
|
|
|
if err != nil {
|
|
|
|
flog.Debugf("PING failed %#v", err)
|
|
|
|
}
|
2016-11-26 14:02:39 +00:00
|
|
|
case <-done:
|
|
|
|
return
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2016-11-26 14:02:39 +00:00
|
|
|
return done
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bxmpp) handleXmpp() error {
|
2017-07-30 15:48:23 +00:00
|
|
|
var ok bool
|
2016-11-26 14:02:39 +00:00
|
|
|
done := b.xmppKeepAlive()
|
|
|
|
defer close(done)
|
2016-11-26 14:06:05 +00:00
|
|
|
nodelay := time.Time{}
|
2016-08-14 19:48:51 +00:00
|
|
|
for {
|
|
|
|
m, err := b.xc.Recv()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch v := m.(type) {
|
|
|
|
case xmpp.Chat:
|
|
|
|
var channel, nick string
|
|
|
|
if v.Type == "groupchat" {
|
|
|
|
s := strings.Split(v.Remote, "@")
|
2017-05-11 18:10:53 +00:00
|
|
|
if len(s) >= 2 {
|
2016-08-14 19:48:51 +00:00
|
|
|
channel = s[0]
|
|
|
|
}
|
|
|
|
s = strings.Split(s[1], "/")
|
|
|
|
if len(s) == 2 {
|
|
|
|
nick = s[1]
|
|
|
|
}
|
2016-11-26 14:06:05 +00:00
|
|
|
if nick != b.Config.Nick && v.Stamp == nodelay && v.Text != "" {
|
2017-07-30 15:48:23 +00:00
|
|
|
rmsg := config.Message{Username: nick, Text: v.Text, Channel: channel, Account: b.Account, UserID: v.Remote}
|
|
|
|
rmsg.Text, ok = b.replaceAction(rmsg.Text)
|
|
|
|
if ok {
|
|
|
|
rmsg.Event = config.EVENT_USER_ACTION
|
|
|
|
}
|
2016-11-13 22:06:37 +00:00
|
|
|
flog.Debugf("Sending message from %s on %s to gateway", nick, b.Account)
|
2017-07-30 15:48:23 +00:00
|
|
|
b.Remote <- rmsg
|
2016-08-14 19:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case xmpp.Presence:
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-30 15:48:23 +00:00
|
|
|
|
|
|
|
func (b *Bxmpp) replaceAction(text string) (string, bool) {
|
|
|
|
if strings.HasPrefix(text, "/me ") {
|
|
|
|
return strings.Replace(text, "/me ", "", -1), true
|
|
|
|
}
|
|
|
|
return text, false
|
|
|
|
}
|