2020-02-13 17:27:33 +00: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 (
|
2021-07-27 17:08:53 +01:00
|
|
|
"fmt"
|
2021-04-07 13:26:20 +01:00
|
|
|
"time"
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2022-02-16 17:55:38 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
2020-04-16 10:06:55 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2022-05-03 16:35:06 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-08-21 10:42:08 +01:00
|
|
|
|
2022-02-18 13:51:59 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/shared"
|
2022-02-18 11:31:05 +00:00
|
|
|
)
|
|
|
|
|
2020-02-13 17:27:33 +00:00
|
|
|
// NewDatabase creates a new accounts and profiles database
|
2022-05-03 16:35:06 +01: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 11:18:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-15 18:09:41 +01:00
|
|
|
|
2022-02-18 13:51:59 +00:00
|
|
|
accountDataTable, err := NewSQLiteAccountDataTable(db)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteAccountDataTable: %w", err)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
accountsTable, err := NewSQLiteAccountsTable(db, serverName)
|
2020-09-04 15:16:13 +01:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteAccountsTable: %w", err)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
devicesTable, err := NewSQLiteDevicesTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteDevicesTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
keyBackupTable, err := NewSQLiteKeyBackupTable(db)
|
2022-02-18 11:31:05 +00:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteKeyBackupTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
keyBackupVersionTable, err := NewSQLiteKeyBackupVersionTable(db)
|
2022-02-18 11:31:05 +00:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteKeyBackupVersionTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
loginTokenTable, err := NewSQLiteLoginTokenTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteLoginTokenTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
openIDTable, err := NewSQLiteOpenIDTable(db, serverName)
|
2022-02-18 11:31:05 +00:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteOpenIDTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-03-28 16:25:26 +01:00
|
|
|
profilesTable, err := NewSQLiteProfilesTable(db, serverNoticesLocalpart)
|
2022-02-18 11:31:05 +00:00
|
|
|
if err != nil {
|
2022-02-18 13:51:59 +00:00
|
|
|
return nil, fmt.Errorf("NewSQLiteProfilesTable: %w", err)
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|
2022-02-18 13:51:59 +00:00
|
|
|
threePIDTable, err := NewSQLiteThreePIDTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteThreePIDTable: %w", err)
|
|
|
|
}
|
2022-03-03 11:40:53 +00: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 18:04:28 +01:00
|
|
|
statsTable, err := NewSQLiteStatsTable(db, serverName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewSQLiteStatsTable: %w", err)
|
|
|
|
}
|
2022-02-18 13:51:59 +00: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 11:40:53 +00:00
|
|
|
Pushers: pusherTable,
|
|
|
|
Notifications: notificationsTable,
|
2022-05-04 18:04:28 +01:00
|
|
|
Stats: statsTable,
|
2022-02-18 13:51:59 +00:00
|
|
|
ServerName: serverName,
|
|
|
|
DB: db,
|
2022-05-03 16:35:06 +01:00
|
|
|
Writer: writer,
|
2022-02-18 13:51:59 +00:00
|
|
|
LoginTokenLifetime: loginTokenLifetime,
|
|
|
|
BcryptCost: bcryptCost,
|
|
|
|
OpenIDTokenLifetimeMS: openIDTokenLifetimeMS,
|
|
|
|
}, nil
|
2022-02-18 11:31:05 +00:00
|
|
|
}
|