2024-10-17 16:16:37 +01:00
|
|
|
// Copyright 2024 New Vector Ltd.
|
2018-01-02 10:26:56 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
2024-10-18 15:14:08 +01:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
|
// Please see LICENSE files in the repository root for full details.
|
2018-01-02 10:26:56 +00:00
|
|
|
|
|
|
|
package roomserver
|
|
|
|
|
|
|
|
import (
|
2024-10-17 16:33:45 +01:00
|
|
|
"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"
|
2022-12-05 12:53:36 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2024-10-17 16:33:45 +01:00
|
|
|
"github.com/element-hq/dendrite/roomserver/api"
|
|
|
|
"github.com/element-hq/dendrite/roomserver/internal"
|
|
|
|
"github.com/element-hq/dendrite/roomserver/storage"
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
|
2023-02-24 08:40:20 +00:00
|
|
|
// NewInternalAPI returns a concrete implementation of the internal API.
|
2023-07-20 15:06:05 +01:00
|
|
|
//
|
|
|
|
// 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.
|
2020-06-08 15:51:07 +01:00
|
|
|
func NewInternalAPI(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext *process.ProcessContext,
|
|
|
|
cfg *config.Dendrite,
|
2023-07-19 12:37:04 +01:00
|
|
|
cm *sqlutil.Connections,
|
2023-03-22 08:21:32 +00:00
|
|
|
natsInstance *jetstream.NATSInstance,
|
2023-03-17 11:09:45 +00:00
|
|
|
caches caching.RoomServerCaches,
|
2023-03-22 08:21:32 +00:00
|
|
|
enableMetrics bool,
|
2020-05-01 10:48:17 +01:00
|
|
|
) api.RoomserverInternalAPI {
|
2023-03-22 08:21:32 +00:00
|
|
|
roomserverDB, err := storage.Open(processContext.Context(), cm, &cfg.RoomServer.Database, caches)
|
2018-01-02 10:26:56 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to room server db")
|
|
|
|
}
|
|
|
|
|
2023-03-22 08:21:32 +00:00
|
|
|
js, nc := natsInstance.Prepare(processContext, &cfg.Global.JetStream)
|
2022-01-05 17:44:49 +00:00
|
|
|
|
2020-09-02 13:47:31 +01:00
|
|
|
return internal.NewRoomserverAPI(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, roomserverDB, js, nc, caches, enableMetrics,
|
2020-09-02 13:47:31 +01:00
|
|
|
)
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|