2020-06-12 13:55:57 +00: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 11:07:33 +00: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 16:11:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/api"
|
2020-06-09 11:07:33 +00:00
|
|
|
eduServerAPI "github.com/matrix-org/dendrite/eduserver/api"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2020-07-13 15:02:35 +00:00
|
|
|
keyAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2020-06-09 11:07:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi"
|
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2021-01-26 12:56:20 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2020-10-07 15:23:18 +00:00
|
|
|
serverKeyAPI "github.com/matrix-org/dendrite/signingkeyserver/api"
|
2020-06-09 11:07:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi"
|
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"
|
2020-06-09 11:07:33 +00: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 12:27:13 +00:00
|
|
|
Config *config.Dendrite
|
|
|
|
AccountDB accounts.Database
|
|
|
|
KeyRing *gomatrixserverlib.KeyRing
|
|
|
|
Client *gomatrixserverlib.Client
|
|
|
|
FedClient *gomatrixserverlib.FederationClient
|
2020-06-09 11:07:33 +00:00
|
|
|
|
|
|
|
AppserviceAPI appserviceAPI.AppServiceQueryAPI
|
|
|
|
EDUInternalAPI eduServerAPI.EDUServerInputAPI
|
|
|
|
FederationSenderAPI federationSenderAPI.FederationSenderInternalAPI
|
|
|
|
RoomserverAPI roomserverAPI.RoomserverInternalAPI
|
2020-10-07 15:23:18 +00:00
|
|
|
ServerKeyAPI serverKeyAPI.SigningKeyServerAPI
|
2020-06-16 13:10:55 +00:00
|
|
|
UserAPI userapi.UserInternalAPI
|
2020-07-13 15:02:35 +00:00
|
|
|
KeyAPI keyAPI.KeyInternalAPI
|
2020-06-09 11:07:33 +00:00
|
|
|
|
|
|
|
// Optional
|
2020-07-03 11:59:00 +00:00
|
|
|
ExtPublicRoomsProvider api.ExtraPublicRoomsProvider
|
2020-06-09 11:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddAllPublicRoutes attaches all public paths to the given router
|
2021-07-09 15:52:31 +00:00
|
|
|
func (m *Monolith) AddAllPublicRoutes(process *process.ProcessContext, csMux, ssMux, keyMux, mediaMux, synapseMux *mux.Router) {
|
2020-06-09 11:07:33 +00:00
|
|
|
clientapi.AddPublicRoutes(
|
2021-07-09 15:52:31 +00:00
|
|
|
csMux, synapseMux, &m.Config.ClientAPI, m.AccountDB,
|
2020-06-15 09:13:57 +00:00
|
|
|
m.FedClient, m.RoomserverAPI,
|
2020-09-07 13:47:59 +00:00
|
|
|
m.EDUInternalAPI, m.AppserviceAPI, transactions.New(),
|
2020-07-15 11:02:34 +00:00
|
|
|
m.FederationSenderAPI, m.UserAPI, m.KeyAPI, m.ExtPublicRoomsProvider,
|
2021-01-22 16:08:47 +00:00
|
|
|
&m.Config.MSCs,
|
2020-06-09 11:07:33 +00:00
|
|
|
)
|
|
|
|
federationapi.AddPublicRoutes(
|
2020-08-13 11:16:37 +00:00
|
|
|
ssMux, keyMux, &m.Config.FederationAPI, m.UserAPI, m.FedClient,
|
2020-06-16 13:53:19 +00:00
|
|
|
m.KeyRing, m.RoomserverAPI, m.FederationSenderAPI,
|
2021-06-30 11:05:58 +00:00
|
|
|
m.EDUInternalAPI, m.KeyAPI, &m.Config.MSCs, nil,
|
2020-06-09 11:07:33 +00:00
|
|
|
)
|
2020-08-13 11:16:37 +00:00
|
|
|
mediaapi.AddPublicRoutes(mediaMux, &m.Config.MediaAPI, m.UserAPI, m.Client)
|
2020-06-09 11:07:33 +00:00
|
|
|
syncapi.AddPublicRoutes(
|
2021-01-26 12:56:20 +00:00
|
|
|
process, csMux, m.UserAPI, m.RoomserverAPI,
|
2020-09-07 13:47:59 +00:00
|
|
|
m.KeyAPI, m.FedClient, &m.Config.SyncAPI,
|
2020-06-09 11:07:33 +00:00
|
|
|
)
|
|
|
|
}
|