aboutsummaryrefslogtreecommitdiff
path: root/roomserver/api
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-10-06 11:05:00 +0100
committerGitHub <noreply@github.com>2020-10-06 11:05:00 +0100
commitbf90db5b60d694d8af0e8ec1d90d2501604ab219 (patch)
tree610aaeae9455bb40fddfef437e385528fd934e2a /roomserver/api
parent8fb74fe99a968aa438d436bd251baf5a790e8156 (diff)
Remove KindRewrite (#1481)
* Don't send rewrite events * Remove final traces of rewrite events * Remove test that is no longer needed * Revert "Remove test that is no longer needed" This reverts commit 9a45babff690480acd656a52f2c2950a5f7e9ada. * Update test to use KindOutlier
Diffstat (limited to 'roomserver/api')
-rw-r--r--roomserver/api/input.go4
-rw-r--r--roomserver/api/wrapper.go93
2 files changed, 0 insertions, 97 deletions
diff --git a/roomserver/api/input.go b/roomserver/api/input.go
index 862a6fa1..a72e2d9a 100644
--- a/roomserver/api/input.go
+++ b/roomserver/api/input.go
@@ -35,10 +35,6 @@ const (
// KindBackfill event extend the contiguous graph going backwards.
// They always have state.
KindBackfill = 3
- // KindRewrite events are used when rewriting the head of the room
- // graph with entirely new state. The output events generated will
- // be state events rather than timeline events.
- KindRewrite = 4
)
// DoNotSendToOtherServers tells us not to send the event to other matrix
diff --git a/roomserver/api/wrapper.go b/roomserver/api/wrapper.go
index 24949fc6..a38c00df 100644
--- a/roomserver/api/wrapper.go
+++ b/roomserver/api/wrapper.go
@@ -80,99 +80,6 @@ func SendEventWithState(
return SendInputRoomEvents(ctx, rsAPI, ires)
}
-// SendEventWithRewrite writes an event with KindNew to the roomserver along
-// with a number of rewrite and outlier events for state and auth events
-// respectively.
-func SendEventWithRewrite(
- ctx context.Context, rsAPI RoomserverInternalAPI, state *gomatrixserverlib.RespState,
- event gomatrixserverlib.HeaderedEvent, haveEventIDs map[string]bool,
-) error {
- isCurrentState := map[string]struct{}{}
- for _, se := range state.StateEvents {
- isCurrentState[se.EventID()] = struct{}{}
- }
-
- authAndStateEvents, err := state.Events()
- if err != nil {
- return err
- }
-
- var ires []InputRoomEvent
- var stateIDs []string
-
- // This function generates three things:
- // A - A set of "rewrite" events, which will form the newly rewritten
- // state before the event, which includes every rewrite event that
- // came before it in its state
- // B - A set of "outlier" events, which are auth events but not part
- // of the rewritten state
- // C - A "new" event, which include all of the rewrite events in its
- // state
- for _, authOrStateEvent := range authAndStateEvents {
- if authOrStateEvent.StateKey() == nil {
- continue
- }
- if haveEventIDs[authOrStateEvent.EventID()] {
- continue
- }
- if event.StateKey() == nil {
- continue
- }
-
- // We will handle an event as if it's an outlier if one of the
- // following conditions is true:
- storeAsOutlier := false
- if _, ok := isCurrentState[authOrStateEvent.EventID()]; !ok {
- // The event is an auth event and isn't a part of the state set.
- // We'll send it as an outlier because we need it to be stored
- // in case something is referring to it as an auth event.
- storeAsOutlier = true
- }
-
- if storeAsOutlier {
- ires = append(ires, InputRoomEvent{
- Kind: KindOutlier,
- Event: authOrStateEvent.Headered(event.RoomVersion),
- AuthEventIDs: authOrStateEvent.AuthEventIDs(),
- })
- continue
- }
-
- // If the event isn't an outlier then we'll instead send it as a
- // rewrite event, so that it'll form part of the rewritten state.
- // These events will go through the membership and latest event
- // updaters and we will generate output events, but they will be
- // flagged as non-current (i.e. didn't just happen) events.
- // Each of these rewrite events includes all of the rewrite events
- // that came before in their StateEventIDs.
- ires = append(ires, InputRoomEvent{
- Kind: KindRewrite,
- Event: authOrStateEvent.Headered(event.RoomVersion),
- AuthEventIDs: authOrStateEvent.AuthEventIDs(),
- HasState: true,
- StateEventIDs: stateIDs,
- })
-
- // Add the event ID into the StateEventIDs of all subsequent
- // rewrite events, and the new event.
- stateIDs = append(stateIDs, authOrStateEvent.EventID())
- }
-
- // Send the final event as a new event, which will generate
- // a timeline output event for it. All of the rewrite events
- // that came before will be sent as StateEventIDs, forming a
- // new clean state before the event.
- ires = append(ires, InputRoomEvent{
- Kind: KindNew,
- Event: event,
- AuthEventIDs: event.AuthEventIDs(),
- HasState: true,
- StateEventIDs: stateIDs,
- })
-
- return SendInputRoomEvents(ctx, rsAPI, ires)
-}
-
// SendInputRoomEvents to the roomserver.
func SendInputRoomEvents(
ctx context.Context, rsAPI RoomserverInternalAPI, ires []InputRoomEvent,