aboutsummaryrefslogtreecommitdiff
path: root/clientapi/producers
diff options
context:
space:
mode:
Diffstat (limited to 'clientapi/producers')
-rw-r--r--clientapi/producers/syncapi.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/clientapi/producers/syncapi.go b/clientapi/producers/syncapi.go
index 2dee04e3..6e869c31 100644
--- a/clientapi/producers/syncapi.go
+++ b/clientapi/producers/syncapi.go
@@ -18,6 +18,7 @@ import (
"context"
"encoding/json"
"strconv"
+ "time"
"github.com/matrix-org/dendrite/internal/eventutil"
"github.com/matrix-org/dendrite/setup/jetstream"
@@ -34,6 +35,7 @@ type SyncAPIProducer struct {
TopicReceiptEvent string
TopicSendToDeviceEvent string
TopicTypingEvent string
+ TopicPresenceEvent string
JetStream nats.JetStreamContext
ServerName gomatrixserverlib.ServerName
UserAPI userapi.UserInternalAPI
@@ -173,3 +175,19 @@ func (p *SyncAPIProducer) SendTyping(
_, err := p.JetStream.PublishMsg(m, nats.Context(ctx))
return err
}
+
+func (p *SyncAPIProducer) SendPresence(
+ ctx context.Context, userID string, presence types.Presence, statusMsg *string,
+) error {
+ m := nats.NewMsg(p.TopicPresenceEvent)
+ m.Header.Set(jetstream.UserID, userID)
+ m.Header.Set("presence", presence.String())
+ if statusMsg != nil {
+ m.Header.Set("status_msg", *statusMsg)
+ }
+
+ m.Header.Set("last_active_ts", strconv.Itoa(int(gomatrixserverlib.AsTimestamp(time.Now()))))
+
+ _, err := p.JetStream.PublishMsg(m, nats.Context(ctx))
+ return err
+}