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-09 11:07:33 +00:00
|
|
|
"github.com/Shopify/sarama"
|
2020-06-08 14:51:07 +00:00
|
|
|
"github.com/gorilla/mux"
|
2018-08-20 09:45:17 +00:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2020-07-02 16:11:33 +00: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-06-30 12:34:59 +00:00
|
|
|
currentstateAPI "github.com/matrix-org/dendrite/currentstateserver/api"
|
2020-03-30 14:02:20 +00:00
|
|
|
eduServerAPI "github.com/matrix-org/dendrite/eduserver/api"
|
2019-10-01 16:09:47 +00:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2020-06-09 11:07:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2020-07-15 11:02:34 +00:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-07-17 14:36:04 +00:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-06-16 13:10:55 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 11:05:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/devices"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2020-06-08 14:51:07 +00:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers for the ClientAPI component.
|
|
|
|
func AddPublicRoutes(
|
|
|
|
router *mux.Router,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.ClientAPI,
|
2020-06-09 11:07:33 +00:00
|
|
|
producer sarama.SyncProducer,
|
2020-02-13 17:27:33 +00:00
|
|
|
deviceDB devices.Database,
|
|
|
|
accountsDB accounts.Database,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-03-30 14:02:20 +00:00
|
|
|
eduInputAPI eduServerAPI.EDUServerInputAPI,
|
2018-08-20 09:45:17 +00:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2020-06-30 12:34:59 +00:00
|
|
|
stateAPI currentstateAPI.CurrentStateInternalAPI,
|
2018-05-18 09:49:40 +00:00
|
|
|
transactionsCache *transactions.Cache,
|
2020-04-29 10:34:31 +00:00
|
|
|
fsAPI federationSenderAPI.FederationSenderInternalAPI,
|
2020-06-16 13:10:55 +00:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2020-07-15 11:02:34 +00:00
|
|
|
keyAPI keyserverAPI.KeyInternalAPI,
|
2020-07-03 11:59:00 +00:00
|
|
|
extRoomsProvider api.ExtraPublicRoomsProvider,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
|
|
|
syncProducer := &producers.SyncAPIProducer{
|
2020-06-09 11:07:33 +00:00
|
|
|
Producer: producer,
|
2020-08-10 14:18:37 +00:00
|
|
|
Topic: cfg.Matrix.Kafka.TopicFor(config.TopicOutputClientData),
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
2020-06-10 11:17:54 +00:00
|
|
|
router, cfg, eduInputAPI, rsAPI, asAPI,
|
2020-06-16 13:10:55 +00:00
|
|
|
accountsDB, deviceDB, userAPI, federation,
|
2020-07-15 11:02:34 +00:00
|
|
|
syncProducer, transactionsCache, fsAPI, stateAPI, keyAPI, extRoomsProvider,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|