45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
// Copyright 2024 New Vector Ltd.
|
|
// Copyright 2017 Vector Creations Ltd
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
package roomserver
|
|
|
|
import (
|
|
"github.com/element-hq/dendrite/internal/caching"
|
|
"github.com/element-hq/dendrite/internal/sqlutil"
|
|
"github.com/element-hq/dendrite/setup/config"
|
|
"github.com/element-hq/dendrite/setup/jetstream"
|
|
"github.com/element-hq/dendrite/setup/process"
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/element-hq/dendrite/roomserver/api"
|
|
"github.com/element-hq/dendrite/roomserver/internal"
|
|
"github.com/element-hq/dendrite/roomserver/storage"
|
|
)
|
|
|
|
// NewInternalAPI returns a concrete implementation of the internal API.
|
|
//
|
|
// Many of the methods provided by this API depend on access to a federation API, and so
|
|
// you may wish to call `SetFederationAPI` on the returned struct to avoid nil-dereference errors.
|
|
func NewInternalAPI(
|
|
processContext *process.ProcessContext,
|
|
cfg *config.Dendrite,
|
|
cm *sqlutil.Connections,
|
|
natsInstance *jetstream.NATSInstance,
|
|
caches caching.RoomServerCaches,
|
|
enableMetrics bool,
|
|
) api.RoomserverInternalAPI {
|
|
roomserverDB, err := storage.Open(processContext.Context(), cm, &cfg.RoomServer.Database, caches)
|
|
if err != nil {
|
|
logrus.WithError(err).Panicf("failed to connect to room server db")
|
|
}
|
|
|
|
js, nc := natsInstance.Prepare(processContext, &cfg.Global.JetStream)
|
|
|
|
return internal.NewRoomserverAPI(
|
|
processContext, cfg, roomserverDB, js, nc, caches, enableMetrics,
|
|
)
|
|
}
|