aboutsummaryrefslogtreecommitdiff
path: root/xmpp/gateway/gateway.go
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2023-09-19 14:31:24 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2023-09-19 14:31:24 +0300
commite8bde731642f50c8d272c33343ec78ca70405377 (patch)
tree2284bfff27c5f9b5019e333123a5314b9d4f1a86 /xmpp/gateway/gateway.go
parente77caf2c42c079062ade31f928a40b7654ac9bfd (diff)
Original sender JID in MUCs (why?)
Diffstat (limited to 'xmpp/gateway/gateway.go')
-rw-r--r--xmpp/gateway/gateway.go24
1 files changed, 17 insertions, 7 deletions
diff --git a/xmpp/gateway/gateway.go b/xmpp/gateway/gateway.go
index 074d2d0..a831db6 100644
--- a/xmpp/gateway/gateway.go
+++ b/xmpp/gateway/gateway.go
@@ -43,26 +43,26 @@ var DirtySessions = false
var MessageOutgoingPermissionVersion = 0
// SendMessage creates and sends a message stanza
-func SendMessage(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, isCarbon, isGroupchat bool) {
- sendMessageWrapper(to, from, body, id, component, reply, timestamp, "", isCarbon, isGroupchat)
+func SendMessage(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, isCarbon, isGroupchat bool, originalFrom string) {
+ sendMessageWrapper(to, from, body, id, component, reply, timestamp, "", isCarbon, isGroupchat, originalFrom)
}
// SendServiceMessage creates and sends a simple message stanza from transport
func SendServiceMessage(to string, body string, component *xmpp.Component) {
- sendMessageWrapper(to, "", body, "", component, nil, 0, "", false, false)
+ sendMessageWrapper(to, "", body, "", component, nil, 0, "", false, false, "")
}
// SendTextMessage creates and sends a simple message stanza
func SendTextMessage(to string, from string, body string, component *xmpp.Component) {
- sendMessageWrapper(to, from, body, "", component, nil, 0, "", false, false)
+ sendMessageWrapper(to, from, body, "", component, nil, 0, "", false, false, "")
}
// SendMessageWithOOB creates and sends a message stanza with OOB URL
-func SendMessageWithOOB(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, oob string, isCarbon bool, isGroupchat bool) {
- sendMessageWrapper(to, from, body, id, component, reply, timestamp, oob, isCarbon, isGroupchat)
+func SendMessageWithOOB(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, oob string, isCarbon bool, isGroupchat bool, originalFrom string) {
+ sendMessageWrapper(to, from, body, id, component, reply, timestamp, oob, isCarbon, isGroupchat, originalFrom)
}
-func sendMessageWrapper(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, oob string, isCarbon bool, isGroupchat bool) {
+func sendMessageWrapper(to string, from string, body string, id string, component *xmpp.Component, reply *Reply, timestamp int64, oob string, isCarbon bool, isGroupchat bool, originalFrom string) {
toJid, err := stanza.NewJid(to)
if err != nil {
log.WithFields(log.Fields{
@@ -149,6 +149,16 @@ func sendMessageWrapper(to string, from string, body string, id string, componen
Stamp: time.Unix(timestamp, 0).UTC().Format("20060102T15:04:05"),
})
}
+ if originalFrom != "" {
+ message.Extensions = append(message.Extensions, extensions.MessageAddresses{
+ Addresses: []extensions.MessageAddress{
+ extensions.MessageAddress{
+ Type: "ofrom",
+ Jid: originalFrom,
+ },
+ },
+ })
+ }
if isCarbon {
carbonMessage := extensions.ClientMessage{