2019-05-31 10:07:40 +02:00
|
|
|
package threema
|
|
|
|
|
2019-05-31 13:53:44 +02:00
|
|
|
import (
|
2019-05-31 14:36:18 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/bdlm/log"
|
2019-05-31 13:53:44 +02:00
|
|
|
"gosrc.io/xmpp"
|
2019-05-31 14:36:18 +02:00
|
|
|
|
2019-05-31 19:39:29 +02:00
|
|
|
"dev.sum7.eu/genofire/golang-lib/database"
|
|
|
|
|
2019-05-31 14:36:18 +02:00
|
|
|
"dev.sum7.eu/genofire/thrempp/component"
|
2019-05-31 18:26:15 +02:00
|
|
|
"dev.sum7.eu/genofire/thrempp/models"
|
2019-05-31 13:53:44 +02:00
|
|
|
)
|
2019-05-31 10:07:40 +02:00
|
|
|
|
|
|
|
type Threema struct {
|
|
|
|
component.Component
|
2019-05-31 18:26:15 +02:00
|
|
|
out chan xmpp.Packet
|
|
|
|
accountJID map[string]*Account
|
2019-06-01 19:26:03 +02:00
|
|
|
bot map[string]*Bot
|
2019-05-31 10:07:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewThreema(config map[string]interface{}) (component.Component, error) {
|
2019-05-31 19:39:29 +02:00
|
|
|
return &Threema{
|
2019-05-31 18:26:15 +02:00
|
|
|
out: make(chan xmpp.Packet),
|
|
|
|
accountJID: make(map[string]*Account),
|
2019-06-01 19:26:03 +02:00
|
|
|
bot: make(map[string]*Bot),
|
2019-05-31 19:39:29 +02:00
|
|
|
}, nil
|
2019-05-31 10:07:40 +02:00
|
|
|
}
|
|
|
|
|
2019-05-31 13:53:44 +02:00
|
|
|
func (t *Threema) Connect() (chan xmpp.Packet, error) {
|
2019-05-31 19:39:29 +02:00
|
|
|
var jids []*models.JID
|
|
|
|
database.Read.Find(&jids)
|
|
|
|
for _, jid := range jids {
|
2019-06-01 15:21:49 +02:00
|
|
|
logger := log.WithField("jid", jid.String())
|
|
|
|
a, err := t.getAccount(jid)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("unable to connect%s", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
logger = logger.WithField("threema", string(a.TID))
|
|
|
|
logger.Info("connected")
|
2019-05-31 19:39:29 +02:00
|
|
|
}
|
2019-05-31 14:36:18 +02:00
|
|
|
return t.out, nil
|
|
|
|
}
|
|
|
|
func (t *Threema) Send(packet xmpp.Packet) {
|
2019-06-01 15:21:49 +02:00
|
|
|
if p := t.send(packet); p != nil {
|
|
|
|
t.out <- p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (t *Threema) send(packet xmpp.Packet) xmpp.Packet {
|
2019-05-31 14:36:18 +02:00
|
|
|
switch p := packet.(type) {
|
|
|
|
case xmpp.Message:
|
2019-05-31 18:26:15 +02:00
|
|
|
from := models.ParseJID(p.PacketAttrs.From)
|
|
|
|
to := models.ParseJID(p.PacketAttrs.To)
|
|
|
|
|
|
|
|
if to.IsDomain() {
|
2019-06-01 19:26:03 +02:00
|
|
|
if from == nil {
|
|
|
|
log.Warn("recieve message without sender")
|
|
|
|
return nil
|
|
|
|
}
|
2019-05-31 18:26:15 +02:00
|
|
|
msg := xmpp.NewMessage("chat", "", from.String(), "", "en")
|
2019-06-01 19:26:03 +02:00
|
|
|
msg.Body = t.getBot(from).Handle(p.Body)
|
2019-06-01 15:21:49 +02:00
|
|
|
return msg
|
2019-05-31 18:26:15 +02:00
|
|
|
}
|
|
|
|
|
2019-06-01 15:21:49 +02:00
|
|
|
account, err := t.getAccount(from)
|
|
|
|
if err != nil {
|
2019-05-31 18:26:15 +02:00
|
|
|
msg := xmpp.NewMessage("chat", "", from.String(), "", "en")
|
|
|
|
msg.Body = "It was not possible to send, becouse we have no account for you.\nPlease generate one, by sending `generate` to this gateway"
|
2019-06-01 15:21:49 +02:00
|
|
|
return msg
|
2019-05-31 18:26:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
threemaID := strings.ToUpper(to.Local)
|
2019-06-01 01:43:48 +02:00
|
|
|
if err := account.Send(threemaID, p); err != nil {
|
2019-05-31 18:26:15 +02:00
|
|
|
msg := xmpp.NewMessage("chat", "", from.String(), "", "en")
|
2019-05-31 14:36:18 +02:00
|
|
|
msg.Body = err.Error()
|
2019-06-01 15:21:49 +02:00
|
|
|
return msg
|
2019-05-31 14:36:18 +02:00
|
|
|
}
|
|
|
|
default:
|
2019-06-01 19:26:03 +02:00
|
|
|
log.Warnf("unkown package: %v", p)
|
2019-05-31 14:36:18 +02:00
|
|
|
}
|
2019-06-01 15:21:49 +02:00
|
|
|
return nil
|
2019-05-31 13:53:44 +02:00
|
|
|
}
|
|
|
|
|
2019-05-31 10:07:40 +02:00
|
|
|
func init() {
|
|
|
|
component.AddComponent("threema", NewThreema)
|
|
|
|
}
|