2022-02-18 13:51:59 +00:00
|
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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 tables
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"encoding/json"
|
2022-05-04 18:04:28 +01:00
|
|
|
"time"
|
2022-02-18 13:51:59 +00:00
|
|
|
|
2023-02-20 13:58:03 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2022-11-02 10:18:11 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2023-04-06 09:55:01 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/fclient"
|
2022-11-02 10:18:11 +00:00
|
|
|
|
2022-02-18 13:51:59 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2022-05-04 18:04:28 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/types"
|
2022-02-18 13:51:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type AccountDataTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertAccountData(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, roomID, dataType string, content json.RawMessage) error
|
|
|
|
SelectAccountData(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (map[string]json.RawMessage, map[string]map[string]json.RawMessage, error)
|
|
|
|
SelectAccountDataByType(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName, roomID, dataType string) (data json.RawMessage, err error)
|
2022-02-18 13:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AccountsTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertAccount(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, hash, appserviceID string, accountType api.AccountType) (*api.Account, error)
|
|
|
|
UpdatePassword(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName, passwordHash string) (err error)
|
|
|
|
DeactivateAccount(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (err error)
|
|
|
|
SelectPasswordHash(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (hash string, err error)
|
|
|
|
SelectAccountByLocalpart(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (*api.Account, error)
|
|
|
|
SelectNewNumericLocalpart(ctx context.Context, txn *sql.Tx, serverName gomatrixserverlib.ServerName) (id int64, err error)
|
2022-02-18 13:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DevicesTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertDevice(ctx context.Context, txn *sql.Tx, id, localpart string, serverName gomatrixserverlib.ServerName, accessToken string, displayName *string, ipAddr, userAgent string) (*api.Device, error)
|
2023-02-17 10:39:46 +00:00
|
|
|
InsertDeviceWithSessionID(ctx context.Context, txn *sql.Tx, id, localpart string, serverName gomatrixserverlib.ServerName, accessToken string, displayName *string, ipAddr, userAgent string, sessionID int64) (*api.Device, error)
|
2022-11-11 16:41:37 +00:00
|
|
|
DeleteDevice(ctx context.Context, txn *sql.Tx, id, localpart string, serverName gomatrixserverlib.ServerName) error
|
|
|
|
DeleteDevices(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, devices []string) error
|
|
|
|
DeleteDevicesByLocalpart(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, exceptDeviceID string) error
|
|
|
|
UpdateDeviceName(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, deviceID string, displayName *string) error
|
2022-02-18 13:51:59 +00:00
|
|
|
SelectDeviceByToken(ctx context.Context, accessToken string) (*api.Device, error)
|
2022-11-11 16:41:37 +00:00
|
|
|
SelectDeviceByID(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName, deviceID string) (*api.Device, error)
|
|
|
|
SelectDevicesByLocalpart(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, exceptDeviceID string) ([]api.Device, error)
|
2022-02-18 13:51:59 +00:00
|
|
|
SelectDevicesByID(ctx context.Context, deviceIDs []string) ([]api.Device, error)
|
2022-11-11 16:41:37 +00:00
|
|
|
UpdateDeviceLastSeen(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, deviceID, ipAddr, userAgent string) error
|
2022-02-18 13:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type KeyBackupTable interface {
|
|
|
|
CountKeys(ctx context.Context, txn *sql.Tx, userID, version string) (count int64, err error)
|
|
|
|
InsertBackupKey(ctx context.Context, txn *sql.Tx, userID, version string, key api.InternalKeyBackupSession) (err error)
|
|
|
|
UpdateBackupKey(ctx context.Context, txn *sql.Tx, userID, version string, key api.InternalKeyBackupSession) (err error)
|
|
|
|
SelectKeys(ctx context.Context, txn *sql.Tx, userID, version string) (map[string]map[string]api.KeyBackupSession, error)
|
|
|
|
SelectKeysByRoomID(ctx context.Context, txn *sql.Tx, userID, version, roomID string) (map[string]map[string]api.KeyBackupSession, error)
|
|
|
|
SelectKeysByRoomIDAndSessionID(ctx context.Context, txn *sql.Tx, userID, version, roomID, sessionID string) (map[string]map[string]api.KeyBackupSession, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type KeyBackupVersionTable interface {
|
|
|
|
InsertKeyBackup(ctx context.Context, txn *sql.Tx, userID, algorithm string, authData json.RawMessage, etag string) (version string, err error)
|
|
|
|
UpdateKeyBackupAuthData(ctx context.Context, txn *sql.Tx, userID, version string, authData json.RawMessage) error
|
|
|
|
UpdateKeyBackupETag(ctx context.Context, txn *sql.Tx, userID, version, etag string) error
|
|
|
|
DeleteKeyBackup(ctx context.Context, txn *sql.Tx, userID, version string) (bool, error)
|
|
|
|
SelectKeyBackup(ctx context.Context, txn *sql.Tx, userID, version string) (versionResult, algorithm string, authData json.RawMessage, etag string, deleted bool, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginTokenTable interface {
|
|
|
|
InsertLoginToken(ctx context.Context, txn *sql.Tx, metadata *api.LoginTokenMetadata, data *api.LoginTokenData) error
|
|
|
|
DeleteLoginToken(ctx context.Context, txn *sql.Tx, token string) error
|
|
|
|
SelectLoginToken(ctx context.Context, token string) (*api.LoginTokenData, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type OpenIDTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertOpenIDToken(ctx context.Context, txn *sql.Tx, token, localpart string, serverName gomatrixserverlib.ServerName, expiresAtMS int64) (err error)
|
2022-02-18 13:51:59 +00:00
|
|
|
SelectOpenIDTokenAtrributes(ctx context.Context, token string) (*api.OpenIDTokenAttributes, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProfileTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertProfile(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName) error
|
|
|
|
SelectProfileByLocalpart(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (*authtypes.Profile, error)
|
|
|
|
SetAvatarURL(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, avatarURL string) (*authtypes.Profile, bool, error)
|
|
|
|
SetDisplayName(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, displayName string) (*authtypes.Profile, bool, error)
|
2022-02-18 13:51:59 +00:00
|
|
|
SelectProfilesBySearch(ctx context.Context, searchString string, limit int) ([]authtypes.Profile, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ThreePIDTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
SelectLocalpartForThreePID(ctx context.Context, txn *sql.Tx, threepid string, medium string) (localpart string, serverName gomatrixserverlib.ServerName, err error)
|
|
|
|
SelectThreePIDsForLocalpart(ctx context.Context, localpart string, serverName gomatrixserverlib.ServerName) (threepids []authtypes.ThreePID, err error)
|
|
|
|
InsertThreePID(ctx context.Context, txn *sql.Tx, threepid, medium, localpart string, serverName gomatrixserverlib.ServerName) (err error)
|
2022-02-18 13:51:59 +00:00
|
|
|
DeleteThreePID(ctx context.Context, txn *sql.Tx, threepid string, medium string) (err error)
|
|
|
|
}
|
2022-03-03 11:40:53 +00:00
|
|
|
|
|
|
|
type PusherTable interface {
|
2022-11-11 16:41:37 +00:00
|
|
|
InsertPusher(ctx context.Context, txn *sql.Tx, session_id int64, pushkey string, pushkeyTS int64, kind api.PusherKind, appid, appdisplayname, devicedisplayname, profiletag, lang, data, localpart string, serverName gomatrixserverlib.ServerName) error
|
|
|
|
SelectPushers(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName) ([]api.Pusher, error)
|
|
|
|
DeletePusher(ctx context.Context, txn *sql.Tx, appid, pushkey, localpart string, serverName gomatrixserverlib.ServerName) error
|
2022-03-03 11:40:53 +00:00
|
|
|
DeletePushers(ctx context.Context, txn *sql.Tx, appid, pushkey string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationTable interface {
|
2022-03-03 16:45:06 +00:00
|
|
|
Clean(ctx context.Context, txn *sql.Tx) error
|
2022-11-11 16:41:37 +00:00
|
|
|
Insert(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, eventID string, pos uint64, highlight bool, n *api.Notification) error
|
|
|
|
DeleteUpTo(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, roomID string, pos uint64) (affected bool, _ error)
|
|
|
|
UpdateRead(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, roomID string, pos uint64, v bool) (affected bool, _ error)
|
|
|
|
Select(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, fromID int64, limit int, filter NotificationFilter) ([]*api.Notification, int64, error)
|
|
|
|
SelectCount(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, filter NotificationFilter) (int64, error)
|
|
|
|
SelectRoomCounts(ctx context.Context, txn *sql.Tx, localpart string, serverName gomatrixserverlib.ServerName, roomID string) (total int64, highlight int64, _ error)
|
2022-03-03 11:40:53 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 18:04:28 +01:00
|
|
|
type StatsTable interface {
|
|
|
|
UserStatistics(ctx context.Context, txn *sql.Tx) (*types.UserStatistics, *types.DatabaseEngine, error)
|
2022-11-02 10:18:11 +00:00
|
|
|
DailyRoomsMessages(ctx context.Context, txn *sql.Tx, serverName gomatrixserverlib.ServerName) (msgStats types.MessageStats, activeRooms, activeE2EERooms int64, err error)
|
2022-05-04 18:04:28 +01:00
|
|
|
UpdateUserDailyVisits(ctx context.Context, txn *sql.Tx, startTime, lastUpdate time.Time) error
|
2022-11-02 10:18:11 +00:00
|
|
|
UpsertDailyStats(ctx context.Context, txn *sql.Tx, serverName gomatrixserverlib.ServerName, stats types.MessageStats, activeRooms, activeE2EERooms int64) error
|
2022-05-04 18:04:28 +01:00
|
|
|
}
|
|
|
|
|
2022-03-03 11:40:53 +00:00
|
|
|
type NotificationFilter uint32
|
|
|
|
|
|
|
|
const (
|
|
|
|
// HighlightNotifications returns notifications that had a
|
|
|
|
// "highlight" tweak assigned to them from evaluating push rules.
|
|
|
|
HighlightNotifications NotificationFilter = 1 << iota
|
|
|
|
|
|
|
|
// NonHighlightNotifications returns notifications that don't
|
|
|
|
// match HighlightNotifications.
|
|
|
|
NonHighlightNotifications
|
|
|
|
|
|
|
|
// NoNotifications is a filter to exclude all types of
|
|
|
|
// notifications. It's useful as a zero value, but isn't likely to
|
|
|
|
// be used in a call to Notifications.Select*.
|
|
|
|
NoNotifications NotificationFilter = 0
|
|
|
|
|
|
|
|
// AllNotifications is a filter to include all types of
|
|
|
|
// notifications in Notifications.Select*. Note that PostgreSQL
|
|
|
|
// balks if this doesn't fit in INTEGER, even though we use
|
|
|
|
// uint32.
|
|
|
|
AllNotifications NotificationFilter = (1 << 31) - 1
|
|
|
|
)
|
2023-02-20 13:58:03 +00:00
|
|
|
|
|
|
|
type OneTimeKeys interface {
|
|
|
|
SelectOneTimeKeys(ctx context.Context, userID, deviceID string, keyIDsWithAlgorithms []string) (map[string]json.RawMessage, error)
|
|
|
|
CountOneTimeKeys(ctx context.Context, userID, deviceID string) (*api.OneTimeKeysCount, error)
|
|
|
|
InsertOneTimeKeys(ctx context.Context, txn *sql.Tx, keys api.OneTimeKeys) (*api.OneTimeKeysCount, error)
|
|
|
|
// SelectAndDeleteOneTimeKey selects a single one time key matching the user/device/algorithm specified and returns the algo:key_id => JSON.
|
|
|
|
// Returns an empty map if the key does not exist.
|
|
|
|
SelectAndDeleteOneTimeKey(ctx context.Context, txn *sql.Tx, userID, deviceID, algorithm string) (map[string]json.RawMessage, error)
|
|
|
|
DeleteOneTimeKeys(ctx context.Context, txn *sql.Tx, userID, deviceID string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeviceKeys interface {
|
|
|
|
SelectDeviceKeysJSON(ctx context.Context, keys []api.DeviceMessage) error
|
|
|
|
InsertDeviceKeys(ctx context.Context, txn *sql.Tx, keys []api.DeviceMessage) error
|
|
|
|
SelectMaxStreamIDForUser(ctx context.Context, txn *sql.Tx, userID string) (streamID int64, err error)
|
|
|
|
CountStreamIDsForUser(ctx context.Context, userID string, streamIDs []int64) (int, error)
|
|
|
|
SelectBatchDeviceKeys(ctx context.Context, userID string, deviceIDs []string, includeEmpty bool) ([]api.DeviceMessage, error)
|
|
|
|
DeleteDeviceKeys(ctx context.Context, txn *sql.Tx, userID, deviceID string) error
|
|
|
|
DeleteAllDeviceKeys(ctx context.Context, txn *sql.Tx, userID string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type KeyChanges interface {
|
|
|
|
InsertKeyChange(ctx context.Context, userID string) (int64, error)
|
|
|
|
// SelectKeyChanges returns the set (de-duplicated) of users who have changed their keys between the two offsets.
|
|
|
|
// Results are exclusive of fromOffset and inclusive of toOffset. A toOffset of types.OffsetNewest means no upper offset.
|
|
|
|
SelectKeyChanges(ctx context.Context, fromOffset, toOffset int64) (userIDs []string, latestOffset int64, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type StaleDeviceLists interface {
|
|
|
|
InsertStaleDeviceList(ctx context.Context, userID string, isStale bool) error
|
|
|
|
SelectUserIDsWithStaleDeviceLists(ctx context.Context, domains []gomatrixserverlib.ServerName) ([]string, error)
|
|
|
|
DeleteStaleDeviceLists(ctx context.Context, txn *sql.Tx, userIDs []string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type CrossSigningKeys interface {
|
|
|
|
SelectCrossSigningKeysForUser(ctx context.Context, txn *sql.Tx, userID string) (r types.CrossSigningKeyMap, err error)
|
2023-04-06 09:55:01 +01:00
|
|
|
UpsertCrossSigningKeysForUser(ctx context.Context, txn *sql.Tx, userID string, keyType fclient.CrossSigningKeyPurpose, keyData gomatrixserverlib.Base64Bytes) error
|
2023-02-20 13:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CrossSigningSigs interface {
|
|
|
|
SelectCrossSigningSigsForTarget(ctx context.Context, txn *sql.Tx, originUserID, targetUserID string, targetKeyID gomatrixserverlib.KeyID) (r types.CrossSigningSigMap, err error)
|
|
|
|
UpsertCrossSigningSigsForTarget(ctx context.Context, txn *sql.Tx, originUserID string, originKeyID gomatrixserverlib.KeyID, targetUserID string, targetKeyID gomatrixserverlib.KeyID, signature gomatrixserverlib.Base64Bytes) error
|
|
|
|
DeleteCrossSigningSigsForTarget(ctx context.Context, txn *sql.Tx, targetUserID string, targetKeyID gomatrixserverlib.KeyID) error
|
|
|
|
}
|