2020-02-13 18:27:33 +01:00
|
|
|
// 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 sqlite3
|
|
|
|
|
|
|
|
import (
|
2022-11-11 17:41:37 +01:00
|
|
|
"context"
|
|
|
|
"database/sql"
|
2021-07-27 18:08:53 +02:00
|
|
|
"fmt"
|
2021-04-07 14:26:20 +02:00
|
|
|
"time"
|
2020-02-13 18:27:33 +01:00
|
|
|
|
2022-02-16 18:55:38 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
2020-04-16 11:06:55 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2022-05-03 17:35:06 +02:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-08-21 11:42:08 +02:00
|
|
|
|
2022-02-18 14:51:59 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/shared"
|
2022-10-18 16:59:08 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/sqlite3/deltas"
|
2022-02-18 12:31:05 +01:00
|
|
|
)
|
|
|
|
|
2020-02-13 18:27:33 +01:00
|
|
|
// NewDatabase creates a new accounts and profiles database
|
2022-05-03 17:35:06 +02:00
|
|
|
func NewDatabase(base *base.BaseDendrite, dbProperties *config.DatabaseOptions, serverName gomatrixserverlib.ServerName, bcryptCost int, openIDTokenLifetimeMS int64, loginTokenLifetime time.Duration, serverNoticesLocalpart string) (*shared.Database, error) {
|
|
|
|
db, writer, err := base.DatabaseConnection(dbProperties, sqlutil.NewExclusiveWriter())
|
2020-06-04 12:18:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-15 19:09:41 +02:00
|
|
|
|
2022-10-18 16:59:08 +02:00
|
|
|
m := sqlutil.NewMigrator(db)
|
|
|
|
m.AddMigrations(sqlutil.Migration{
|
|
|
|
Version: "userapi: rename tables",
|
|
|
|
Up: deltas.UpRenameTables,
|
|
|
|
Down: deltas.DownRenameTables,
|
|
|
|
})
|
2022-11-11 17:41:37 +01:00
|
|
|
m.AddMigrations(sqlutil.Migration{
|
|
|
|
Version: "userapi: server names",
|
|
|
|
Up: func(ctx context.Context, txn *sql.Tx) error {
|
|
|
|
return deltas.UpServerNames(ctx, txn, serverName)
|
|
|
|
},
|
|
|
|
})
|
2022-10-18 16:59:08 +02:00
|
|
|
if err = m.Up(base.Context()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-02-18 14:51:59 +01:00
|
|
|
accountsTable, err := NewSQLiteAccountsTable(db, serverName)
|
2020-09-04 16:16:13 +02:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewSQLiteAccountsTable: %w", err)
|
2020-02-13 18:27:33 +01:00
|
|
|
}
|
2022-11-11 17:41:37 +01:00
|
|
|
accountDataTable, err := NewSQLiteAccountDataTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteAccountDataTable: %w", err)
|
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
devicesTable, err := NewSQLiteDevicesTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteDevicesTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
keyBackupTable, err := NewSQLiteKeyBackupTable(db)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewSQLiteKeyBackupTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
keyBackupVersionTable, err := NewSQLiteKeyBackupVersionTable(db)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewSQLiteKeyBackupVersionTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
loginTokenTable, err := NewSQLiteLoginTokenTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteLoginTokenTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
openIDTable, err := NewSQLiteOpenIDTable(db, serverName)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewSQLiteOpenIDTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-03-28 17:25:26 +02:00
|
|
|
profilesTable, err := NewSQLiteProfilesTable(db, serverNoticesLocalpart)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewSQLiteProfilesTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
threePIDTable, err := NewSQLiteThreePIDTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteThreePIDTable: %w", err)
|
|
|
|
}
|
2022-03-03 12:40:53 +01:00
|
|
|
pusherTable, err := NewSQLitePusherTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresPusherTable: %w", err)
|
|
|
|
}
|
|
|
|
notificationsTable, err := NewSQLiteNotificationTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresNotificationTable: %w", err)
|
|
|
|
}
|
2022-05-04 19:04:28 +02:00
|
|
|
statsTable, err := NewSQLiteStatsTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteStatsTable: %w", err)
|
|
|
|
}
|
2022-11-11 17:41:37 +01:00
|
|
|
|
|
|
|
m = sqlutil.NewMigrator(db)
|
|
|
|
m.AddMigrations(sqlutil.Migration{
|
|
|
|
Version: "userapi: server names populate",
|
|
|
|
Up: func(ctx context.Context, txn *sql.Tx) error {
|
|
|
|
return deltas.UpServerNamesPopulate(ctx, txn, serverName)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err = m.Up(base.Context()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-02-18 14:51:59 +01:00
|
|
|
return &shared.Database{
|
|
|
|
AccountDatas: accountDataTable,
|
|
|
|
Accounts: accountsTable,
|
|
|
|
Devices: devicesTable,
|
|
|
|
KeyBackups: keyBackupTable,
|
|
|
|
KeyBackupVersions: keyBackupVersionTable,
|
|
|
|
LoginTokens: loginTokenTable,
|
|
|
|
OpenIDTokens: openIDTable,
|
|
|
|
Profiles: profilesTable,
|
|
|
|
ThreePIDs: threePIDTable,
|
2022-03-03 12:40:53 +01:00
|
|
|
Pushers: pusherTable,
|
|
|
|
Notifications: notificationsTable,
|
2022-05-04 19:04:28 +02:00
|
|
|
Stats: statsTable,
|
2022-02-18 14:51:59 +01:00
|
|
|
ServerName: serverName,
|
|
|
|
DB: db,
|
2022-05-03 17:35:06 +02:00
|
|
|
Writer: writer,
|
2022-02-18 14:51:59 +01:00
|
|
|
LoginTokenLifetime: loginTokenLifetime,
|
|
|
|
BcryptCost: bcryptCost,
|
|
|
|
OpenIDTokenLifetimeMS: openIDTokenLifetimeMS,
|
|
|
|
}, nil
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|