2017-08-04 12:12:36 +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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2020-06-12 11:10:08 +00:00
|
|
|
"os"
|
2017-08-04 12:12:36 +00:00
|
|
|
|
2018-08-20 09:45:17 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
2020-06-30 12:34:59 +00:00
|
|
|
"github.com/matrix-org/dendrite/currentstateserver"
|
2020-03-30 14:02:20 +00:00
|
|
|
"github.com/matrix-org/dendrite/eduserver"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver/cache"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender"
|
2020-05-22 11:28:36 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-09 11:07:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/setup"
|
2020-07-13 15:02:35 +00:00
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
2020-06-12 11:10:08 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-05-27 09:19:24 +00:00
|
|
|
"github.com/matrix-org/dendrite/serverkeyapi"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
2020-06-16 13:29:11 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-08-04 12:12:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-05-18 09:56:43 +00:00
|
|
|
httpBindAddr = flag.String("http-bind-address", ":8008", "The HTTP listening port for the server")
|
|
|
|
httpsBindAddr = flag.String("https-bind-address", ":8448", "The HTTPS listening port for the server")
|
|
|
|
certFile = flag.String("tls-cert", "", "The PEM formatted X509 certificate to use for TLS")
|
|
|
|
keyFile = flag.String("tls-key", "", "The PEM private key to use for TLS")
|
2020-05-22 11:28:36 +00:00
|
|
|
enableHTTPAPIs = flag.Bool("api", false, "Use HTTP APIs instead of short-circuiting (warning: exposes API endpoints!)")
|
2020-06-12 11:10:08 +00:00
|
|
|
traceInternal = os.Getenv("DENDRITE_TRACE_INTERNAL") == "1"
|
2017-08-04 12:12:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-06-12 13:55:57 +00:00
|
|
|
cfg := setup.ParseFlags(true)
|
2020-08-13 11:16:37 +00:00
|
|
|
httpAddr := config.HTTPAddress("http://" + *httpBindAddr)
|
|
|
|
httpsAddr := config.HTTPAddress("https://" + *httpsBindAddr)
|
|
|
|
|
2020-05-22 11:28:36 +00:00
|
|
|
if *enableHTTPAPIs {
|
|
|
|
// If the HTTP APIs are enabled then we need to update the Listen
|
|
|
|
// statements in the configuration so that we know where to find
|
|
|
|
// the API endpoints. They'll listen on the same port as the monolith
|
|
|
|
// itself.
|
2020-08-13 11:16:37 +00:00
|
|
|
cfg.AppServiceAPI.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.ClientAPI.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.CurrentStateServer.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.EDUServer.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.FederationAPI.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.FederationSender.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.KeyServer.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.MediaAPI.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.RoomServer.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.ServerKeyAPI.InternalAPI.Connect = httpAddr
|
|
|
|
cfg.SyncAPI.InternalAPI.Connect = httpAddr
|
2020-05-22 11:28:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-12 13:55:57 +00:00
|
|
|
base := setup.NewBaseDendrite(cfg, "Monolith", *enableHTTPAPIs)
|
2018-01-02 10:26:56 +00:00
|
|
|
defer base.Close() // nolint: errcheck
|
2017-08-04 12:12:36 +00:00
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
deviceDB := base.CreateDeviceDB()
|
|
|
|
federation := base.CreateFederationClient()
|
2020-05-27 09:19:24 +00:00
|
|
|
|
2020-06-08 14:51:07 +00:00
|
|
|
serverKeyAPI := serverkeyapi.NewInternalAPI(
|
2020-08-10 13:18:04 +00:00
|
|
|
&base.Cfg.ServerKeyAPI, federation, base.Caches,
|
2020-05-27 09:19:24 +00:00
|
|
|
)
|
2020-06-04 13:27:10 +00:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-08 14:51:07 +00:00
|
|
|
serverkeyapi.AddInternalRoutes(base.InternalAPIMux, serverKeyAPI, base.Caches)
|
2020-06-04 15:26:35 +00:00
|
|
|
serverKeyAPI = base.ServerKeyAPIClient()
|
2020-05-27 09:19:24 +00:00
|
|
|
}
|
|
|
|
keyRing := serverKeyAPI.KeyRing()
|
2017-08-04 12:12:36 +00:00
|
|
|
|
2020-06-15 15:58:22 +00:00
|
|
|
rsImpl := roomserver.NewInternalAPI(
|
2020-05-01 09:48:17 +00:00
|
|
|
base, keyRing, federation,
|
2018-08-20 09:45:17 +00:00
|
|
|
)
|
2020-06-15 15:58:22 +00:00
|
|
|
// call functions directly on the impl unless running in HTTP mode
|
|
|
|
rsAPI := rsImpl
|
2020-06-04 13:27:10 +00:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-15 15:58:22 +00:00
|
|
|
roomserver.AddInternalRoutes(base.InternalAPIMux, rsImpl)
|
2020-06-04 14:43:07 +00:00
|
|
|
rsAPI = base.RoomserverHTTPClient()
|
2020-05-22 11:28:36 +00:00
|
|
|
}
|
2020-06-12 11:10:08 +00:00
|
|
|
if traceInternal {
|
|
|
|
rsAPI = &api.RoomserverInternalAPITrace{
|
|
|
|
Impl: rsAPI,
|
|
|
|
}
|
|
|
|
}
|
2020-05-22 11:28:36 +00:00
|
|
|
|
2020-08-20 16:03:07 +00:00
|
|
|
stateAPI := currentstateserver.NewInternalAPI(&base.Cfg.CurrentStateServer, base.KafkaConsumer)
|
|
|
|
|
|
|
|
fsAPI := federationsender.NewInternalAPI(
|
|
|
|
base, federation, rsAPI, stateAPI, keyRing,
|
|
|
|
)
|
|
|
|
if base.UseHTTPAPIs {
|
|
|
|
federationsender.AddInternalRoutes(base.InternalAPIMux, fsAPI)
|
|
|
|
fsAPI = base.FederationSenderHTTPClient()
|
|
|
|
}
|
|
|
|
// The underlying roomserver implementation needs to be able to call the fedsender.
|
|
|
|
// This is different to rsAPI which can be the http client which doesn't need this dependency
|
|
|
|
rsImpl.SetFederationSenderAPI(fsAPI)
|
|
|
|
|
|
|
|
keyAPI := keyserver.NewInternalAPI(&base.Cfg.KeyServer, fsAPI, base.KafkaProducer)
|
|
|
|
userAPI := userapi.NewInternalAPI(accountDB, deviceDB, cfg.Global.ServerName, cfg.Derived.ApplicationServices, keyAPI)
|
|
|
|
keyAPI.SetUserAPI(userAPI)
|
|
|
|
|
2020-06-08 14:51:07 +00:00
|
|
|
eduInputAPI := eduserver.NewInternalAPI(
|
2020-06-16 16:39:56 +00:00
|
|
|
base, cache.New(), userAPI,
|
2020-05-01 09:48:17 +00:00
|
|
|
)
|
2020-06-04 13:27:10 +00:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-08 14:51:07 +00:00
|
|
|
eduserver.AddInternalRoutes(base.InternalAPIMux, eduInputAPI)
|
2020-06-04 14:43:07 +00:00
|
|
|
eduInputAPI = base.EDUServerClient()
|
2020-05-22 11:28:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-16 16:39:56 +00:00
|
|
|
asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI)
|
2020-06-04 13:27:10 +00:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-08 14:51:07 +00:00
|
|
|
appservice.AddInternalRoutes(base.InternalAPIMux, asAPI)
|
2020-06-04 14:43:07 +00:00
|
|
|
asAPI = base.AppserviceHTTPClient()
|
2020-05-22 11:28:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 11:07:33 +00:00
|
|
|
monolith := setup.Monolith{
|
|
|
|
Config: base.Cfg,
|
|
|
|
AccountDB: accountDB,
|
|
|
|
DeviceDB: deviceDB,
|
2020-08-10 13:18:04 +00:00
|
|
|
Client: gomatrixserverlib.NewClient(cfg.FederationSender.DisableTLSValidation),
|
2020-06-09 11:07:33 +00:00
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
|
|
|
KafkaConsumer: base.KafkaConsumer,
|
|
|
|
KafkaProducer: base.KafkaProducer,
|
|
|
|
|
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
EDUInternalAPI: eduInputAPI,
|
|
|
|
FederationSenderAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
|
|
|
ServerKeyAPI: serverKeyAPI,
|
2020-06-30 12:34:59 +00:00
|
|
|
StateAPI: stateAPI,
|
2020-06-16 13:10:55 +00:00
|
|
|
UserAPI: userAPI,
|
2020-07-13 15:02:35 +00:00
|
|
|
KeyAPI: keyAPI,
|
2020-06-09 11:07:33 +00:00
|
|
|
}
|
2020-08-13 11:16:37 +00:00
|
|
|
monolith.AddAllPublicRoutes(
|
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.PublicFederationAPIMux,
|
|
|
|
base.PublicKeyAPIMux,
|
|
|
|
base.PublicMediaAPIMux,
|
2020-05-22 10:43:17 +00:00
|
|
|
)
|
2018-05-23 14:42:08 +00:00
|
|
|
|
2017-08-04 12:12:36 +00:00
|
|
|
// Expose the matrix APIs directly rather than putting them under a /api path.
|
2017-08-07 12:39:53 +00:00
|
|
|
go func() {
|
2020-08-13 11:16:37 +00:00
|
|
|
base.SetupAndServeHTTP(
|
|
|
|
config.HTTPAddress(httpAddr), // internal API
|
|
|
|
config.HTTPAddress(httpAddr), // external API
|
|
|
|
nil, nil, // TLS settings
|
|
|
|
)
|
2017-08-07 12:39:53 +00:00
|
|
|
}()
|
2020-04-20 16:42:34 +00:00
|
|
|
// Handle HTTPS if certificate and key are provided
|
|
|
|
if *certFile != "" && *keyFile != "" {
|
|
|
|
go func() {
|
2020-08-13 11:16:37 +00:00
|
|
|
base.SetupAndServeHTTP(
|
|
|
|
config.HTTPAddress(httpsAddr), // internal API
|
|
|
|
config.HTTPAddress(httpsAddr), // external API
|
|
|
|
certFile, keyFile, // TLS settings
|
|
|
|
)
|
2020-04-20 16:42:34 +00:00
|
|
|
}()
|
|
|
|
}
|
2017-08-07 12:39:53 +00:00
|
|
|
|
|
|
|
// We want to block forever to let the HTTP and HTTPS handler serve the APIs
|
|
|
|
select {}
|
2017-08-04 12:12:36 +00:00
|
|
|
}
|