account_data_table.go 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

package storage

import (
18
	"context"
19 20
	"database/sql"

21 22
	"github.com/matrix-org/dendrite/common"

23 24 25 26
	"github.com/matrix-org/dendrite/syncapi/types"
)

const accountDataSchema = `
27 28 29 30 31
-- This sequence is shared between all the tables generated from kafka logs.
CREATE SEQUENCE IF NOT EXISTS syncapi_stream_id;

-- Stores the types of account data that a user set has globally and in each room
-- and the stream ID when that type was last updated.
32
CREATE TABLE IF NOT EXISTS syncapi_account_data_type (
33 34
    -- An incrementing ID which denotes the position in the log that this event resides at.
    id BIGINT PRIMARY KEY DEFAULT nextval('syncapi_stream_id'),
35 36 37 38 39 40 41 42
    -- ID of the user the data belongs to
    user_id TEXT NOT NULL,
    -- ID of the room the data is related to (empty string if not related to a specific room)
    room_id TEXT NOT NULL,
    -- Type of the data
    type TEXT NOT NULL,

    -- We don't want two entries of the same type for the same user
43
    CONSTRAINT syncapi_account_data_unique UNIQUE (user_id, room_id, type)
44 45
);

46
CREATE UNIQUE INDEX IF NOT EXISTS syncapi_account_data_id_idx ON syncapi_account_data_type(id);
47 48 49
`

const insertAccountDataSQL = "" +
50
	"INSERT INTO syncapi_account_data_type (user_id, room_id, type) VALUES ($1, $2, $3)" +
51
	" ON CONFLICT ON CONSTRAINT syncapi_account_data_unique" +
52 53
	" DO UPDATE SET id = EXCLUDED.id" +
	" RETURNING id"
54 55

const selectAccountDataInRangeSQL = "" +
56
	"SELECT room_id, type FROM syncapi_account_data_type" +
57 58 59
	" WHERE user_id = $1 AND id > $2 AND id <= $3" +
	" ORDER BY id ASC"

60 61 62
const selectMaxAccountDataIDSQL = "" +
	"SELECT MAX(id) FROM syncapi_account_data_type"

63 64 65
type accountDataStatements struct {
	insertAccountDataStmt        *sql.Stmt
	selectAccountDataInRangeStmt *sql.Stmt
66
	selectMaxAccountDataIDStmt   *sql.Stmt
67 68 69 70 71 72 73 74 75 76 77 78 79
}

func (s *accountDataStatements) prepare(db *sql.DB) (err error) {
	_, err = db.Exec(accountDataSchema)
	if err != nil {
		return
	}
	if s.insertAccountDataStmt, err = db.Prepare(insertAccountDataSQL); err != nil {
		return
	}
	if s.selectAccountDataInRangeStmt, err = db.Prepare(selectAccountDataInRangeSQL); err != nil {
		return
	}
80 81 82
	if s.selectMaxAccountDataIDStmt, err = db.Prepare(selectMaxAccountDataIDSQL); err != nil {
		return
	}
83 84 85 86
	return
}

func (s *accountDataStatements) insertAccountData(
87 88
	ctx context.Context,
	userID, roomID, dataType string,
89
) (pos int64, err error) {
E
Erik Johnston 已提交
90
	err = s.insertAccountDataStmt.QueryRowContext(ctx, userID, roomID, dataType).Scan(&pos)
91 92 93 94
	return
}

func (s *accountDataStatements) selectAccountDataInRange(
95 96 97
	ctx context.Context,
	userID string,
	oldPos, newPos types.StreamPosition,
98 99 100 101 102 103 104 105 106 107
) (data map[string][]string, err error) {
	data = make(map[string][]string)

	// If both positions are the same, it means that the data was saved after the
	// latest room event. In that case, we need to decrement the old position as
	// it would prevent the SQL request from returning anything.
	if oldPos == newPos {
		oldPos--
	}

108
	rows, err := s.selectAccountDataInRangeStmt.QueryContext(ctx, userID, oldPos, newPos)
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
	if err != nil {
		return
	}

	for rows.Next() {
		var dataType string
		var roomID string

		if err = rows.Scan(&roomID, &dataType); err != nil {
			return
		}

		if len(data[roomID]) > 0 {
			data[roomID] = append(data[roomID], dataType)
		} else {
			data[roomID] = []string{dataType}
		}
	}

	return
}
130 131 132 133 134 135 136 137 138 139 140 141

func (s *accountDataStatements) selectMaxAccountDataID(
	ctx context.Context, txn *sql.Tx,
) (id int64, err error) {
	var nullableID sql.NullInt64
	stmt := common.TxStmt(txn, s.selectMaxAccountDataIDStmt)
	err = stmt.QueryRowContext(ctx).Scan(&nullableID)
	if nullableID.Valid {
		id = nullableID.Int64
	}
	return
}