backfill: backfill conversation when started

This applies to when the conversation is started via the provisioning
API (start new chat) or when a new message comes in to that portal.
This commit is contained in:
Sumner Evans 2022-03-25 00:15:52 -06:00
parent e702bf39d2
commit 8a49fea812
No known key found for this signature in database
GPG key ID: 8904527AB50022FD
5 changed files with 24 additions and 32 deletions

View file

@ -1059,7 +1059,7 @@ func (handler *CommandHandler) CommandOpen(ce *CommandEvent) {
portal.UpdateMatrixRoom(ce.User, info) portal.UpdateMatrixRoom(ce.User, info)
ce.Reply("Portal room synced.") ce.Reply("Portal room synced.")
} else { } else {
err = portal.CreateMatrixRoom(ce.User, info, true) err = portal.CreateMatrixRoom(ce.User, info, true, true)
if err != nil { if err != nil {
ce.Reply("Failed to create room: %v", err) ce.Reply("Failed to create room: %v", err)
} else { } else {

View file

@ -78,6 +78,10 @@ func (user *User) handleBackfillRequestsLoop(backfillRequests chan *database.Bac
for req := range backfillRequests { for req := range backfillRequests {
user.log.Infof("Backfill request: %v", req) user.log.Infof("Backfill request: %v", req)
conv := user.bridge.DB.HistorySyncQuery.GetConversation(user.MXID, req.Portal) conv := user.bridge.DB.HistorySyncQuery.GetConversation(user.MXID, req.Portal)
if conv == nil {
user.log.Errorf("Could not find conversation for %s in %s", user.MXID, req.Portal.String())
continue
}
// Update the client store with basic chat settings. // Update the client store with basic chat settings.
if conv.MuteEndTime.After(time.Now()) { if conv.MuteEndTime.After(time.Now()) {
@ -102,7 +106,7 @@ func (user *User) handleBackfillRequestsLoop(backfillRequests chan *database.Bac
if len(portal.MXID) == 0 { if len(portal.MXID) == 0 {
user.log.Debugln("Creating portal for", portal.Key.JID, "as part of history sync handling") user.log.Debugln("Creating portal for", portal.Key.JID, "as part of history sync handling")
err := portal.CreateMatrixRoom(user, nil, true) err := portal.CreateMatrixRoom(user, nil, true, false)
if err != nil { if err != nil {
user.log.Warnfln("Failed to create room for %s during backfill: %v", portal.Key.JID, err) user.log.Warnfln("Failed to create room for %s during backfill: %v", portal.Key.JID, err)
continue continue
@ -122,8 +126,6 @@ func (user *User) handleBackfillRequestsLoop(backfillRequests chan *database.Bac
break break
} }
time.Sleep(time.Duration(req.BatchDelay) * time.Second)
var msgs []*waProto.WebMessageInfo var msgs []*waProto.WebMessageInfo
if len(toBackfill) <= req.MaxBatchEvents { if len(toBackfill) <= req.MaxBatchEvents {
msgs = toBackfill msgs = toBackfill
@ -134,6 +136,7 @@ func (user *User) handleBackfillRequestsLoop(backfillRequests chan *database.Bac
} }
if len(msgs) > 0 { if len(msgs) > 0 {
time.Sleep(time.Duration(req.BatchDelay) * time.Second)
user.log.Debugf("Backfilling %d messages in %s", len(msgs), portal.Key.JID) user.log.Debugf("Backfilling %d messages in %s", len(msgs), portal.Key.JID)
insertionEventIds = append(insertionEventIds, portal.backfill(user, msgs)...) insertionEventIds = append(insertionEventIds, portal.backfill(user, msgs)...)
} }
@ -224,8 +227,7 @@ func (user *User) handleHistorySync(reCheckQueue chan bool, evt *waProto.History
// If this was the initial bootstrap, enqueue immediate backfills for the // If this was the initial bootstrap, enqueue immediate backfills for the
// most recent portals. If it's the last history sync event, start // most recent portals. If it's the last history sync event, start
// backfilling the rest of the history of the portals. // backfilling the rest of the history of the portals.
historySyncConfig := user.bridge.Config.Bridge.HistorySync if user.bridge.Config.Bridge.HistorySync.Backfill && evt.GetSyncType() == waProto.HistorySync_FULL {
if historySyncConfig.Backfill && (evt.GetSyncType() == waProto.HistorySync_FULL || evt.GetSyncType() == waProto.HistorySync_INITIAL_BOOTSTRAP) {
nMostRecent := user.bridge.DB.HistorySyncQuery.GetNMostRecentConversations(user.MXID, user.bridge.Config.Bridge.HistorySync.MaxInitialConversations) nMostRecent := user.bridge.DB.HistorySyncQuery.GetNMostRecentConversations(user.MXID, user.bridge.Config.Bridge.HistorySync.MaxInitialConversations)
for i, conv := range nMostRecent { for i, conv := range nMostRecent {
jid, err := types.ParseJID(conv.ConversationID) jid, err := types.ParseJID(conv.ConversationID)
@ -235,26 +237,10 @@ func (user *User) handleHistorySync(reCheckQueue chan bool, evt *waProto.History
} }
portal := user.GetPortalByJID(jid) portal := user.GetPortalByJID(jid)
switch evt.GetSyncType() { // Enqueue immediate backfills for the most recent messages first.
case waProto.HistorySync_INITIAL_BOOTSTRAP: user.EnqueueImmedateBackfill(portal, i)
// Enqueue immediate backfills for the most recent messages first. // Enqueue deferred backfills as configured.
maxMessages := historySyncConfig.Immediate.MaxEvents user.EnqueueDeferredBackfills(portal, len(nMostRecent), i)
initialBackfill := user.bridge.DB.BackfillQuery.NewWithValues(user.MXID, database.BackfillImmediate, i, &portal.Key, nil, nil, maxMessages, maxMessages, 0)
initialBackfill.Insert()
case waProto.HistorySync_FULL:
// Enqueue deferred backfills as configured.
for j, backfillStage := range historySyncConfig.Deferred {
var startDate *time.Time = nil
if backfillStage.StartDaysAgo > 0 {
startDaysAgo := time.Now().AddDate(0, 0, -backfillStage.StartDaysAgo)
startDate = &startDaysAgo
}
backfill := user.bridge.DB.BackfillQuery.NewWithValues(
user.MXID, database.BackfillDeferred, j*len(nMostRecent)+i, &portal.Key, startDate, nil, backfillStage.MaxBatchEvents, -1, backfillStage.BatchDelay)
backfill.Insert()
}
}
} }
// Tell the queue to check for new backfill requests. // Tell the queue to check for new backfill requests.

View file

@ -237,7 +237,7 @@ func (portal *Portal) handleMessageLoopItem(msg PortalMessage) {
return return
} }
portal.log.Debugln("Creating Matrix room from incoming message") portal.log.Debugln("Creating Matrix room from incoming message")
err := portal.CreateMatrixRoom(msg.source, nil, false) err := portal.CreateMatrixRoom(msg.source, nil, false, true)
if err != nil { if err != nil {
portal.log.Errorln("Failed to create portal room:", err) portal.log.Errorln("Failed to create portal room:", err)
return return
@ -1163,7 +1163,7 @@ func (portal *Portal) UpdateBridgeInfo() {
} }
} }
func (portal *Portal) CreateMatrixRoom(user *User, groupInfo *types.GroupInfo, isFullInfo bool) error { func (portal *Portal) CreateMatrixRoom(user *User, groupInfo *types.GroupInfo, isFullInfo, backfill bool) error {
portal.roomCreateLock.Lock() portal.roomCreateLock.Lock()
defer portal.roomCreateLock.Unlock() defer portal.roomCreateLock.Unlock()
if len(portal.MXID) > 0 { if len(portal.MXID) > 0 {
@ -1336,6 +1336,12 @@ func (portal *Portal) CreateMatrixRoom(user *User, groupInfo *types.GroupInfo, i
portal.FirstEventID = firstEventResp.EventID portal.FirstEventID = firstEventResp.EventID
portal.Update() portal.Update()
} }
if user.bridge.Config.Bridge.HistorySync.Backfill && backfill {
user.EnqueueImmedateBackfill(portal, 0)
user.EnqueueDeferredBackfills(portal, 1, 0)
user.BackfillQueue.ReCheckQueue <- true
}
return nil return nil
} }

View file

@ -346,7 +346,7 @@ func (prov *ProvisioningAPI) OpenGroup(w http.ResponseWriter, r *http.Request) {
portal := user.GetPortalByJID(info.JID) portal := user.GetPortalByJID(info.JID)
status := http.StatusOK status := http.StatusOK
if len(portal.MXID) == 0 { if len(portal.MXID) == 0 {
err = portal.CreateMatrixRoom(user, info, true) err = portal.CreateMatrixRoom(user, info, true, true)
if err != nil { if err != nil {
jsonResponse(w, http.StatusInternalServerError, Error{ jsonResponse(w, http.StatusInternalServerError, Error{
Error: fmt.Sprintf("Failed to create portal: %v", err), Error: fmt.Sprintf("Failed to create portal: %v", err),

View file

@ -937,7 +937,7 @@ func (user *User) ResyncGroups(createPortals bool) error {
portal := user.GetPortalByJID(group.JID) portal := user.GetPortalByJID(group.JID)
if len(portal.MXID) == 0 { if len(portal.MXID) == 0 {
if createPortals { if createPortals {
err = portal.CreateMatrixRoom(user, group, true) err = portal.CreateMatrixRoom(user, group, true, true)
if err != nil { if err != nil {
return fmt.Errorf("failed to create room for %s: %w", group.JID, err) return fmt.Errorf("failed to create room for %s: %w", group.JID, err)
} }
@ -1020,7 +1020,7 @@ func (user *User) markSelfReadFull(portal *Portal) {
func (user *User) handleGroupCreate(evt *events.JoinedGroup) { func (user *User) handleGroupCreate(evt *events.JoinedGroup) {
portal := user.GetPortalByJID(evt.JID) portal := user.GetPortalByJID(evt.JID)
if len(portal.MXID) == 0 { if len(portal.MXID) == 0 {
err := portal.CreateMatrixRoom(user, &evt.GroupInfo, true) err := portal.CreateMatrixRoom(user, &evt.GroupInfo, true, true)
if err != nil { if err != nil {
user.log.Errorln("Failed to create Matrix room after join notification: %v", err) user.log.Errorln("Failed to create Matrix room after join notification: %v", err)
} }
@ -1088,7 +1088,7 @@ func (user *User) StartPM(jid types.JID, reason string) (*Portal, *Puppet, bool,
return portal, puppet, false, nil return portal, puppet, false, nil
} }
} }
err := portal.CreateMatrixRoom(user, nil, false) err := portal.CreateMatrixRoom(user, nil, false, true)
return portal, puppet, true, err return portal, puppet, true, err
} }