aboutsummaryrefslogtreecommitdiff
path: root/userapi/util/notify.go
diff options
context:
space:
mode:
Diffstat (limited to 'userapi/util/notify.go')
-rw-r--r--userapi/util/notify.go76
1 files changed, 76 insertions, 0 deletions
diff --git a/userapi/util/notify.go b/userapi/util/notify.go
new file mode 100644
index 00000000..ff206bd3
--- /dev/null
+++ b/userapi/util/notify.go
@@ -0,0 +1,76 @@
+package util
+
+import (
+ "context"
+ "strings"
+ "time"
+
+ "github.com/matrix-org/dendrite/internal/pushgateway"
+ "github.com/matrix-org/dendrite/userapi/storage"
+ "github.com/matrix-org/dendrite/userapi/storage/tables"
+ log "github.com/sirupsen/logrus"
+)
+
+// NotifyUserCountsAsync sends notifications to a local user's
+// notification destinations. Database lookups run synchronously, but
+// a single goroutine is started when talking to the Push
+// gateways. There is no way to know when the background goroutine has
+// finished.
+func NotifyUserCountsAsync(ctx context.Context, pgClient pushgateway.Client, localpart string, db storage.Database) error {
+ pusherDevices, err := GetPushDevices(ctx, localpart, nil, db)
+ if err != nil {
+ return err
+ }
+
+ if len(pusherDevices) == 0 {
+ return nil
+ }
+
+ userNumUnreadNotifs, err := db.GetNotificationCount(ctx, localpart, tables.AllNotifications)
+ if err != nil {
+ return err
+ }
+
+ log.WithFields(log.Fields{
+ "localpart": localpart,
+ "app_id0": pusherDevices[0].Device.AppID,
+ "pushkey": pusherDevices[0].Device.PushKey,
+ }).Tracef("Notifying HTTP push gateway about notification counts")
+
+ // TODO: think about bounding this to one per user, and what
+ // ordering guarantees we must provide.
+ go func() {
+ // This background processing cannot be tied to a request.
+ ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ defer cancel()
+
+ // TODO: we could batch all devices with the same URL, but
+ // Sytest requires consumers/roomserver.go to do it
+ // one-by-one, so we do the same here.
+ for _, pusherDevice := range pusherDevices {
+ // TODO: support "email".
+ if !strings.HasPrefix(pusherDevice.URL, "http") {
+ continue
+ }
+
+ req := pushgateway.NotifyRequest{
+ Notification: pushgateway.Notification{
+ Counts: &pushgateway.Counts{
+ Unread: int(userNumUnreadNotifs),
+ },
+ Devices: []*pushgateway.Device{&pusherDevice.Device},
+ },
+ }
+ if err := pgClient.Notify(ctx, pusherDevice.URL, &req, &pushgateway.NotifyResponse{}); err != nil {
+ log.WithFields(log.Fields{
+ "localpart": localpart,
+ "app_id0": pusherDevice.Device.AppID,
+ "pushkey": pusherDevice.Device.PushKey,
+ }).WithError(err).Error("HTTP push gateway request failed")
+ return
+ }
+ }
+ }()
+
+ return nil
+}