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 postgres
|
|
|
|
|
|
|
|
import (
|
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"
|
2022-10-18 16:59:08 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/postgres/deltas"
|
2022-02-18 14:51:59 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/shared"
|
2020-02-13 18:27:33 +01:00
|
|
|
|
|
|
|
// Import the postgres database driver.
|
|
|
|
_ "github.com/lib/pq"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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.NewDummyWriter())
|
2020-08-10 15:18:04 +02:00
|
|
|
if err != nil {
|
2020-02-13 18:27:33 +01:00
|
|
|
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,
|
|
|
|
})
|
|
|
|
if err = m.Up(base.Context()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-02-18 14:51:59 +01:00
|
|
|
accountDataTable, err := NewPostgresAccountDataTable(db)
|
2020-02-13 18:27:33 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewPostgresAccountDataTable: %w", err)
|
2020-02-13 18:27:33 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
accountsTable, err := NewPostgresAccountsTable(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("NewPostgresAccountsTable: %w", err)
|
2021-03-02 11:43:25 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
devicesTable, err := NewPostgresDevicesTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresDevicesTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
keyBackupTable, err := NewPostgresKeyBackupTable(db)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewPostgresKeyBackupTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
keyBackupVersionTable, err := NewPostgresKeyBackupVersionTable(db)
|
2022-02-18 12:31:05 +01:00
|
|
|
if err != nil {
|
2022-02-18 14:51:59 +01:00
|
|
|
return nil, fmt.Errorf("NewPostgresKeyBackupVersionTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
loginTokenTable, err := NewPostgresLoginTokenTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresLoginTokenTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
openIDTable, err := NewPostgresOpenIDTable(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("NewPostgresOpenIDTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-03-28 17:25:26 +02:00
|
|
|
profilesTable, err := NewPostgresProfilesTable(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("NewPostgresProfilesTable: %w", err)
|
2022-02-18 12:31:05 +01:00
|
|
|
}
|
2022-02-18 14:51:59 +01:00
|
|
|
threePIDTable, err := NewPostgresThreePIDTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresThreePIDTable: %w", err)
|
|
|
|
}
|
2022-03-03 12:40:53 +01:00
|
|
|
pusherTable, err := NewPostgresPusherTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresPusherTable: %w", err)
|
|
|
|
}
|
|
|
|
notificationsTable, err := NewPostgresNotificationTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresNotificationTable: %w", err)
|
|
|
|
}
|
2022-05-04 19:04:28 +02:00
|
|
|
statsTable, err := NewPostgresStatsTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresStatsTable: %w", 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
|
|
|
}
|