66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package threema
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/bdlm/log"
|
|
"github.com/o3ma/o3"
|
|
"gosrc.io/xmpp"
|
|
)
|
|
|
|
func (a *Account) Send(to string, msg xmpp.Message) error {
|
|
m, err := a.sending(to, msg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if m != nil {
|
|
a.send <- m
|
|
}
|
|
return nil
|
|
}
|
|
func (a *Account) sending(to string, msg xmpp.Message) (o3.Message, error) {
|
|
// handle delivered / readed
|
|
msgID := ""
|
|
readed := false
|
|
for _, el := range msg.Extensions {
|
|
switch ex := el.(type) {
|
|
case *xmpp.ReceiptReceived:
|
|
msgID = ex.Id
|
|
case *xmpp.ChatMarkerReceived:
|
|
msgID = ex.Id
|
|
case *xmpp.ChatMarkerDisplayed:
|
|
readed = true
|
|
msgID = ex.Id
|
|
}
|
|
}
|
|
if msgID != "" {
|
|
id, err := strconv.ParseUint(msgID, 10, 64)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
msgType := o3.MSGDELIVERED
|
|
if readed {
|
|
msgType = o3.MSGREAD
|
|
}
|
|
drm, err := o3.NewDeliveryReceiptMessage(&a.Session, to, id, msgType)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
log.WithFields(map[string]interface{}{
|
|
"tid": to,
|
|
"msg_id": id,
|
|
"type": msgType,
|
|
}).Debug("update status of threema message")
|
|
return drm, nil
|
|
}
|
|
|
|
// send text message
|
|
msg3, err := o3.NewTextMessage(&a.Session, to, msg.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
a.deliveredMSG[msg3.ID()] = msg.Id
|
|
a.readedMSG[msg3.ID()] = msg.Id
|
|
return msg3, nil
|
|
}
|