2020-05-26 14:42:42 +00:00
|
|
|
package tables
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
2020-05-26 15:45:28 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-09-07 11:38:09 +00:00
|
|
|
"github.com/tidwall/gjson"
|
2020-05-26 14:42:42 +00:00
|
|
|
)
|
|
|
|
|
2020-05-26 15:45:28 +00:00
|
|
|
type EventJSONPair struct {
|
|
|
|
EventNID types.EventNID
|
|
|
|
EventJSON []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventJSON interface {
|
2020-07-06 16:49:15 +00:00
|
|
|
// Insert the event JSON. On conflict, replace the event JSON with the new value (for redactions).
|
2020-05-26 15:45:28 +00:00
|
|
|
InsertEventJSON(ctx context.Context, tx *sql.Tx, eventNID types.EventNID, eventJSON []byte) error
|
|
|
|
BulkSelectEventJSON(ctx context.Context, eventNIDs []types.EventNID) ([]EventJSONPair, error)
|
|
|
|
}
|
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
type EventTypes interface {
|
|
|
|
InsertEventTypeNID(ctx context.Context, tx *sql.Tx, eventType string) (types.EventTypeNID, error)
|
|
|
|
SelectEventTypeNID(ctx context.Context, tx *sql.Tx, eventType string) (types.EventTypeNID, error)
|
|
|
|
BulkSelectEventTypeNID(ctx context.Context, eventTypes []string) (map[string]types.EventTypeNID, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventStateKeys interface {
|
|
|
|
InsertEventStateKeyNID(ctx context.Context, txn *sql.Tx, eventStateKey string) (types.EventStateKeyNID, error)
|
|
|
|
SelectEventStateKeyNID(ctx context.Context, txn *sql.Tx, eventStateKey string) (types.EventStateKeyNID, error)
|
|
|
|
BulkSelectEventStateKeyNID(ctx context.Context, eventStateKeys []string) (map[string]types.EventStateKeyNID, error)
|
|
|
|
BulkSelectEventStateKey(ctx context.Context, eventStateKeyNIDs []types.EventStateKeyNID) (map[types.EventStateKeyNID]string, error)
|
|
|
|
}
|
2020-05-26 15:45:28 +00:00
|
|
|
|
|
|
|
type Events interface {
|
|
|
|
InsertEvent(c context.Context, txn *sql.Tx, i types.RoomNID, j types.EventTypeNID, k types.EventStateKeyNID, eventID string, referenceSHA256 []byte, authEventNIDs []types.EventNID, depth int64) (types.EventNID, types.StateSnapshotNID, error)
|
|
|
|
SelectEvent(ctx context.Context, txn *sql.Tx, eventID string) (types.EventNID, types.StateSnapshotNID, error)
|
|
|
|
// bulkSelectStateEventByID lookups a list of state events by event ID.
|
|
|
|
// If any of the requested events are missing from the database it returns a types.MissingEventError
|
|
|
|
BulkSelectStateEventByID(ctx context.Context, eventIDs []string) ([]types.StateEntry, error)
|
|
|
|
// BulkSelectStateAtEventByID lookups the state at a list of events by event ID.
|
|
|
|
// If any of the requested events are missing from the database it returns a types.MissingEventError.
|
|
|
|
// If we do not have the state for any of the requested events it returns a types.MissingEventError.
|
|
|
|
BulkSelectStateAtEventByID(ctx context.Context, eventIDs []string) ([]types.StateAtEvent, error)
|
2020-08-20 15:24:33 +00:00
|
|
|
UpdateEventState(ctx context.Context, txn *sql.Tx, eventNID types.EventNID, stateNID types.StateSnapshotNID) error
|
2020-05-26 15:45:28 +00:00
|
|
|
SelectEventSentToOutput(ctx context.Context, txn *sql.Tx, eventNID types.EventNID) (sentToOutput bool, err error)
|
|
|
|
UpdateEventSentToOutput(ctx context.Context, txn *sql.Tx, eventNID types.EventNID) error
|
|
|
|
SelectEventID(ctx context.Context, txn *sql.Tx, eventNID types.EventNID) (eventID string, err error)
|
|
|
|
BulkSelectStateAtEventAndReference(ctx context.Context, txn *sql.Tx, eventNIDs []types.EventNID) ([]types.StateAtEventAndReference, error)
|
|
|
|
BulkSelectEventReference(ctx context.Context, txn *sql.Tx, eventNIDs []types.EventNID) ([]gomatrixserverlib.EventReference, error)
|
|
|
|
// BulkSelectEventID returns a map from numeric event ID to string event ID.
|
|
|
|
BulkSelectEventID(ctx context.Context, eventNIDs []types.EventNID) (map[types.EventNID]string, error)
|
|
|
|
// BulkSelectEventNIDs returns a map from string event ID to numeric event ID.
|
|
|
|
// If an event ID is not in the database then it is omitted from the map.
|
|
|
|
BulkSelectEventNID(ctx context.Context, eventIDs []string) (map[string]types.EventNID, error)
|
|
|
|
SelectMaxEventDepth(ctx context.Context, txn *sql.Tx, eventNIDs []types.EventNID) (int64, error)
|
2020-05-26 17:23:39 +00:00
|
|
|
SelectRoomNIDForEventNID(ctx context.Context, eventNID types.EventNID) (roomNID types.RoomNID, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Rooms interface {
|
|
|
|
InsertRoomNID(ctx context.Context, txn *sql.Tx, roomID string, roomVersion gomatrixserverlib.RoomVersion) (types.RoomNID, error)
|
|
|
|
SelectRoomNID(ctx context.Context, txn *sql.Tx, roomID string) (types.RoomNID, error)
|
|
|
|
SelectLatestEventNIDs(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID) ([]types.EventNID, types.StateSnapshotNID, error)
|
|
|
|
SelectLatestEventsNIDsForUpdate(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID) ([]types.EventNID, types.EventNID, types.StateSnapshotNID, error)
|
|
|
|
UpdateLatestEventNIDs(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, eventNIDs []types.EventNID, lastEventSentNID types.EventNID, stateSnapshotNID types.StateSnapshotNID) error
|
|
|
|
SelectRoomVersionForRoomNID(ctx context.Context, roomNID types.RoomNID) (gomatrixserverlib.RoomVersion, error)
|
2020-09-01 11:40:49 +00:00
|
|
|
SelectRoomInfo(ctx context.Context, roomID string) (*types.RoomInfo, error)
|
2020-09-03 16:20:54 +00:00
|
|
|
SelectRoomIDs(ctx context.Context) ([]string, error)
|
|
|
|
BulkSelectRoomIDs(ctx context.Context, roomNIDs []types.RoomNID) ([]string, error)
|
2020-09-03 17:27:02 +00:00
|
|
|
BulkSelectRoomNIDs(ctx context.Context, roomIDs []string) ([]types.RoomNID, error)
|
2020-05-26 17:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Transactions interface {
|
|
|
|
InsertTransaction(ctx context.Context, txn *sql.Tx, transactionID string, sessionID int64, userID string, eventID string) error
|
|
|
|
SelectTransactionEventID(ctx context.Context, transactionID string, sessionID int64, userID string) (eventID string, err error)
|
2020-05-26 15:45:28 +00:00
|
|
|
}
|
2020-05-27 08:36:09 +00:00
|
|
|
|
|
|
|
type StateSnapshot interface {
|
|
|
|
InsertState(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, stateBlockNIDs []types.StateBlockNID) (stateNID types.StateSnapshotNID, err error)
|
|
|
|
BulkSelectStateBlockNIDs(ctx context.Context, stateNIDs []types.StateSnapshotNID) ([]types.StateBlockNIDList, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type StateBlock interface {
|
|
|
|
BulkInsertStateData(ctx context.Context, txn *sql.Tx, entries []types.StateEntry) (types.StateBlockNID, error)
|
|
|
|
BulkSelectStateBlockEntries(ctx context.Context, stateBlockNIDs []types.StateBlockNID) ([]types.StateEntryList, error)
|
|
|
|
BulkSelectFilteredStateBlockEntries(ctx context.Context, stateBlockNIDs []types.StateBlockNID, stateKeyTuples []types.StateKeyTuple) ([]types.StateEntryList, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type RoomAliases interface {
|
2020-08-20 15:24:33 +00:00
|
|
|
InsertRoomAlias(ctx context.Context, txn *sql.Tx, alias string, roomID string, creatorUserID string) (err error)
|
2020-05-27 08:36:09 +00:00
|
|
|
SelectRoomIDFromAlias(ctx context.Context, alias string) (roomID string, err error)
|
|
|
|
SelectAliasesFromRoomID(ctx context.Context, roomID string) ([]string, error)
|
|
|
|
SelectCreatorIDFromAlias(ctx context.Context, alias string) (creatorID string, err error)
|
2020-08-20 15:24:33 +00:00
|
|
|
DeleteRoomAlias(ctx context.Context, txn *sql.Tx, alias string) (err error)
|
2020-05-27 08:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PreviousEvents interface {
|
|
|
|
InsertPreviousEvent(ctx context.Context, txn *sql.Tx, previousEventID string, previousEventReferenceSHA256 []byte, eventNID types.EventNID) error
|
|
|
|
// Check if the event reference exists
|
|
|
|
// Returns sql.ErrNoRows if the event reference doesn't exist.
|
|
|
|
SelectPreviousEventExists(ctx context.Context, txn *sql.Tx, eventID string, eventReferenceSHA256 []byte) error
|
|
|
|
}
|
2020-05-27 10:03:47 +00:00
|
|
|
|
|
|
|
type Invites interface {
|
|
|
|
InsertInviteEvent(ctx context.Context, txn *sql.Tx, inviteEventID string, roomNID types.RoomNID, targetUserNID, senderUserNID types.EventStateKeyNID, inviteEventJSON []byte) (bool, error)
|
|
|
|
UpdateInviteRetired(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, targetUserNID types.EventStateKeyNID) ([]string, error)
|
2020-06-26 10:07:52 +00:00
|
|
|
// SelectInviteActiveForUserInRoom returns a list of sender state key NIDs and invite event IDs matching those nids.
|
|
|
|
SelectInviteActiveForUserInRoom(ctx context.Context, targetUserNID types.EventStateKeyNID, roomNID types.RoomNID) ([]types.EventStateKeyNID, []string, error)
|
2020-05-27 10:03:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type MembershipState int64
|
|
|
|
|
|
|
|
const (
|
|
|
|
MembershipStateLeaveOrBan MembershipState = 1
|
|
|
|
MembershipStateInvite MembershipState = 2
|
|
|
|
MembershipStateJoin MembershipState = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
type Membership interface {
|
|
|
|
InsertMembership(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, targetUserNID types.EventStateKeyNID, localTarget bool) error
|
|
|
|
SelectMembershipForUpdate(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, targetUserNID types.EventStateKeyNID) (MembershipState, error)
|
|
|
|
SelectMembershipFromRoomAndTarget(ctx context.Context, roomNID types.RoomNID, targetUserNID types.EventStateKeyNID) (types.EventNID, MembershipState, error)
|
|
|
|
SelectMembershipsFromRoom(ctx context.Context, roomNID types.RoomNID, localOnly bool) (eventNIDs []types.EventNID, err error)
|
|
|
|
SelectMembershipsFromRoomAndMembership(ctx context.Context, roomNID types.RoomNID, membership MembershipState, localOnly bool) (eventNIDs []types.EventNID, err error)
|
|
|
|
UpdateMembership(ctx context.Context, txn *sql.Tx, roomNID types.RoomNID, targetUserNID types.EventStateKeyNID, senderUserNID types.EventStateKeyNID, membership MembershipState, eventNID types.EventNID) error
|
2020-09-03 16:20:54 +00:00
|
|
|
SelectRoomsWithMembership(ctx context.Context, userID types.EventStateKeyNID, membershipState MembershipState) ([]types.RoomNID, error)
|
2020-09-03 17:27:02 +00:00
|
|
|
// SelectJoinedUsersSetForRooms returns the set of all users in the rooms who are joined to any of these rooms, along with the
|
|
|
|
// counts of how many rooms they are joined.
|
|
|
|
SelectJoinedUsersSetForRooms(ctx context.Context, roomNIDs []types.RoomNID) (map[types.EventStateKeyNID]int, error)
|
|
|
|
SelectKnownUsers(ctx context.Context, userID types.EventStateKeyNID, searchString string, limit int) ([]string, error)
|
2020-05-27 10:03:47 +00:00
|
|
|
}
|
2020-07-02 14:41:18 +00:00
|
|
|
|
|
|
|
type Published interface {
|
2020-08-20 15:24:33 +00:00
|
|
|
UpsertRoomPublished(ctx context.Context, txn *sql.Tx, roomID string, published bool) (err error)
|
2020-07-02 14:41:18 +00:00
|
|
|
SelectPublishedFromRoomID(ctx context.Context, roomID string) (published bool, err error)
|
|
|
|
SelectAllPublishedRooms(ctx context.Context, published bool) ([]string, error)
|
|
|
|
}
|
2020-07-06 16:49:15 +00:00
|
|
|
|
|
|
|
type RedactionInfo struct {
|
|
|
|
// whether this redaction is validated (we have both events)
|
|
|
|
Validated bool
|
|
|
|
// the ID of the event being redacted
|
|
|
|
RedactsEventID string
|
|
|
|
// the ID of the redaction event
|
|
|
|
RedactionEventID string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Redactions interface {
|
|
|
|
InsertRedaction(ctx context.Context, txn *sql.Tx, info RedactionInfo) error
|
2020-07-07 11:51:55 +00:00
|
|
|
// SelectRedactionInfoByRedactionEventID returns the redaction info for the given redaction event ID, or nil if there is no match.
|
|
|
|
SelectRedactionInfoByRedactionEventID(ctx context.Context, txn *sql.Tx, redactionEventID string) (*RedactionInfo, error)
|
|
|
|
// SelectRedactionInfoByEventBeingRedacted returns the redaction info for the given redacted event ID, or nil if there is no match.
|
|
|
|
SelectRedactionInfoByEventBeingRedacted(ctx context.Context, txn *sql.Tx, eventID string) (*RedactionInfo, error)
|
2020-07-06 16:49:15 +00:00
|
|
|
// Mark this redaction event as having been validated. This means we have both sides of the redaction and have
|
|
|
|
// successfully redacted the event JSON.
|
|
|
|
MarkRedactionValidated(ctx context.Context, txn *sql.Tx, redactionEventID string, validated bool) error
|
|
|
|
}
|
2020-09-07 11:38:09 +00:00
|
|
|
|
|
|
|
// StrippedEvent represents a stripped event for returning extracted content values.
|
|
|
|
type StrippedEvent struct {
|
|
|
|
RoomID string
|
|
|
|
EventType string
|
|
|
|
StateKey string
|
|
|
|
ContentValue string
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExtractContentValue from the given state event. For example, given an m.room.name event with:
|
|
|
|
// content: { name: "Foo" }
|
|
|
|
// this returns "Foo".
|
|
|
|
func ExtractContentValue(ev *gomatrixserverlib.HeaderedEvent) string {
|
|
|
|
content := ev.Content()
|
|
|
|
key := ""
|
|
|
|
switch ev.Type() {
|
|
|
|
case gomatrixserverlib.MRoomCreate:
|
|
|
|
key = "creator"
|
|
|
|
case gomatrixserverlib.MRoomCanonicalAlias:
|
|
|
|
key = "alias"
|
|
|
|
case gomatrixserverlib.MRoomHistoryVisibility:
|
|
|
|
key = "history_visibility"
|
|
|
|
case gomatrixserverlib.MRoomJoinRules:
|
|
|
|
key = "join_rule"
|
|
|
|
case gomatrixserverlib.MRoomMember:
|
|
|
|
key = "membership"
|
|
|
|
case gomatrixserverlib.MRoomName:
|
|
|
|
key = "name"
|
|
|
|
case "m.room.avatar":
|
|
|
|
key = "url"
|
|
|
|
case "m.room.topic":
|
|
|
|
key = "topic"
|
|
|
|
case "m.room.guest_access":
|
|
|
|
key = "guest_access"
|
|
|
|
}
|
|
|
|
result := gjson.GetBytes(content, key)
|
|
|
|
if !result.Exists() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
// this returns the empty string if this is not a string type
|
|
|
|
return result.Str
|
|
|
|
}
|