2019-05-31 14:36:18 +02:00
|
|
|
package threema
|
|
|
|
|
2019-05-31 18:26:15 +02:00
|
|
|
import (
|
|
|
|
"github.com/o3ma/o3"
|
2019-05-31 14:36:18 +02:00
|
|
|
|
2019-05-31 18:26:15 +02:00
|
|
|
"dev.sum7.eu/genofire/golang-lib/database"
|
|
|
|
|
|
|
|
"dev.sum7.eu/genofire/thrempp/models"
|
|
|
|
)
|
2019-05-31 14:36:18 +02:00
|
|
|
|
2019-05-31 18:26:15 +02:00
|
|
|
type Account struct {
|
|
|
|
models.AccountThreema
|
|
|
|
Session o3.SessionContext
|
|
|
|
send chan<- o3.Message
|
|
|
|
recieve <-chan o3.ReceivedMsg
|
2019-05-31 14:36:18 +02:00
|
|
|
}
|
|
|
|
|
2019-05-31 18:26:15 +02:00
|
|
|
func (t *Threema) getAccount(jid *models.JID) *Account {
|
|
|
|
if a, ok := t.accountJID[jid.String()]; ok {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
account := models.AccountThreema{}
|
|
|
|
|
|
|
|
database.Read.Where("xmpp_id = (?)",
|
|
|
|
database.Read.Table(jid.TableName()).Select("id").Where(map[string]interface{}{
|
|
|
|
"local": jid.Local,
|
|
|
|
"domain": jid.Domain,
|
|
|
|
}).QueryExpr()).First(&account)
|
|
|
|
|
|
|
|
var lsk [32]byte
|
|
|
|
copy(lsk[:], account.LSK[:])
|
|
|
|
tid, err := o3.NewThreemaID(string(account.TID), lsk, o3.AddressBook{})
|
|
|
|
// TODO error handling
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
2019-05-31 14:36:18 +02:00
|
|
|
}
|
2019-05-31 18:26:15 +02:00
|
|
|
tid.Nick = o3.NewPubNick("xmpp:" + jid.String())
|
|
|
|
|
|
|
|
a := &Account{AccountThreema: account}
|
|
|
|
a.Session = o3.NewSessionContext(tid)
|
|
|
|
a.send, a.recieve, err = a.Session.Run()
|
|
|
|
|
|
|
|
// TODO error handling
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
t.accountJID[jid.String()] = a
|
|
|
|
t.accountTID[string(a.TID)] = a
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Account) Send(to string, msg string) error {
|
|
|
|
return a.Session.SendTextMessage(to, msg, a.send)
|
2019-05-31 14:36:18 +02:00
|
|
|
}
|