mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
05cafbd197
* Add possibility to set history_visibility and user AccountType * Add new DB queries * Add actual history_visibility changes for /messages * Add passing tests * Extract check function * Cleanup * Cleanup * Fix build on 386 * Move ApplyHistoryVisibilityFilter to internal * Move queries to topology table * Add filtering to /sync and /context Some cleanup * Add passing tests; Remove failing tests :( * Re-add passing tests * Move filtering to own function to avoid duplication * Re-add passing test * Use newly added GMSL HistoryVisibility * Update gomatrixserverlib * Set the visibility when creating events * Default to shared history visibility * Remove unused query * Update history visibility checks to use gmsl Update tests * Remove unused statement * Update migrations to set "correct" history visibility * Add method to fetch the membership at a given event * Tweaks and logging * Use actual internal rsAPI, default to shared visibility in tests * Revert "Move queries to topology table" This reverts commit 4f0d41be9c194a46379796435ce73e79203edbd6. * Remove noise/unneeded code * More cleanup * Try to optimize database requests * Fix imports * PR peview fixes/changes * Move setting history visibility to own migration, be more restrictive * Fix unit tests * Lint * Fix missing entries * Tweaks for incremental syncs * Adapt generic changes Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com> Co-authored-by: kegsay <kegan@matrix.org>
135 lines
3.7 KiB
Go
135 lines
3.7 KiB
Go
// 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"
|
|
|
|
// Import the postgres database driver.
|
|
_ "github.com/lib/pq"
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
"github.com/matrix-org/dendrite/setup/base"
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
"github.com/matrix-org/dendrite/syncapi/storage/postgres/deltas"
|
|
"github.com/matrix-org/dendrite/syncapi/storage/shared"
|
|
)
|
|
|
|
// SyncServerDatasource represents a sync server datasource which manages
|
|
// both the database for PDUs and caches for EDUs.
|
|
type SyncServerDatasource struct {
|
|
shared.Database
|
|
db *sql.DB
|
|
writer sqlutil.Writer
|
|
}
|
|
|
|
// NewDatabase creates a new sync server database
|
|
func NewDatabase(base *base.BaseDendrite, dbProperties *config.DatabaseOptions) (*SyncServerDatasource, error) {
|
|
var d SyncServerDatasource
|
|
var err error
|
|
if d.db, d.writer, err = base.DatabaseConnection(dbProperties, sqlutil.NewDummyWriter()); err != nil {
|
|
return nil, err
|
|
}
|
|
accountData, err := NewPostgresAccountDataTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
events, err := NewPostgresEventsTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
currState, err := NewPostgresCurrentRoomStateTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
invites, err := NewPostgresInvitesTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
peeks, err := NewPostgresPeeksTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
topology, err := NewPostgresTopologyTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
backwardExtremities, err := NewPostgresBackwardsExtremitiesTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sendToDevice, err := NewPostgresSendToDeviceTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
filter, err := NewPostgresFilterTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
receipts, err := NewPostgresReceiptsTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
memberships, err := NewPostgresMembershipsTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
notificationData, err := NewPostgresNotificationDataTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ignores, err := NewPostgresIgnoresTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
presence, err := NewPostgresPresenceTable(d.db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// apply migrations which need multiple tables
|
|
m := sqlutil.NewMigrator(d.db)
|
|
m.AddMigrations(
|
|
sqlutil.Migration{
|
|
Version: "syncapi: set history visibility for existing events",
|
|
Up: deltas.UpSetHistoryVisibility, // Requires current_room_state and output_room_events to be created.
|
|
},
|
|
)
|
|
err = m.Up(base.Context())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
d.Database = shared.Database{
|
|
DB: d.db,
|
|
Writer: d.writer,
|
|
Invites: invites,
|
|
Peeks: peeks,
|
|
AccountData: accountData,
|
|
OutputEvents: events,
|
|
Topology: topology,
|
|
CurrentRoomState: currState,
|
|
BackwardExtremities: backwardExtremities,
|
|
Filter: filter,
|
|
SendToDevice: sendToDevice,
|
|
Receipts: receipts,
|
|
Memberships: memberships,
|
|
NotificationData: notificationData,
|
|
Ignores: ignores,
|
|
Presence: presence,
|
|
}
|
|
return &d, nil
|
|
}
|