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 clientapi
|
|
|
|
|
|
|
|
import (
|
2020-06-08 15:51:07 +01:00
|
|
|
"github.com/gorilla/mux"
|
2018-08-20 10:45:17 +01:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2020-07-02 17:11:33 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/api"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/routing"
|
2020-03-30 15:02:20 +01:00
|
|
|
eduServerAPI "github.com/matrix-org/dendrite/eduserver/api"
|
2021-11-24 10:45:23 +00:00
|
|
|
federationAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2020-05-21 14:40:13 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2020-07-15 12:02:34 +01:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-07-17 15:36:04 +01:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2022-01-05 17:44:49 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2022-03-21 10:32:34 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2020-06-16 14:10:55 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2020-06-08 15:51:07 +01:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers for the ClientAPI component.
|
|
|
|
func AddPublicRoutes(
|
2022-03-21 10:32:34 +00:00
|
|
|
process *process.ProcessContext,
|
2020-06-08 15:51:07 +01:00
|
|
|
router *mux.Router,
|
2021-07-09 16:52:31 +01:00
|
|
|
synapseAdminRouter *mux.Router,
|
2020-08-10 14:18:04 +01:00
|
|
|
cfg *config.ClientAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-05-01 10:48:17 +01:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-03-30 15:02:20 +01:00
|
|
|
eduInputAPI eduServerAPI.EDUServerInputAPI,
|
2018-08-20 10:45:17 +01:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2018-05-18 10:49:40 +01:00
|
|
|
transactionsCache *transactions.Cache,
|
2021-11-24 10:45:23 +00:00
|
|
|
fsAPI federationAPI.FederationInternalAPI,
|
2020-06-16 14:10:55 +01:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2020-07-15 12:02:34 +01:00
|
|
|
keyAPI keyserverAPI.KeyInternalAPI,
|
2020-07-03 12:59:00 +01:00
|
|
|
extRoomsProvider api.ExtraPublicRoomsProvider,
|
2021-01-22 16:08:47 +00:00
|
|
|
mscCfg *config.MSCs,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
2022-03-21 10:32:34 +00:00
|
|
|
js, _ := jetstream.Prepare(process, &cfg.Matrix.JetStream)
|
2020-10-15 13:27:13 +01:00
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
syncProducer := &producers.SyncAPIProducer{
|
2022-01-05 17:44:49 +00:00
|
|
|
JetStream: js,
|
2022-03-23 10:20:18 +00:00
|
|
|
Topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputClientData),
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
2021-07-09 16:52:31 +01:00
|
|
|
router, synapseAdminRouter, cfg, eduInputAPI, rsAPI, asAPI,
|
2022-03-24 21:45:44 +00:00
|
|
|
userAPI, federation,
|
2022-03-03 11:40:53 +00:00
|
|
|
syncProducer, transactionsCache, fsAPI, keyAPI,
|
|
|
|
extRoomsProvider, mscCfg,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|