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