2019-11-24 17:10:29 +00:00
|
|
|
package gateway
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2023-03-18 21:43:11 +00:00
|
|
|
"github.com/pkg/errors"
|
2024-01-24 23:52:40 +00:00
|
|
|
"strconv"
|
2020-01-10 13:02:25 +00:00
|
|
|
"strings"
|
2022-01-29 05:19:33 +00:00
|
|
|
"sync"
|
2019-11-24 22:20:07 +00:00
|
|
|
|
2023-06-03 04:20:03 +00:00
|
|
|
"dev.narayana.im/narayana/telegabber/badger"
|
2019-11-24 22:20:07 +00:00
|
|
|
"dev.narayana.im/narayana/telegabber/xmpp/extensions"
|
2019-11-24 17:10:29 +00:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2019-11-24 22:20:07 +00:00
|
|
|
"github.com/soheilhy/args"
|
2019-11-24 17:10:29 +00:00
|
|
|
"gosrc.io/xmpp"
|
|
|
|
"gosrc.io/xmpp/stanza"
|
|
|
|
)
|
|
|
|
|
2023-03-05 08:00:53 +00:00
|
|
|
type Reply struct {
|
|
|
|
Author string
|
|
|
|
Id string
|
2023-03-08 12:51:19 +00:00
|
|
|
Start uint64
|
|
|
|
End uint64
|
2023-03-05 08:00:53 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 02:02:47 +00:00
|
|
|
type MarkerType byte
|
|
|
|
const (
|
|
|
|
MarkerTypeReceived MarkerType = iota
|
|
|
|
MarkerTypeDisplayed
|
|
|
|
)
|
|
|
|
|
|
|
|
type marker struct {
|
|
|
|
Type MarkerType
|
|
|
|
Id string
|
|
|
|
}
|
|
|
|
|
2022-06-30 00:10:39 +00:00
|
|
|
const NSNick string = "http://jabber.org/protocol/nick"
|
|
|
|
|
2019-11-24 22:20:07 +00:00
|
|
|
// Queue stores presences to send later
|
2019-11-29 00:51:41 +00:00
|
|
|
var Queue = make(map[string]*stanza.Presence)
|
2022-01-29 05:19:33 +00:00
|
|
|
var QueueLock = sync.Mutex{}
|
2019-11-24 22:20:07 +00:00
|
|
|
|
2019-11-24 17:10:29 +00:00
|
|
|
// Jid stores the component's JID object
|
2021-12-18 16:04:24 +00:00
|
|
|
var Jid *stanza.Jid
|
2019-11-24 17:10:29 +00:00
|
|
|
|
2023-06-03 04:20:03 +00:00
|
|
|
// IdsDB provides a disk-backed bidirectional dictionary of Telegram and XMPP ids
|
|
|
|
var IdsDB badger.IdsDB
|
|
|
|
|
2022-01-05 21:04:22 +00:00
|
|
|
// DirtySessions denotes that some Telegram session configurations
|
|
|
|
// were changed and need to be re-flushed to the YamlDB
|
|
|
|
var DirtySessions = false
|
|
|
|
|
2023-08-02 21:08:06 +00:00
|
|
|
// MessageOutgoingPermissionVersion contains a XEP-0356 version to fake outgoing messages by foreign JIDs
|
|
|
|
var MessageOutgoingPermissionVersion = 0
|
2023-03-18 21:43:11 +00:00
|
|
|
|
2019-11-24 17:10:29 +00:00
|
|
|
// SendMessage creates and sends a message stanza
|
2024-01-29 09:28:15 +00:00
|
|
|
func SendMessage(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, replaceId string, isCarbon, requestReceipt bool) {
|
|
|
|
sendMessageWrapper(to, from, body, id, component, reply, nil, "", replaceId, isCarbon, requestReceipt)
|
2023-03-05 08:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SendServiceMessage creates and sends a simple message stanza from transport
|
|
|
|
func SendServiceMessage(to string, body string, component *xmpp.Component) {
|
2024-01-29 09:28:15 +00:00
|
|
|
sendMessageWrapper(to, "", body, "", component, nil, nil, "", "", false, false)
|
2023-03-05 08:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SendTextMessage creates and sends a simple message stanza
|
|
|
|
func SendTextMessage(to string, from string, body string, component *xmpp.Component) {
|
2024-01-29 09:28:15 +00:00
|
|
|
sendMessageWrapper(to, from, body, "", component, nil, nil, "", "", false, false)
|
2023-01-16 01:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SendMessageWithOOB creates and sends a message stanza with OOB URL
|
2024-01-29 09:28:15 +00:00
|
|
|
func SendMessageWithOOB(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, oob, replaceId string, isCarbon, requestReceipt bool) {
|
|
|
|
sendMessageWrapper(to, from, body, id, component, reply, nil, oob, replaceId, isCarbon, requestReceipt)
|
2023-01-16 01:35:13 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 02:02:47 +00:00
|
|
|
// SendMessageMarker creates and sends a message stanza with a XEP-0333 marker
|
|
|
|
func SendMessageMarker(to string, from string, component *xmpp.Component, markerType MarkerType, markerId string) {
|
|
|
|
sendMessageWrapper(to, from, "", "", component, nil, &marker{
|
|
|
|
Type: markerType,
|
|
|
|
Id: markerId,
|
2024-01-29 09:28:15 +00:00
|
|
|
}, "", "", false, false)
|
2024-01-27 02:02:47 +00:00
|
|
|
}
|
|
|
|
|
2024-01-29 09:28:15 +00:00
|
|
|
func sendMessageWrapper(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, marker *marker, oob, replaceId string, isCarbon, requestReceipt bool) {
|
2023-03-18 21:43:11 +00:00
|
|
|
toJid, err := stanza.NewJid(to)
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"to": to,
|
|
|
|
}).Error(errors.Wrap(err, "Invalid to JID!"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
bareTo := toJid.Bare()
|
|
|
|
|
2019-11-24 17:10:29 +00:00
|
|
|
componentJid := Jid.Full()
|
|
|
|
|
|
|
|
var logFrom string
|
|
|
|
var messageFrom string
|
2023-03-18 21:43:11 +00:00
|
|
|
var messageTo string
|
2019-11-24 17:10:29 +00:00
|
|
|
if from == "" {
|
|
|
|
logFrom = componentJid
|
|
|
|
messageFrom = componentJid
|
|
|
|
} else {
|
|
|
|
logFrom = from
|
|
|
|
messageFrom = from + "@" + componentJid
|
|
|
|
}
|
2023-07-09 03:52:30 +00:00
|
|
|
if isCarbon {
|
2023-03-18 21:43:11 +00:00
|
|
|
messageTo = messageFrom
|
|
|
|
messageFrom = bareTo + "/" + Jid.Resource
|
|
|
|
} else {
|
|
|
|
messageTo = to
|
|
|
|
}
|
2019-11-24 17:10:29 +00:00
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"from": logFrom,
|
|
|
|
"to": to,
|
|
|
|
}).Warn("Got message")
|
|
|
|
|
|
|
|
message := stanza.Message{
|
|
|
|
Attrs: stanza.Attrs{
|
|
|
|
From: messageFrom,
|
2023-03-18 21:43:11 +00:00
|
|
|
To: messageTo,
|
2019-11-24 17:10:29 +00:00
|
|
|
Type: "chat",
|
2023-03-04 02:41:45 +00:00
|
|
|
Id: id,
|
2019-11-24 17:10:29 +00:00
|
|
|
},
|
|
|
|
Body: body,
|
|
|
|
}
|
|
|
|
|
2023-01-16 01:35:13 +00:00
|
|
|
if oob != "" {
|
|
|
|
message.Extensions = append(message.Extensions, stanza.OOB{
|
|
|
|
URL: oob,
|
|
|
|
})
|
|
|
|
}
|
2023-03-05 08:00:53 +00:00
|
|
|
if reply != nil {
|
|
|
|
message.Extensions = append(message.Extensions, extensions.Reply{
|
|
|
|
To: reply.Author,
|
|
|
|
Id: reply.Id,
|
|
|
|
})
|
2023-03-08 12:51:19 +00:00
|
|
|
if reply.End > 0 {
|
|
|
|
message.Extensions = append(message.Extensions, extensions.NewReplyFallback(reply.Start, reply.End))
|
|
|
|
}
|
2023-03-05 08:00:53 +00:00
|
|
|
}
|
2024-01-27 02:02:47 +00:00
|
|
|
if marker != nil {
|
|
|
|
if marker.Type == MarkerTypeReceived {
|
|
|
|
message.Extensions = append(message.Extensions, stanza.MarkReceived{ID: marker.Id})
|
|
|
|
} else if marker.Type == MarkerTypeDisplayed {
|
|
|
|
message.Extensions = append(message.Extensions, stanza.MarkDisplayed{ID: marker.Id})
|
2024-01-27 08:25:17 +00:00
|
|
|
message.Extensions = append(message.Extensions, stanza.ReceiptReceived{ID: marker.Id})
|
2024-01-27 02:02:47 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-02 00:03:34 +00:00
|
|
|
if !isCarbon && toJid.Resource != "" {
|
|
|
|
message.Extensions = append(message.Extensions, stanza.HintNoCopy{})
|
|
|
|
}
|
2024-01-27 11:13:45 +00:00
|
|
|
if requestReceipt {
|
2024-01-27 11:47:12 +00:00
|
|
|
message.Extensions = append(message.Extensions, stanza.Markable{})
|
2024-01-27 11:13:45 +00:00
|
|
|
}
|
2024-01-29 09:28:15 +00:00
|
|
|
if replaceId != "" {
|
|
|
|
message.Extensions = append(message.Extensions, extensions.Replace{Id: replaceId})
|
|
|
|
}
|
2023-01-16 01:35:13 +00:00
|
|
|
|
2023-07-09 03:52:30 +00:00
|
|
|
if isCarbon {
|
2023-03-18 21:43:11 +00:00
|
|
|
carbonMessage := extensions.ClientMessage{
|
|
|
|
Attrs: stanza.Attrs{
|
|
|
|
From: bareTo,
|
|
|
|
To: to,
|
|
|
|
Type: "chat",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
carbonMessage.Extensions = append(carbonMessage.Extensions, extensions.CarbonSent{
|
|
|
|
Forwarded: stanza.Forwarded{
|
|
|
|
Stanza: extensions.ClientMessage(message),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
privilegeMessage := stanza.Message{
|
|
|
|
Attrs: stanza.Attrs{
|
|
|
|
From: Jid.Bare(),
|
|
|
|
To: toJid.Domain,
|
|
|
|
},
|
|
|
|
}
|
2023-08-02 21:08:06 +00:00
|
|
|
if MessageOutgoingPermissionVersion == 2 {
|
|
|
|
privilegeMessage.Extensions = append(privilegeMessage.Extensions, extensions.ComponentPrivilege2{
|
|
|
|
Forwarded: stanza.Forwarded{
|
|
|
|
Stanza: carbonMessage,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
privilegeMessage.Extensions = append(privilegeMessage.Extensions, extensions.ComponentPrivilege1{
|
|
|
|
Forwarded: stanza.Forwarded{
|
|
|
|
Stanza: carbonMessage,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2023-03-18 21:43:11 +00:00
|
|
|
sendMessage(&privilegeMessage, component)
|
|
|
|
} else {
|
|
|
|
sendMessage(&message, component)
|
|
|
|
}
|
2022-06-30 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetNickname sets a new nickname for a contact
|
|
|
|
func SetNickname(to string, from string, nickname string, component *xmpp.Component) {
|
|
|
|
componentJid := Jid.Bare()
|
|
|
|
messageFrom := from + "@" + componentJid
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"from": from,
|
|
|
|
"to": to,
|
|
|
|
}).Warn("Set nickname")
|
|
|
|
|
|
|
|
message := stanza.Message{
|
|
|
|
Attrs: stanza.Attrs{
|
|
|
|
From: messageFrom,
|
|
|
|
To: to,
|
|
|
|
Type: "headline",
|
|
|
|
},
|
|
|
|
Extensions: []stanza.MsgExtension{
|
|
|
|
stanza.PubSubEvent{
|
|
|
|
EventElement: stanza.ItemsEvent{
|
2022-06-30 00:33:51 +00:00
|
|
|
Node: NSNick,
|
2022-06-30 00:10:39 +00:00
|
|
|
Items: []stanza.ItemEvent{
|
|
|
|
stanza.ItemEvent{
|
|
|
|
Any: &stanza.Node{
|
|
|
|
XMLName: xml.Name{Space: NSNick, Local: "nick"},
|
|
|
|
Content: nickname,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sendMessage(&message, component)
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendMessage(message *stanza.Message, component *xmpp.Component) {
|
2019-11-24 17:10:29 +00:00
|
|
|
// explicit check, as marshalling is expensive
|
|
|
|
if log.GetLevel() == log.DebugLevel {
|
|
|
|
xmlMessage, err := xml.Marshal(message)
|
|
|
|
if err == nil {
|
|
|
|
log.Debug(string(xmlMessage))
|
|
|
|
} else {
|
|
|
|
log.Debugf("%#v", message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 13:02:25 +00:00
|
|
|
_ = ResumableSend(component, message)
|
2019-11-24 17:10:29 +00:00
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
|
|
|
|
// LogBadPresence verbosely logs a presence
|
2020-01-10 13:02:25 +00:00
|
|
|
func LogBadPresence(presence *stanza.Presence) {
|
|
|
|
log.Errorf("Couldn't send presence: %#v", presence)
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SPFrom is a Telegram user id
|
|
|
|
var SPFrom = args.NewString()
|
|
|
|
|
|
|
|
// SPType is a presence type
|
|
|
|
var SPType = args.NewString()
|
|
|
|
|
|
|
|
// SPShow is a availability status
|
|
|
|
var SPShow = args.NewString()
|
|
|
|
|
|
|
|
// SPStatus is a verbose status
|
|
|
|
var SPStatus = args.NewString()
|
|
|
|
|
|
|
|
// SPNickname is a XEP-0172 nickname
|
|
|
|
var SPNickname = args.NewString()
|
|
|
|
|
|
|
|
// SPPhoto is a XEP-0153 hash of avatar in vCard
|
|
|
|
var SPPhoto = args.NewString()
|
|
|
|
|
2022-02-08 17:43:51 +00:00
|
|
|
// SPResource is an optional resource
|
|
|
|
var SPResource = args.NewString()
|
|
|
|
|
2019-11-24 22:20:07 +00:00
|
|
|
// SPImmed skips queueing
|
|
|
|
var SPImmed = args.NewBool(args.Default(true))
|
|
|
|
|
|
|
|
func newPresence(bareJid string, to string, args ...args.V) stanza.Presence {
|
|
|
|
var presenceFrom string
|
|
|
|
if SPFrom.IsSet(args) {
|
|
|
|
presenceFrom = SPFrom.Get(args) + "@" + bareJid
|
2022-02-08 17:43:51 +00:00
|
|
|
if SPResource.IsSet(args) {
|
|
|
|
resource := SPResource.Get(args)
|
|
|
|
if resource != "" {
|
|
|
|
presenceFrom += "/" + resource
|
|
|
|
}
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
} else {
|
|
|
|
presenceFrom = bareJid
|
|
|
|
}
|
|
|
|
|
|
|
|
presence := stanza.Presence{Attrs: stanza.Attrs{
|
|
|
|
From: presenceFrom,
|
|
|
|
To: to,
|
|
|
|
}}
|
|
|
|
|
|
|
|
if SPType.IsSet(args) {
|
2019-11-29 00:51:41 +00:00
|
|
|
t := SPType.Get(args)
|
|
|
|
if t != "" {
|
|
|
|
presence.Attrs.Type = stanza.StanzaType(t)
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
if SPShow.IsSet(args) {
|
2019-11-29 00:51:41 +00:00
|
|
|
show := SPShow.Get(args)
|
|
|
|
if show != "" {
|
|
|
|
presence.Show = stanza.PresenceShow(show)
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
if SPStatus.IsSet(args) {
|
2019-11-29 00:51:41 +00:00
|
|
|
status := SPStatus.Get(args)
|
|
|
|
if status != "" {
|
|
|
|
presence.Status = status
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
if SPNickname.IsSet(args) {
|
2019-11-29 00:51:41 +00:00
|
|
|
nickname := SPNickname.Get(args)
|
|
|
|
if nickname != "" {
|
|
|
|
presence.Extensions = append(presence.Extensions, extensions.PresenceNickExtension{
|
|
|
|
Text: nickname,
|
|
|
|
})
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
if SPPhoto.IsSet(args) {
|
2019-11-29 00:51:41 +00:00
|
|
|
photo := SPPhoto.Get(args)
|
|
|
|
if photo != "" {
|
|
|
|
presence.Extensions = append(presence.Extensions, extensions.PresenceXVCardUpdateExtension{
|
|
|
|
Photo: extensions.PresenceXVCardUpdatePhoto{
|
|
|
|
Text: photo,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return presence
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendPresence creates and sends a presence stanza
|
2019-11-29 00:51:41 +00:00
|
|
|
func SendPresence(component *xmpp.Component, to string, args ...args.V) error {
|
2019-11-24 22:20:07 +00:00
|
|
|
var logFrom string
|
|
|
|
bareJid := Jid.Bare()
|
|
|
|
if SPFrom.IsSet(args) {
|
|
|
|
logFrom = SPFrom.Get(args)
|
|
|
|
} else {
|
|
|
|
logFrom = bareJid
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"type": SPType.Get(args),
|
|
|
|
"from": logFrom,
|
|
|
|
"to": to,
|
|
|
|
}).Info("Got presence")
|
|
|
|
|
|
|
|
presence := newPresence(bareJid, to, args...)
|
|
|
|
|
|
|
|
// explicit check, as marshalling is expensive
|
|
|
|
if log.GetLevel() == log.DebugLevel {
|
|
|
|
xmlPresence, err := xml.Marshal(presence)
|
|
|
|
if err == nil {
|
|
|
|
log.Debug(string(xmlPresence))
|
|
|
|
} else {
|
|
|
|
log.Debugf("%#v", presence)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
immed := SPImmed.Get(args)
|
|
|
|
if immed {
|
2020-01-10 13:02:25 +00:00
|
|
|
err := ResumableSend(component, presence)
|
2019-11-24 22:20:07 +00:00
|
|
|
if err != nil {
|
2020-01-10 13:02:25 +00:00
|
|
|
LogBadPresence(&presence)
|
2019-11-24 22:20:07 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2022-01-29 05:19:33 +00:00
|
|
|
QueueLock.Lock()
|
2019-11-29 00:51:41 +00:00
|
|
|
Queue[presence.From+presence.To] = &presence
|
2022-01-29 05:19:33 +00:00
|
|
|
QueueLock.Unlock()
|
2019-11-24 22:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-01-10 13:02:25 +00:00
|
|
|
|
2024-01-24 23:52:40 +00:00
|
|
|
// SPAppendFrom appends numeric from and resource to varargs
|
|
|
|
func SPAppendFrom(oldArgs []args.V, id int64) []args.V {
|
|
|
|
newArgs := append(oldArgs, SPFrom(strconv.FormatInt(id, 10)))
|
|
|
|
newArgs = append(newArgs, SPResource(Jid.Resource))
|
|
|
|
return newArgs
|
|
|
|
}
|
|
|
|
|
|
|
|
// SimplePresence crafts simple presence varargs
|
|
|
|
func SimplePresence(from int64, typ string) []args.V {
|
|
|
|
args := []args.V{SPType(typ)}
|
|
|
|
args = SPAppendFrom(args, from)
|
|
|
|
return args
|
|
|
|
}
|
|
|
|
|
2020-01-10 13:02:25 +00:00
|
|
|
// ResumableSend tries to resume the connection once and sends the packet again
|
|
|
|
func ResumableSend(component *xmpp.Component, packet stanza.Packet) error {
|
|
|
|
err := component.Send(packet)
|
|
|
|
if err != nil && strings.HasPrefix(err.Error(), "cannot send packet") {
|
|
|
|
log.Warn("Packet send failed, trying to resume the connection...")
|
|
|
|
err = component.Connect()
|
|
|
|
if err == nil {
|
|
|
|
err = component.Send(packet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2023-03-18 21:43:11 +00:00
|
|
|
|
2023-08-28 14:16:57 +00:00
|
|
|
// SubscribeToTransport ensures a two-way subscription to the transport
|
|
|
|
func SubscribeToTransport(component *xmpp.Component, jid string) {
|
|
|
|
SendPresence(component, jid, SPType("subscribe"))
|
|
|
|
SendPresence(component, jid, SPType("subscribed"))
|
|
|
|
}
|
|
|
|
|
2023-03-18 21:43:11 +00:00
|
|
|
// SplitJID tokenizes a JID string to bare JID and resource
|
|
|
|
func SplitJID(from string) (string, string, bool) {
|
|
|
|
fromJid, err := stanza.NewJid(from)
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"from": from,
|
|
|
|
}).Error(errors.Wrap(err, "Invalid from JID!"))
|
|
|
|
return "", "", false
|
|
|
|
}
|
|
|
|
return fromJid.Bare(), fromJid.Resource, true
|
|
|
|
}
|