mirror of
https://github.com/element-hq/dendrite.git
synced 2025-03-14 14:15:35 +00:00
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
// Copyright 2024 New Vector Ltd.
|
|
// Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
// Copyright 2017, 2018 New Vector Ltd
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
package postgres
|
|
|
|
import (
|
|
// Import the postgres database driver.
|
|
"github.com/element-hq/dendrite/internal/sqlutil"
|
|
"github.com/element-hq/dendrite/mediaapi/storage/shared"
|
|
"github.com/element-hq/dendrite/setup/config"
|
|
_ "github.com/lib/pq"
|
|
)
|
|
|
|
// NewDatabase opens a postgres database.
|
|
func NewDatabase(conMan *sqlutil.Connections, dbProperties *config.DatabaseOptions) (*shared.Database, error) {
|
|
db, writer, err := conMan.Connection(dbProperties)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mediaRepo, err := NewPostgresMediaRepositoryTable(db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
thumbnails, err := NewPostgresThumbnailsTable(db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &shared.Database{
|
|
MediaRepository: mediaRepo,
|
|
Thumbnails: thumbnails,
|
|
DB: db,
|
|
Writer: writer,
|
|
}, nil
|
|
}
|