2017-08-02 17:21:35 +02:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package producers
|
|
|
|
|
|
|
|
import (
|
2022-03-29 14:14:35 +02:00
|
|
|
"context"
|
2017-08-02 17:21:35 +02:00
|
|
|
"encoding/json"
|
2022-07-05 18:13:26 +02:00
|
|
|
"fmt"
|
2022-03-29 14:14:35 +02:00
|
|
|
"strconv"
|
2022-04-06 13:11:19 +02:00
|
|
|
"time"
|
2017-08-02 17:21:35 +02:00
|
|
|
|
2022-03-29 14:14:35 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/nats-io/nats.go"
|
2020-06-12 13:10:08 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2022-09-13 09:35:45 +02:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2017-08-02 17:21:35 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// SyncAPIProducer produces events for the sync API server to consume
|
|
|
|
type SyncAPIProducer struct {
|
2022-03-29 14:14:35 +02:00
|
|
|
TopicReceiptEvent string
|
|
|
|
TopicSendToDeviceEvent string
|
|
|
|
TopicTypingEvent string
|
2022-04-06 13:11:19 +02:00
|
|
|
TopicPresenceEvent string
|
2022-03-29 14:14:35 +02:00
|
|
|
JetStream nats.JetStreamContext
|
|
|
|
ServerName gomatrixserverlib.ServerName
|
2022-05-05 14:17:38 +02:00
|
|
|
UserAPI userapi.ClientUserAPI
|
2017-08-02 17:21:35 +02:00
|
|
|
}
|
|
|
|
|
2022-03-29 14:14:35 +02:00
|
|
|
func (p *SyncAPIProducer) SendReceipt(
|
|
|
|
ctx context.Context,
|
|
|
|
userID, roomID, eventID, receiptType string, timestamp gomatrixserverlib.Timestamp,
|
|
|
|
) error {
|
|
|
|
m := &nats.Msg{
|
|
|
|
Subject: p.TopicReceiptEvent,
|
|
|
|
Header: nats.Header{},
|
|
|
|
}
|
|
|
|
m.Header.Set(jetstream.UserID, userID)
|
|
|
|
m.Header.Set(jetstream.RoomID, roomID)
|
|
|
|
m.Header.Set(jetstream.EventID, eventID)
|
|
|
|
m.Header.Set("type", receiptType)
|
2022-07-05 18:13:26 +02:00
|
|
|
m.Header.Set("timestamp", fmt.Sprintf("%d", timestamp))
|
2022-03-29 14:14:35 +02:00
|
|
|
|
|
|
|
log.WithFields(log.Fields{}).Tracef("Producing to topic '%s'", p.TopicReceiptEvent)
|
|
|
|
_, err := p.JetStream.PublishMsg(m, nats.Context(ctx))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *SyncAPIProducer) SendToDevice(
|
|
|
|
ctx context.Context, sender, userID, deviceID, eventType string,
|
2022-09-13 09:35:45 +02:00
|
|
|
message json.RawMessage,
|
2022-03-29 14:14:35 +02:00
|
|
|
) error {
|
|
|
|
devices := []string{}
|
|
|
|
_, domain, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the event is targeted locally then we want to expand the wildcard
|
|
|
|
// out into individual device IDs so that we can send them to each respective
|
|
|
|
// device. If the event isn't targeted locally then we can't expand the
|
|
|
|
// wildcard as we don't know about the remote devices, so instead we leave it
|
|
|
|
// as-is, so that the federation sender can send it on with the wildcard intact.
|
|
|
|
if domain == p.ServerName && deviceID == "*" {
|
|
|
|
var res userapi.QueryDevicesResponse
|
|
|
|
err = p.UserAPI.QueryDevices(context.TODO(), &userapi.QueryDevicesRequest{
|
|
|
|
UserID: userID,
|
|
|
|
}, &res)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, dev := range res.Devices {
|
|
|
|
devices = append(devices, dev.ID)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
devices = append(devices, deviceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"user_id": userID,
|
|
|
|
"num_devices": len(devices),
|
|
|
|
"type": eventType,
|
|
|
|
}).Tracef("Producing to topic '%s'", p.TopicSendToDeviceEvent)
|
2022-09-13 09:35:45 +02:00
|
|
|
for i, device := range devices {
|
2022-03-29 14:14:35 +02:00
|
|
|
ote := &types.OutputSendToDeviceEvent{
|
|
|
|
UserID: userID,
|
|
|
|
DeviceID: device,
|
|
|
|
SendToDeviceEvent: gomatrixserverlib.SendToDeviceEvent{
|
|
|
|
Sender: sender,
|
|
|
|
Type: eventType,
|
2022-09-13 09:35:45 +02:00
|
|
|
Content: message,
|
2022-03-29 14:14:35 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
eventJSON, err := json.Marshal(ote)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("sendToDevice failed json.Marshal")
|
|
|
|
return err
|
|
|
|
}
|
2022-09-13 09:35:45 +02:00
|
|
|
m := nats.NewMsg(p.TopicSendToDeviceEvent)
|
|
|
|
m.Data = eventJSON
|
2022-03-29 14:14:35 +02:00
|
|
|
m.Header.Set("sender", sender)
|
|
|
|
m.Header.Set(jetstream.UserID, userID)
|
2022-09-13 09:35:45 +02:00
|
|
|
|
2022-03-29 14:14:35 +02:00
|
|
|
if _, err = p.JetStream.PublishMsg(m, nats.Context(ctx)); err != nil {
|
2022-09-13 09:35:45 +02:00
|
|
|
if i < len(devices)-1 {
|
|
|
|
log.WithError(err).Warn("sendToDevice failed to PublishMsg, trying further devices")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
log.WithError(err).Error("sendToDevice failed to PublishMsg for all devices")
|
2022-03-29 14:14:35 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *SyncAPIProducer) SendTyping(
|
|
|
|
ctx context.Context, userID, roomID string, typing bool, timeoutMS int64,
|
|
|
|
) error {
|
|
|
|
m := &nats.Msg{
|
|
|
|
Subject: p.TopicTypingEvent,
|
|
|
|
Header: nats.Header{},
|
|
|
|
}
|
|
|
|
m.Header.Set(jetstream.UserID, userID)
|
|
|
|
m.Header.Set(jetstream.RoomID, roomID)
|
|
|
|
m.Header.Set("typing", strconv.FormatBool(typing))
|
|
|
|
m.Header.Set("timeout_ms", strconv.Itoa(int(timeoutMS)))
|
|
|
|
|
|
|
|
_, err := p.JetStream.PublishMsg(m, nats.Context(ctx))
|
|
|
|
return err
|
|
|
|
}
|
2022-04-06 13:11:19 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|