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 (
|
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"
|
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"
|
2022-05-03 17:17:02 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2022-01-05 17:44:49 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
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-05-03 17:17:02 +01:00
|
|
|
base *base.BaseDendrite,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2022-05-05 13:17:38 +01:00
|
|
|
rsAPI roomserverAPI.ClientRoomserverAPI,
|
2018-08-20 10:45:17 +01:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2018-05-18 10:49:40 +01:00
|
|
|
transactionsCache *transactions.Cache,
|
2022-05-05 13:17:38 +01:00
|
|
|
fsAPI federationAPI.ClientFederationAPI,
|
|
|
|
userAPI userapi.ClientUserAPI,
|
2022-05-05 19:30:38 +01:00
|
|
|
userDirectoryProvider userapi.QuerySearchProfilesAPI,
|
2022-05-05 13:17:38 +01:00
|
|
|
keyAPI keyserverAPI.ClientKeyAPI,
|
2020-07-03 12:59:00 +01:00
|
|
|
extRoomsProvider api.ExtraPublicRoomsProvider,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
2022-05-03 17:17:02 +01:00
|
|
|
cfg := &base.Cfg.ClientAPI
|
|
|
|
mscCfg := &base.Cfg.MSCs
|
|
|
|
js, natsClient := jetstream.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2020-10-15 13:27:13 +01:00
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
syncProducer := &producers.SyncAPIProducer{
|
2022-03-29 13:14:35 +01:00
|
|
|
JetStream: js,
|
|
|
|
TopicClientData: cfg.Matrix.JetStream.Prefixed(jetstream.OutputClientData),
|
|
|
|
TopicReceiptEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputReceiptEvent),
|
|
|
|
TopicSendToDeviceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputSendToDeviceEvent),
|
|
|
|
TopicTypingEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputTypingEvent),
|
2022-04-06 12:11:19 +01:00
|
|
|
TopicPresenceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
2022-03-29 13:14:35 +01:00
|
|
|
UserAPI: userAPI,
|
|
|
|
ServerName: cfg.Matrix.ServerName,
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
2022-05-03 17:17:02 +01:00
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.SynapseAdminMux,
|
|
|
|
base.DendriteAdminMux,
|
2022-04-28 16:02:30 +01:00
|
|
|
cfg, rsAPI, asAPI,
|
2022-03-28 16:25:26 +01:00
|
|
|
userAPI, userDirectoryProvider, federation,
|
2022-03-03 11:40:53 +00:00
|
|
|
syncProducer, transactionsCache, fsAPI, keyAPI,
|
2022-04-06 12:11:19 +01:00
|
|
|
extRoomsProvider, mscCfg, natsClient,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|