2020-06-12 15:55:57 +02:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-06-09 13:07:33 +02:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi"
|
2020-07-02 18:11:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/api"
|
2020-06-09 13:07:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
2021-11-24 11:45:23 +01:00
|
|
|
federationAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2020-06-09 13:07:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2020-07-13 17:02:35 +02:00
|
|
|
keyAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2020-06-09 13:07:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi"
|
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2021-01-26 13:56:20 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2020-06-09 13:07:33 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi"
|
2020-06-16 15:10:55 +02:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2022-02-18 12:31:05 +01:00
|
|
|
userdb "github.com/matrix-org/dendrite/userapi/storage"
|
2020-06-09 13:07:33 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Monolith represents an instantiation of all dependencies required to build
|
|
|
|
// all components of Dendrite, for use in monolith mode.
|
|
|
|
type Monolith struct {
|
2020-10-15 14:27:13 +02:00
|
|
|
Config *config.Dendrite
|
2022-02-18 12:31:05 +01:00
|
|
|
AccountDB userdb.Database
|
2020-10-15 14:27:13 +02:00
|
|
|
KeyRing *gomatrixserverlib.KeyRing
|
|
|
|
Client *gomatrixserverlib.Client
|
|
|
|
FedClient *gomatrixserverlib.FederationClient
|
2020-06-09 13:07:33 +02:00
|
|
|
|
2022-03-29 14:14:35 +02:00
|
|
|
AppserviceAPI appserviceAPI.AppServiceQueryAPI
|
|
|
|
FederationAPI federationAPI.FederationInternalAPI
|
|
|
|
RoomserverAPI roomserverAPI.RoomserverInternalAPI
|
|
|
|
UserAPI userapi.UserInternalAPI
|
|
|
|
KeyAPI keyAPI.KeyInternalAPI
|
2020-06-09 13:07:33 +02:00
|
|
|
|
|
|
|
// Optional
|
2022-03-28 17:25:26 +02:00
|
|
|
ExtPublicRoomsProvider api.ExtraPublicRoomsProvider
|
|
|
|
ExtUserDirectoryProvider userapi.UserDirectoryProvider
|
2020-06-09 13:07:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddAllPublicRoutes attaches all public paths to the given router
|
2021-09-10 11:05:31 +02:00
|
|
|
func (m *Monolith) AddAllPublicRoutes(process *process.ProcessContext, csMux, ssMux, keyMux, wkMux, mediaMux, synapseMux *mux.Router) {
|
2022-03-28 17:25:26 +02:00
|
|
|
userDirectoryProvider := m.ExtUserDirectoryProvider
|
|
|
|
if userDirectoryProvider == nil {
|
|
|
|
userDirectoryProvider = m.UserAPI
|
|
|
|
}
|
2020-06-09 13:07:33 +02:00
|
|
|
clientapi.AddPublicRoutes(
|
2022-03-24 22:45:44 +01:00
|
|
|
process, csMux, synapseMux, &m.Config.ClientAPI,
|
2020-06-15 11:13:57 +02:00
|
|
|
m.FedClient, m.RoomserverAPI,
|
2022-03-29 14:14:35 +02:00
|
|
|
m.AppserviceAPI, transactions.New(),
|
2022-03-28 17:25:26 +02:00
|
|
|
m.FederationAPI, m.UserAPI, userDirectoryProvider, m.KeyAPI,
|
2022-03-03 12:40:53 +01:00
|
|
|
m.ExtPublicRoomsProvider, &m.Config.MSCs,
|
2020-06-09 13:07:33 +02:00
|
|
|
)
|
|
|
|
federationapi.AddPublicRoutes(
|
2022-03-29 14:14:35 +02:00
|
|
|
process, ssMux, keyMux, wkMux, &m.Config.FederationAPI, m.UserAPI, m.FedClient,
|
2021-11-24 11:45:23 +01:00
|
|
|
m.KeyRing, m.RoomserverAPI, m.FederationAPI,
|
2022-03-29 14:14:35 +02:00
|
|
|
m.KeyAPI, &m.Config.MSCs, nil,
|
2020-06-09 13:07:33 +02:00
|
|
|
)
|
2021-11-24 13:55:44 +01:00
|
|
|
mediaapi.AddPublicRoutes(mediaMux, &m.Config.MediaAPI, &m.Config.ClientAPI.RateLimiting, m.UserAPI, m.Client)
|
2020-06-09 13:07:33 +02:00
|
|
|
syncapi.AddPublicRoutes(
|
2021-01-26 13:56:20 +01:00
|
|
|
process, csMux, m.UserAPI, m.RoomserverAPI,
|
2020-09-07 15:47:59 +02:00
|
|
|
m.KeyAPI, m.FedClient, &m.Config.SyncAPI,
|
2020-06-09 13:07:33 +02:00
|
|
|
)
|
|
|
|
}
|