2018-01-02 11:26:56 +01: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 (
|
2020-06-08 16:51:07 +02:00
|
|
|
"github.com/gorilla/mux"
|
2022-12-05 13:53:36 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-05-01 11:48:17 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/internal"
|
2022-07-05 14:50:56 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/inthttp"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
// AddInternalRoutes registers HTTP handlers for the internal API. Invokes functions
|
|
|
|
// on the given input API.
|
2022-12-05 13:53:36 +01:00
|
|
|
func AddInternalRoutes(router *mux.Router, intAPI api.RoomserverInternalAPI, enableMetrics bool) {
|
|
|
|
inthttp.AddRoutes(intAPI, router, enableMetrics)
|
2020-06-08 16:51:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInternalAPI returns a concerete implementation of the internal API. Callers
|
|
|
|
// can call functions directly on the returned API or via an HTTP interface using AddInternalRoutes.
|
|
|
|
func NewInternalAPI(
|
2021-11-24 11:45:23 +01:00
|
|
|
base *base.BaseDendrite,
|
2020-05-01 11:48:17 +02:00
|
|
|
) api.RoomserverInternalAPI {
|
2020-08-10 15:18:04 +02:00
|
|
|
cfg := &base.Cfg.RoomServer
|
|
|
|
|
2022-05-03 17:35:06 +02:00
|
|
|
roomserverDB, err := storage.Open(base, &cfg.Database, base.Caches)
|
2018-01-02 11:26:56 +01:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to room server db")
|
|
|
|
}
|
|
|
|
|
2022-05-09 15:15:24 +02:00
|
|
|
js, nc := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2022-01-05 18:44:49 +01:00
|
|
|
|
2020-09-02 14:47:31 +02:00
|
|
|
return internal.NewRoomserverAPI(
|
2022-07-05 14:50:56 +02:00
|
|
|
base, roomserverDB, js, nc,
|
2020-09-02 14:47:31 +02:00
|
|
|
)
|
2018-01-02 11:26:56 +01:00
|
|
|
}
|