mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
529df30b56
Note that virtual users cannot federate correctly yet.
78 lines
2.4 KiB
Go
78 lines
2.4 KiB
Go
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"
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
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, serverName gomatrixserverlib.ServerName, db storage.Database) error {
|
|
pusherDevices, err := GetPushDevices(ctx, localpart, serverName, nil, db)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(pusherDevices) == 0 {
|
|
return nil
|
|
}
|
|
|
|
userNumUnreadNotifs, err := db.GetNotificationCount(ctx, localpart, serverName, 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
|
|
}
|