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 clientapi
|
|
|
|
|
|
|
|
import (
|
2022-12-22 13:05:59 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
2018-08-20 11:45:17 +02:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2020-07-02 18:11:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/api"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/routing"
|
2021-11-24 11:45:23 +01:00
|
|
|
federationAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2020-05-21 15:40:13 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2020-07-15 13:02:34 +02:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-07-17 16:36:04 +02:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2022-05-03 18:17:02 +02:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-06-16 15:10:55 +02:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers for the ClientAPI component.
|
|
|
|
func AddPublicRoutes(
|
2022-05-03 18:17:02 +02:00
|
|
|
base *base.BaseDendrite,
|
2018-01-02 11:26:56 +01:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2022-05-05 14:17:38 +02:00
|
|
|
rsAPI roomserverAPI.ClientRoomserverAPI,
|
2022-05-06 13:39:26 +02:00
|
|
|
asAPI appserviceAPI.AppServiceInternalAPI,
|
2018-05-18 11:49:40 +02:00
|
|
|
transactionsCache *transactions.Cache,
|
2022-05-05 14:17:38 +02:00
|
|
|
fsAPI federationAPI.ClientFederationAPI,
|
|
|
|
userAPI userapi.ClientUserAPI,
|
2022-05-05 20:30:38 +02:00
|
|
|
userDirectoryProvider userapi.QuerySearchProfilesAPI,
|
2022-05-05 14:17:38 +02:00
|
|
|
keyAPI keyserverAPI.ClientKeyAPI,
|
2020-07-03 13:59:00 +02:00
|
|
|
extRoomsProvider api.ExtraPublicRoomsProvider,
|
2018-01-02 11:26:56 +01:00
|
|
|
) {
|
2022-05-03 18:17:02 +02:00
|
|
|
cfg := &base.Cfg.ClientAPI
|
|
|
|
mscCfg := &base.Cfg.MSCs
|
2022-05-09 15:15:24 +02:00
|
|
|
js, natsClient := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2020-10-15 14:27:13 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
syncProducer := &producers.SyncAPIProducer{
|
2022-03-29 14:14:35 +02:00
|
|
|
JetStream: js,
|
|
|
|
TopicReceiptEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputReceiptEvent),
|
|
|
|
TopicSendToDeviceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputSendToDeviceEvent),
|
|
|
|
TopicTypingEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputTypingEvent),
|
2022-04-06 13:11:19 +02:00
|
|
|
TopicPresenceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
2022-03-29 14:14:35 +02:00
|
|
|
UserAPI: userAPI,
|
|
|
|
ServerName: cfg.Matrix.ServerName,
|
2018-01-02 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
2022-12-22 11:54:03 +01:00
|
|
|
base,
|
2022-04-28 17:02:30 +02:00
|
|
|
cfg, rsAPI, asAPI,
|
2022-03-28 17:25:26 +02:00
|
|
|
userAPI, userDirectoryProvider, federation,
|
2022-03-03 12:40:53 +01:00
|
|
|
syncProducer, transactionsCache, fsAPI, keyAPI,
|
2022-04-06 13:11:19 +02:00
|
|
|
extRoomsProvider, mscCfg, natsClient,
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
}
|