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