2018-01-02 10:26:56 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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 roomserver
|
|
|
|
|
|
|
|
import (
|
2022-12-05 12:53:36 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-05-01 10:48:17 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/internal"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
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.
|
2020-06-08 15:51:07 +01:00
|
|
|
func NewInternalAPI(
|
2021-11-24 10:45:23 +00:00
|
|
|
base *base.BaseDendrite,
|
2020-05-01 10:48:17 +01:00
|
|
|
) api.RoomserverInternalAPI {
|
2020-08-10 14:18:04 +01:00
|
|
|
cfg := &base.Cfg.RoomServer
|
|
|
|
|
2022-05-03 16:35:06 +01:00
|
|
|
roomserverDB, err := storage.Open(base, &cfg.Database, base.Caches)
|
2018-01-02 10:26:56 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to room server db")
|
|
|
|
}
|
|
|
|
|
2022-05-09 14:15:24 +01:00
|
|
|
js, nc := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2022-01-05 17:44:49 +00:00
|
|
|
|
2020-09-02 13:47:31 +01:00
|
|
|
return internal.NewRoomserverAPI(
|
2022-07-05 13:50:56 +01:00
|
|
|
base, roomserverDB, js, nc,
|
2020-09-02 13:47:31 +01:00
|
|
|
)
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|