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 federationapi
|
|
|
|
|
|
|
|
import (
|
2020-06-08 09:51:07 -05:00
|
|
|
"github.com/gorilla/mux"
|
2020-06-10 06:17:54 -05:00
|
|
|
eduserverAPI "github.com/matrix-org/dendrite/eduserver/api"
|
2019-12-20 07:24:57 -06:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2020-07-22 11:04:57 -05:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-08-20 04:45:17 -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"
|
2020-06-16 08:53:19 -05:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-08-20 04:45:17 -05:00
|
|
|
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2020-06-08 09:51:07 -05:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers on the base API muxes for the FederationAPI component.
|
|
|
|
func AddPublicRoutes(
|
2020-08-13 06:16:37 -05:00
|
|
|
fedRouter, keyRouter *mux.Router,
|
2020-08-10 08:18:04 -05:00
|
|
|
cfg *config.FederationAPI,
|
2020-06-16 08:53:19 -05:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2018-01-02 04:26:56 -06:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-06-15 10:57:59 -05:00
|
|
|
keyRing gomatrixserverlib.JSONVerifier,
|
2020-05-01 04:48:17 -05:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-04-29 05:34:31 -05:00
|
|
|
federationSenderAPI federationSenderAPI.FederationSenderInternalAPI,
|
2020-06-10 06:17:54 -05:00
|
|
|
eduAPI eduserverAPI.EDUServerInputAPI,
|
2020-07-22 11:04:57 -05:00
|
|
|
keyAPI keyserverAPI.KeyInternalAPI,
|
2021-01-22 10:08:47 -06:00
|
|
|
mscCfg *config.MSCs,
|
2018-01-02 04:26:56 -06:00
|
|
|
) {
|
|
|
|
routing.Setup(
|
2020-08-13 06:16:37 -05:00
|
|
|
fedRouter, keyRouter, cfg, rsAPI,
|
2020-06-15 10:57:59 -05:00
|
|
|
eduAPI, federationSenderAPI, keyRing,
|
2021-01-22 10:08:47 -06:00
|
|
|
federation, userAPI, keyAPI, mscCfg,
|
2018-01-02 04:26:56 -06:00
|
|
|
)
|
|
|
|
}
|