2020-07-15 13:02:34 +02: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 postgres
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver/storage/shared"
|
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-07-15 13:02:34 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewDatabase creates a new sync server database
|
2022-05-03 17:35:06 +02:00
|
|
|
func NewDatabase(base *base.BaseDendrite, dbProperties *config.DatabaseOptions) (*shared.Database, error) {
|
2020-07-15 13:02:34 +02:00
|
|
|
var err error
|
2022-05-03 17:35:06 +02:00
|
|
|
db, writer, err := base.DatabaseConnection(dbProperties, sqlutil.NewDummyWriter())
|
2020-07-15 13:02:34 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
otk, err := NewPostgresOneTimeKeysTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dk, err := NewPostgresDeviceKeysTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-28 18:38:30 +02:00
|
|
|
kc, err := NewPostgresKeyChangesTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-07 18:32:13 +02:00
|
|
|
sdl, err := NewPostgresStaleDeviceListsTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-08-04 18:31:18 +02:00
|
|
|
csk, err := NewPostgresCrossSigningKeysTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
css, err := NewPostgresCrossSigningSigsTable(db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-21 10:56:06 +01:00
|
|
|
if err = kc.Prepare(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-08-04 18:31:18 +02:00
|
|
|
d := &shared.Database{
|
2020-08-07 18:32:13 +02:00
|
|
|
DB: db,
|
2022-05-03 17:35:06 +02:00
|
|
|
Writer: writer,
|
2020-08-07 18:32:13 +02:00
|
|
|
OneTimeKeysTable: otk,
|
|
|
|
DeviceKeysTable: dk,
|
|
|
|
KeyChangesTable: kc,
|
|
|
|
StaleDeviceListsTable: sdl,
|
2021-08-04 18:31:18 +02:00
|
|
|
CrossSigningKeysTable: csk,
|
|
|
|
CrossSigningSigsTable: css,
|
|
|
|
}
|
|
|
|
return d, nil
|
2020-07-15 13:02:34 +02:00
|
|
|
}
|