2020-07-15 11:02:34 +00:00
|
|
|
// Copyright 2020 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"
|
2020-07-21 13:47:53 +00:00
|
|
|
"database/sql"
|
2020-07-15 11:02:34 +00:00
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/keyserver/api"
|
2020-08-07 16:32:13 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-07-15 11:02:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type OneTimeKeys interface {
|
|
|
|
SelectOneTimeKeys(ctx context.Context, userID, deviceID string, keyIDsWithAlgorithms []string) (map[string]json.RawMessage, error)
|
2020-08-03 11:29:58 +00:00
|
|
|
CountOneTimeKeys(ctx context.Context, userID, deviceID string) (*api.OneTimeKeysCount, error)
|
2020-08-25 09:29:45 +00:00
|
|
|
InsertOneTimeKeys(ctx context.Context, txn *sql.Tx, keys api.OneTimeKeys) (*api.OneTimeKeysCount, error)
|
2020-07-21 13:47:53 +00:00
|
|
|
// 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)
|
2020-07-15 11:02:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DeviceKeys interface {
|
2020-08-03 16:07:06 +00:00
|
|
|
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 int32, err error)
|
2020-08-05 12:41:16 +00:00
|
|
|
CountStreamIDsForUser(ctx context.Context, userID string, streamIDs []int64) (int, error)
|
2020-08-03 16:07:06 +00:00
|
|
|
SelectBatchDeviceKeys(ctx context.Context, userID string, deviceIDs []string) ([]api.DeviceMessage, error)
|
2020-08-12 21:43:02 +00:00
|
|
|
DeleteAllDeviceKeys(ctx context.Context, txn *sql.Tx, userID string) error
|
2020-07-15 11:02:34 +00:00
|
|
|
}
|
2020-07-28 16:38:30 +00:00
|
|
|
|
|
|
|
type KeyChanges interface {
|
|
|
|
InsertKeyChange(ctx context.Context, partition int32, offset int64, userID string) error
|
2020-07-30 13:52:21 +00:00
|
|
|
// 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 sarama.OffsetNewest means no upper offset.
|
|
|
|
SelectKeyChanges(ctx context.Context, partition int32, fromOffset, toOffset int64) (userIDs []string, latestOffset int64, err error)
|
2020-07-28 16:38:30 +00:00
|
|
|
}
|
2020-08-07 16:32:13 +00:00
|
|
|
|
|
|
|
type StaleDeviceLists interface {
|
|
|
|
InsertStaleDeviceList(ctx context.Context, userID string, isStale bool) error
|
|
|
|
SelectUserIDsWithStaleDeviceLists(ctx context.Context, domains []gomatrixserverlib.ServerName) ([]string, error)
|
|
|
|
}
|