2017-04-20 22:40:52 +00: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.
|
|
|
|
|
2017-02-03 13:52:32 +00:00
|
|
|
// Package types provides the types that are used internally within the roomserver.
|
|
|
|
package types
|
|
|
|
|
2017-02-09 16:48:14 +00:00
|
|
|
import (
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2017-02-09 16:48:14 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2017-02-15 11:05:45 +00:00
|
|
|
// EventTypeNID is a numeric ID for an event type.
|
|
|
|
type EventTypeNID int64
|
|
|
|
|
|
|
|
// EventStateKeyNID is a numeric ID for an event state_key.
|
|
|
|
type EventStateKeyNID int64
|
|
|
|
|
|
|
|
// EventNID is a numeric ID for an event.
|
|
|
|
type EventNID int64
|
|
|
|
|
|
|
|
// RoomNID is a numeric ID for a room.
|
|
|
|
type RoomNID int64
|
|
|
|
|
|
|
|
// StateSnapshotNID is a numeric ID for the state at an event.
|
|
|
|
type StateSnapshotNID int64
|
|
|
|
|
|
|
|
// StateBlockNID is a numeric ID for a block of state data.
|
|
|
|
// These blocks of state data are combined to form the actual state.
|
|
|
|
type StateBlockNID int64
|
|
|
|
|
2017-02-09 16:48:14 +00:00
|
|
|
// A StateKeyTuple is a pair of a numeric event type and a numeric state key.
|
|
|
|
// It is used to lookup state entries.
|
|
|
|
type StateKeyTuple struct {
|
|
|
|
// The numeric ID for the event type.
|
2017-02-15 11:05:45 +00:00
|
|
|
EventTypeNID EventTypeNID
|
2017-02-09 16:48:14 +00:00
|
|
|
// The numeric ID for the state key.
|
2017-02-15 11:05:45 +00:00
|
|
|
EventStateKeyNID EventStateKeyNID
|
2017-02-09 16:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LessThan returns true if this state key is less than the other state key.
|
|
|
|
// The ordering is arbitrary and is used to implement binary search and to efficiently deduplicate entries.
|
|
|
|
func (a StateKeyTuple) LessThan(b StateKeyTuple) bool {
|
|
|
|
if a.EventTypeNID != b.EventTypeNID {
|
|
|
|
return a.EventTypeNID < b.EventTypeNID
|
|
|
|
}
|
|
|
|
return a.EventStateKeyNID < b.EventStateKeyNID
|
|
|
|
}
|
|
|
|
|
|
|
|
// A StateEntry is an entry in the room state of a matrix room.
|
|
|
|
type StateEntry struct {
|
|
|
|
StateKeyTuple
|
|
|
|
// The numeric ID for the event.
|
2017-02-15 11:05:45 +00:00
|
|
|
EventNID EventNID
|
2017-02-09 16:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LessThan returns true if this state entry is less than the other state entry.
|
|
|
|
// The ordering is arbitrary and is used to implement binary search and to efficiently deduplicate entries.
|
|
|
|
func (a StateEntry) LessThan(b StateEntry) bool {
|
|
|
|
if a.StateKeyTuple != b.StateKeyTuple {
|
|
|
|
return a.StateKeyTuple.LessThan(b.StateKeyTuple)
|
|
|
|
}
|
|
|
|
return a.EventNID < b.EventNID
|
|
|
|
}
|
|
|
|
|
2017-02-15 11:05:45 +00:00
|
|
|
// StateAtEvent is the state before and after a matrix event.
|
|
|
|
type StateAtEvent struct {
|
2020-05-18 16:49:24 +00:00
|
|
|
// Should this state overwrite the latest events and memberships of the room?
|
|
|
|
// This might be necessary when rejoining a federated room after a period of
|
|
|
|
// absence, as our state and latest events will be out of date.
|
|
|
|
Overwrite bool
|
2017-02-15 11:05:45 +00:00
|
|
|
// The state before the event.
|
|
|
|
BeforeStateSnapshotNID StateSnapshotNID
|
|
|
|
// The state entry for the event itself, allows us to calculate the state after the event.
|
|
|
|
StateEntry
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsStateEvent returns whether the event the state is at is a state event.
|
|
|
|
func (s StateAtEvent) IsStateEvent() bool {
|
|
|
|
return s.EventStateKeyNID != 0
|
|
|
|
}
|
|
|
|
|
2017-02-21 14:50:30 +00:00
|
|
|
// StateAtEventAndReference is StateAtEvent and gomatrixserverlib.EventReference glued together.
|
|
|
|
// It is used when looking up the latest events in a room in the database.
|
|
|
|
// The gomatrixserverlib.EventReference is used to check whether a new event references the event.
|
|
|
|
// The StateAtEvent is used to construct the current state of the room from the latest events.
|
|
|
|
type StateAtEventAndReference struct {
|
|
|
|
StateAtEvent
|
|
|
|
gomatrixserverlib.EventReference
|
|
|
|
}
|
|
|
|
|
2017-02-09 16:48:14 +00:00
|
|
|
// An Event is a gomatrixserverlib.Event with the numeric event ID attached.
|
|
|
|
// It is when performing bulk event lookup in the database.
|
|
|
|
type Event struct {
|
2017-02-15 11:05:45 +00:00
|
|
|
EventNID EventNID
|
2017-02-09 16:48:14 +00:00
|
|
|
gomatrixserverlib.Event
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
// MRoomCreateNID is the numeric ID for the "m.room.create" event type.
|
|
|
|
MRoomCreateNID = 1
|
|
|
|
// MRoomPowerLevelsNID is the numeric ID for the "m.room.power_levels" event type.
|
|
|
|
MRoomPowerLevelsNID = 2
|
|
|
|
// MRoomJoinRulesNID is the numeric ID for the "m.room.join_rules" event type.
|
|
|
|
MRoomJoinRulesNID = 3
|
|
|
|
// MRoomThirdPartyInviteNID is the numeric ID for the "m.room.third_party_invite" event type.
|
|
|
|
MRoomThirdPartyInviteNID = 4
|
|
|
|
// MRoomMemberNID is the numeric ID for the "m.room.member" event type.
|
|
|
|
MRoomMemberNID = 5
|
|
|
|
// MRoomRedactionNID is the numeric ID for the "m.room.redaction" event type.
|
|
|
|
MRoomRedactionNID = 6
|
|
|
|
// MRoomHistoryVisibilityNID is the numeric ID for the "m.room.history_visibility" event type.
|
|
|
|
MRoomHistoryVisibilityNID = 7
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// EmptyStateKeyNID is the numeric ID for the empty state key.
|
|
|
|
EmptyStateKeyNID = 1
|
|
|
|
)
|
2017-02-15 11:05:45 +00:00
|
|
|
|
|
|
|
// StateBlockNIDList is used to return the result of bulk StateBlockNID lookups from the database.
|
|
|
|
type StateBlockNIDList struct {
|
|
|
|
StateSnapshotNID StateSnapshotNID
|
|
|
|
StateBlockNIDs []StateBlockNID
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateEntryList is used to return the result of bulk state entry lookups from the database.
|
|
|
|
type StateEntryList struct {
|
|
|
|
StateBlockNID StateBlockNID
|
|
|
|
StateEntries []StateEntry
|
|
|
|
}
|
2017-02-21 14:50:30 +00:00
|
|
|
|
|
|
|
// A RoomRecentEventsUpdater is used to update the recent events in a room.
|
|
|
|
// (On postgresql this wraps a database transaction that holds a "FOR UPDATE"
|
2017-08-08 15:38:03 +00:00
|
|
|
// lock on the row in the rooms table holding the latest events for the room.)
|
2017-02-21 14:50:30 +00:00
|
|
|
type RoomRecentEventsUpdater interface {
|
2020-04-03 13:29:06 +00:00
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion() gomatrixserverlib.RoomVersion
|
2017-03-07 10:25:01 +00:00
|
|
|
// The latest event IDs and state in the room.
|
|
|
|
LatestEvents() []StateAtEventAndReference
|
|
|
|
// The event ID of the latest event written to the output log in the room.
|
|
|
|
LastEventIDSent() string
|
|
|
|
// The current state of the room.
|
|
|
|
CurrentStateSnapshotNID() StateSnapshotNID
|
2017-02-21 14:50:30 +00:00
|
|
|
// Store the previous events referenced by an event.
|
|
|
|
// This adds the event NID to an entry in the database for each of the previous events.
|
|
|
|
// If there isn't an entry for one of previous events then an entry is created.
|
|
|
|
// If the entry already lists the event NID as a referrer then the entry unmodified.
|
|
|
|
// (i.e. the operation is idempotent)
|
|
|
|
StorePreviousEvents(eventNID EventNID, previousEventReferences []gomatrixserverlib.EventReference) error
|
|
|
|
// Check whether the eventReference is already referenced by another matrix event.
|
|
|
|
IsReferenced(eventReference gomatrixserverlib.EventReference) (bool, error)
|
|
|
|
// Set the list of latest events for the room.
|
|
|
|
// This replaces the current list stored in the database with the given list
|
2017-03-07 10:25:01 +00:00
|
|
|
SetLatestEvents(
|
|
|
|
roomNID RoomNID, latest []StateAtEventAndReference, lastEventNIDSent EventNID,
|
|
|
|
currentStateSnapshotNID StateSnapshotNID,
|
|
|
|
) error
|
2017-02-27 11:25:35 +00:00
|
|
|
// Check if the event has already be written to the output logs.
|
|
|
|
HasEventBeenSent(eventNID EventNID) (bool, error)
|
|
|
|
// Mark the event as having been sent to the output logs.
|
|
|
|
MarkEventAsSent(eventNID EventNID) error
|
2017-08-08 15:38:03 +00:00
|
|
|
// Build a membership updater for the target user in this room.
|
|
|
|
// It will share the same transaction as this updater.
|
2020-05-20 17:03:06 +00:00
|
|
|
MembershipUpdater(targetUserNID EventStateKeyNID, isTargetLocalUser bool) (MembershipUpdater, error)
|
2017-08-08 15:38:03 +00:00
|
|
|
// Implements Transaction so it can be committed or rolledback
|
2020-06-12 13:55:57 +00:00
|
|
|
sqlutil.Transaction
|
2017-08-08 15:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// A MembershipUpdater is used to update the membership of a user in a room.
|
|
|
|
// (On postgresql this wraps a database transaction that holds a "FOR UPDATE"
|
|
|
|
// lock on the row in the membership table for this user in the room)
|
|
|
|
// The caller should call one of SetToInvite, SetToJoin or SetToLeave once to
|
|
|
|
// make the update, or none of them if no update is required.
|
|
|
|
type MembershipUpdater interface {
|
|
|
|
// True if the target user is invited to the room before updating.
|
|
|
|
IsInvite() bool
|
|
|
|
// True if the target user is joined to the room before updating.
|
|
|
|
IsJoin() bool
|
|
|
|
// True if the target user is not invited or joined to the room before updating.
|
|
|
|
IsLeave() bool
|
|
|
|
// Set the state to invite.
|
|
|
|
// Returns whether this invite needs to be sent
|
|
|
|
SetToInvite(event gomatrixserverlib.Event) (needsSending bool, err error)
|
2017-08-21 15:34:26 +00:00
|
|
|
// Set the state to join or updates the event ID in the database.
|
2017-08-08 15:38:03 +00:00
|
|
|
// Returns a list of invite event IDs that this state change retired.
|
2017-08-21 15:34:26 +00:00
|
|
|
SetToJoin(senderUserID string, eventID string, isUpdate bool) (inviteEventIDs []string, err error)
|
2017-08-08 15:38:03 +00:00
|
|
|
// Set the state to leave.
|
|
|
|
// Returns a list of invite event IDs that this state change retired.
|
2017-08-21 15:34:26 +00:00
|
|
|
SetToLeave(senderUserID string, eventID string) (inviteEventIDs []string, err error)
|
2017-08-08 15:38:03 +00:00
|
|
|
// Implements Transaction so it can be committed or rolledback.
|
2020-06-12 13:55:57 +00:00
|
|
|
sqlutil.Transaction
|
2017-02-21 14:50:30 +00:00
|
|
|
}
|
2017-06-07 13:32:53 +00:00
|
|
|
|
|
|
|
// A MissingEventError is an error that happened because the roomserver was
|
|
|
|
// missing requested events from its database.
|
|
|
|
type MissingEventError string
|
|
|
|
|
|
|
|
func (e MissingEventError) Error() string { return string(e) }
|