2020-08-07 17:32:13 +01: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 sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2022-12-12 07:20:59 +00:00
|
|
|
"strings"
|
2020-08-07 17:32:13 +01:00
|
|
|
"time"
|
|
|
|
|
2022-12-12 07:20:59 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2023-04-19 15:50:33 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2022-12-12 07:20:59 +00:00
|
|
|
|
2020-08-07 17:32:13 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2023-02-20 13:58:03 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/tables"
|
2020-08-07 17:32:13 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
var staleDeviceListsSchema = `
|
|
|
|
-- Stores whether a user's device lists are stale or not.
|
|
|
|
CREATE TABLE IF NOT EXISTS keyserver_stale_device_lists (
|
|
|
|
user_id TEXT PRIMARY KEY NOT NULL,
|
|
|
|
domain TEXT NOT NULL,
|
|
|
|
is_stale BOOLEAN NOT NULL,
|
|
|
|
ts_added_secs BIGINT NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX IF NOT EXISTS keyserver_stale_device_lists_idx ON keyserver_stale_device_lists (domain, is_stale);
|
|
|
|
`
|
|
|
|
|
|
|
|
const upsertStaleDeviceListSQL = "" +
|
|
|
|
"INSERT INTO keyserver_stale_device_lists (user_id, domain, is_stale, ts_added_secs)" +
|
|
|
|
" VALUES ($1, $2, $3, $4)" +
|
|
|
|
" ON CONFLICT (user_id)" +
|
|
|
|
" DO UPDATE SET is_stale = $3, ts_added_secs = $4"
|
|
|
|
|
|
|
|
const selectStaleDeviceListsWithDomainsSQL = "" +
|
2022-11-07 14:07:47 +00:00
|
|
|
"SELECT user_id FROM keyserver_stale_device_lists WHERE is_stale = $1 AND domain = $2 ORDER BY ts_added_secs DESC"
|
2020-08-07 17:32:13 +01:00
|
|
|
|
|
|
|
const selectStaleDeviceListsSQL = "" +
|
2022-11-07 14:07:47 +00:00
|
|
|
"SELECT user_id FROM keyserver_stale_device_lists WHERE is_stale = $1 ORDER BY ts_added_secs DESC"
|
2020-08-07 17:32:13 +01:00
|
|
|
|
2022-12-12 07:20:59 +00:00
|
|
|
const deleteStaleDevicesSQL = "" +
|
|
|
|
"DELETE FROM keyserver_stale_device_lists WHERE user_id IN ($1)"
|
|
|
|
|
2020-08-07 17:32:13 +01:00
|
|
|
type staleDeviceListsStatements struct {
|
2020-08-21 10:42:08 +01:00
|
|
|
db *sql.DB
|
2020-08-07 17:32:13 +01:00
|
|
|
upsertStaleDeviceListStmt *sql.Stmt
|
|
|
|
selectStaleDeviceListsWithDomainsStmt *sql.Stmt
|
|
|
|
selectStaleDeviceListsStmt *sql.Stmt
|
2022-12-12 07:20:59 +00:00
|
|
|
// deleteStaleDeviceListsStmt *sql.Stmt // Prepared at runtime
|
2020-08-07 17:32:13 +01:00
|
|
|
}
|
|
|
|
|
2020-08-25 10:29:45 +01:00
|
|
|
func NewSqliteStaleDeviceListsTable(db *sql.DB) (tables.StaleDeviceLists, error) {
|
2020-08-21 10:42:08 +01:00
|
|
|
s := &staleDeviceListsStatements{
|
2020-08-25 10:29:45 +01:00
|
|
|
db: db,
|
2020-08-21 10:42:08 +01:00
|
|
|
}
|
2020-08-07 17:32:13 +01:00
|
|
|
_, err := db.Exec(staleDeviceListsSchema)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-12-12 07:20:59 +00:00
|
|
|
return s, sqlutil.StatementList{
|
|
|
|
{&s.upsertStaleDeviceListStmt, upsertStaleDeviceListSQL},
|
|
|
|
{&s.selectStaleDeviceListsStmt, selectStaleDeviceListsSQL},
|
|
|
|
{&s.selectStaleDeviceListsWithDomainsStmt, selectStaleDeviceListsWithDomainsSQL},
|
|
|
|
// { &s.deleteStaleDeviceListsStmt, deleteStaleDevicesSQL}, // Prepared at runtime
|
|
|
|
}.Prepare(db)
|
2020-08-07 17:32:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *staleDeviceListsStatements) InsertStaleDeviceList(ctx context.Context, userID string, isStale bool) error {
|
|
|
|
_, domain, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-04-19 15:50:33 +01:00
|
|
|
_, err = s.upsertStaleDeviceListStmt.ExecContext(ctx, userID, string(domain), isStale, spec.AsTimestamp(time.Now()))
|
2020-08-25 10:29:45 +01:00
|
|
|
return err
|
2020-08-07 17:32:13 +01:00
|
|
|
}
|
|
|
|
|
2023-04-19 15:50:33 +01:00
|
|
|
func (s *staleDeviceListsStatements) SelectUserIDsWithStaleDeviceLists(ctx context.Context, domains []spec.ServerName) ([]string, error) {
|
2020-08-07 17:32:13 +01:00
|
|
|
// we only query for 1 domain or all domains so optimise for those use cases
|
|
|
|
if len(domains) == 0 {
|
|
|
|
rows, err := s.selectStaleDeviceListsStmt.QueryContext(ctx, true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return rowsToUserIDs(ctx, rows)
|
|
|
|
}
|
|
|
|
var result []string
|
|
|
|
for _, domain := range domains {
|
|
|
|
rows, err := s.selectStaleDeviceListsWithDomainsStmt.QueryContext(ctx, true, string(domain))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
userIDs, err := rowsToUserIDs(ctx, rows)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result = append(result, userIDs...)
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2022-12-12 07:20:59 +00:00
|
|
|
// DeleteStaleDeviceLists removes users from stale device lists
|
|
|
|
func (s *staleDeviceListsStatements) DeleteStaleDeviceLists(
|
|
|
|
ctx context.Context, txn *sql.Tx, userIDs []string,
|
|
|
|
) error {
|
|
|
|
qry := strings.Replace(deleteStaleDevicesSQL, "($1)", sqlutil.QueryVariadic(len(userIDs)), 1)
|
|
|
|
stmt, err := s.db.Prepare(qry)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer internal.CloseAndLogIfError(ctx, stmt, "DeleteStaleDeviceLists: stmt.Close failed")
|
|
|
|
stmt = sqlutil.TxStmt(txn, stmt)
|
|
|
|
|
|
|
|
params := make([]any, len(userIDs))
|
|
|
|
for i := range userIDs {
|
|
|
|
params[i] = userIDs[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = stmt.ExecContext(ctx, params...)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-07 17:32:13 +01:00
|
|
|
func rowsToUserIDs(ctx context.Context, rows *sql.Rows) (result []string, err error) {
|
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "closing rowsToUserIDs failed")
|
|
|
|
for rows.Next() {
|
|
|
|
var userID string
|
|
|
|
if err := rows.Scan(&userID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result = append(result, userID)
|
|
|
|
}
|
|
|
|
return result, rows.Err()
|
|
|
|
}
|