2020-01-03 15:07:05 +01:00
|
|
|
// Copyright 2017-2018 New Vector Ltd
|
|
|
|
// Copyright 2019-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 (
|
|
|
|
"database/sql"
|
2021-07-15 18:45:37 +02:00
|
|
|
"fmt"
|
2020-01-03 15:07:05 +01:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage/postgres/deltas"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage/shared"
|
2020-12-04 15:52:10 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
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-01-25 18:00:39 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-01-03 15:07:05 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Database stores information needed by the federation sender
|
|
|
|
type Database struct {
|
2020-07-20 17:55:20 +02:00
|
|
|
shared.Database
|
2020-08-21 11:42:08 +02:00
|
|
|
db *sql.DB
|
|
|
|
writer sqlutil.Writer
|
2020-01-03 15:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDatabase opens a new database
|
2022-05-03 17:35:06 +02:00
|
|
|
func NewDatabase(base *base.BaseDendrite, dbProperties *config.DatabaseOptions, cache caching.FederationCache, serverName gomatrixserverlib.ServerName) (*Database, error) {
|
2020-07-20 17:55:20 +02:00
|
|
|
var d Database
|
2020-01-03 15:07:05 +01:00
|
|
|
var err error
|
2022-05-03 17:35:06 +02:00
|
|
|
if d.db, d.writer, err = base.DatabaseConnection(dbProperties, sqlutil.NewDummyWriter()); err != nil {
|
2020-01-03 15:07:05 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-20 17:55:20 +02:00
|
|
|
joinedHosts, err := NewPostgresJoinedHostsTable(d.db)
|
|
|
|
if err != nil {
|
2020-01-03 15:07:05 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-20 17:55:20 +02:00
|
|
|
queuePDUs, err := NewPostgresQueuePDUsTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-01-03 15:07:05 +01:00
|
|
|
}
|
2020-07-20 17:55:20 +02:00
|
|
|
queueEDUs, err := NewPostgresQueueEDUsTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-07-01 12:46:38 +02:00
|
|
|
}
|
2020-07-20 17:55:20 +02:00
|
|
|
queueJSON, err := NewPostgresQueueJSONTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-07-01 12:46:38 +02:00
|
|
|
}
|
2020-07-22 18:01:29 +02:00
|
|
|
blacklist, err := NewPostgresBlacklistTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-22 15:55:08 +01:00
|
|
|
inboundPeeks, err := NewPostgresInboundPeeksTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
outboundPeeks, err := NewPostgresOutboundPeeksTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-07-15 18:45:37 +02:00
|
|
|
notaryJSON, err := NewPostgresNotaryServerKeysTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresNotaryServerKeysTable: %s", err)
|
|
|
|
}
|
|
|
|
notaryMetadata, err := NewPostgresNotaryServerKeysMetadataTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("NewPostgresNotaryServerKeysMetadataTable: %s", err)
|
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
serverSigningKeys, err := NewPostgresServerSigningKeysTable(d.db)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-07-25 11:39:22 +02:00
|
|
|
m := sqlutil.NewMigrator(d.db)
|
|
|
|
m.AddMigrations(sqlutil.Migration{
|
|
|
|
Version: "federationsender: drop federationsender_rooms",
|
|
|
|
Up: deltas.UpRemoveRoomsTable,
|
|
|
|
})
|
|
|
|
err = m.Up(base.Context())
|
|
|
|
if err != nil {
|
2021-02-04 12:52:49 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2022-08-09 11:15:58 +02:00
|
|
|
if err = queueEDUs.Prepare(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-20 17:55:20 +02:00
|
|
|
d.Database = shared.Database{
|
2021-11-24 11:45:23 +01:00
|
|
|
DB: d.db,
|
2022-01-25 18:00:39 +01:00
|
|
|
ServerName: serverName,
|
2021-11-24 11:45:23 +01:00
|
|
|
Cache: cache,
|
|
|
|
Writer: d.writer,
|
|
|
|
FederationJoinedHosts: joinedHosts,
|
|
|
|
FederationQueuePDUs: queuePDUs,
|
|
|
|
FederationQueueEDUs: queueEDUs,
|
|
|
|
FederationQueueJSON: queueJSON,
|
|
|
|
FederationBlacklist: blacklist,
|
|
|
|
FederationInboundPeeks: inboundPeeks,
|
|
|
|
FederationOutboundPeeks: outboundPeeks,
|
|
|
|
NotaryServerKeysJSON: notaryJSON,
|
|
|
|
NotaryServerKeysMetadata: notaryMetadata,
|
|
|
|
ServerSigningKeys: serverSigningKeys,
|
2020-07-20 17:55:20 +02:00
|
|
|
}
|
|
|
|
return &d, nil
|
2020-07-03 12:49:49 +02:00
|
|
|
}
|