2020-07-15 11:02:34 +00: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 sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver/storage/shared"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-07-15 11:02:34 +00:00
|
|
|
)
|
|
|
|
|
2020-08-10 13:18:04 +00:00
|
|
|
func NewDatabase(dbProperties *config.DatabaseOptions) (*shared.Database, error) {
|
|
|
|
db, err := sqlutil.Open(dbProperties)
|
2020-07-15 11:02:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-25 09:29:45 +00:00
|
|
|
otk, err := NewSqliteOneTimeKeysTable(db)
|
2020-07-15 11:02:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-25 09:29:45 +00:00
|
|
|
dk, err := NewSqliteDeviceKeysTable(db)
|
2020-07-15 11:02:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-25 09:29:45 +00:00
|
|
|
kc, err := NewSqliteKeyChangesTable(db)
|
2020-07-28 16:38:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-25 09:29:45 +00:00
|
|
|
sdl, err := NewSqliteStaleDeviceListsTable(db)
|
2020-08-07 16:32:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-15 11:02:34 +00:00
|
|
|
return &shared.Database{
|
2020-08-07 16:32:13 +00:00
|
|
|
DB: db,
|
2020-08-25 09:29:45 +00:00
|
|
|
Writer: sqlutil.NewExclusiveWriter(),
|
2020-08-07 16:32:13 +00:00
|
|
|
OneTimeKeysTable: otk,
|
|
|
|
DeviceKeysTable: dk,
|
|
|
|
KeyChangesTable: kc,
|
|
|
|
StaleDeviceListsTable: sdl,
|
2020-07-15 11:02:34 +00:00
|
|
|
}, nil
|
|
|
|
}
|