2017-08-04 14:12:36 +02: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 13:10:08 +02:00
|
|
|
"os"
|
2017-08-04 14:12:36 +02:00
|
|
|
|
2018-08-20 11:45:17 +02:00
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
2020-03-30 16:02:20 +02:00
|
|
|
"github.com/matrix-org/dendrite/eduserver"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver/cache"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
2020-07-13 17:02:35 +02:00
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
2020-06-12 13:10:08 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup"
|
2021-11-24 11:45:23 +01:00
|
|
|
basepkg "github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
"github.com/matrix-org/dendrite/setup/mscs"
|
2020-06-16 15:10:55 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
2021-08-03 12:23:25 +02:00
|
|
|
uapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-10-07 17:59:22 +02:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-07-20 12:18:14 +02:00
|
|
|
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
2017-08-04 14:12:36 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-05-18 11:56:43 +02: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")
|
2020-10-07 17:59:22 +02:00
|
|
|
apiBindAddr = flag.String("api-bind-address", "localhost:18008", "The HTTP listening port for the internal HTTP APIs (if -api is enabled)")
|
2020-05-18 11:56:43 +02:00
|
|
|
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 13:28:36 +02:00
|
|
|
enableHTTPAPIs = flag.Bool("api", false, "Use HTTP APIs instead of short-circuiting (warning: exposes API endpoints!)")
|
2020-06-12 13:10:08 +02:00
|
|
|
traceInternal = os.Getenv("DENDRITE_TRACE_INTERNAL") == "1"
|
2017-08-04 14:12:36 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-06-12 15:55:57 +02:00
|
|
|
cfg := setup.ParseFlags(true)
|
2020-08-13 13:16:37 +02:00
|
|
|
httpAddr := config.HTTPAddress("http://" + *httpBindAddr)
|
|
|
|
httpsAddr := config.HTTPAddress("https://" + *httpsBindAddr)
|
2020-10-07 17:59:22 +02:00
|
|
|
httpAPIAddr := httpAddr
|
2021-11-24 11:45:23 +01:00
|
|
|
options := []basepkg.BaseDendriteOptions{}
|
2020-05-22 13:28:36 +02:00
|
|
|
if *enableHTTPAPIs {
|
2020-10-07 17:59:22 +02:00
|
|
|
logrus.Warnf("DANGER! The -api option is enabled, exposing internal APIs on %q!", *apiBindAddr)
|
|
|
|
httpAPIAddr = config.HTTPAddress("http://" + *apiBindAddr)
|
2020-05-22 13:28:36 +02:00
|
|
|
// 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-10-07 17:59:22 +02:00
|
|
|
cfg.AppServiceAPI.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.ClientAPI.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.EDUServer.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.FederationAPI.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.KeyServer.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.MediaAPI.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.RoomServer.InternalAPI.Connect = httpAPIAddr
|
|
|
|
cfg.SyncAPI.InternalAPI.Connect = httpAPIAddr
|
2021-12-03 18:18:35 +01:00
|
|
|
cfg.UserAPI.InternalAPI.Connect = httpAPIAddr
|
2021-11-24 11:45:23 +01:00
|
|
|
options = append(options, basepkg.UseHTTPAPIs)
|
2020-05-22 13:28:36 +02:00
|
|
|
}
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
base := basepkg.NewBaseDendrite(cfg, "Monolith", options...)
|
2018-01-02 11:26:56 +01:00
|
|
|
defer base.Close() // nolint: errcheck
|
2017-08-04 14:12:36 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
federation := base.CreateFederationClient()
|
2020-05-27 11:19:24 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
rsImpl := roomserver.NewInternalAPI(base)
|
2020-06-15 17:58:22 +02:00
|
|
|
// call functions directly on the impl unless running in HTTP mode
|
|
|
|
rsAPI := rsImpl
|
2020-06-04 15:27:10 +02:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-15 17:58:22 +02:00
|
|
|
roomserver.AddInternalRoutes(base.InternalAPIMux, rsImpl)
|
2020-06-04 16:43:07 +02:00
|
|
|
rsAPI = base.RoomserverHTTPClient()
|
2020-05-22 13:28:36 +02:00
|
|
|
}
|
2020-06-12 13:10:08 +02:00
|
|
|
if traceInternal {
|
|
|
|
rsAPI = &api.RoomserverInternalAPITrace{
|
|
|
|
Impl: rsAPI,
|
|
|
|
}
|
|
|
|
}
|
2020-05-22 13:28:36 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
fsAPI := federationapi.NewInternalAPI(
|
2021-12-13 14:24:49 +01:00
|
|
|
base, federation, rsAPI, base.Caches, nil, false,
|
2020-08-20 18:03:07 +02:00
|
|
|
)
|
|
|
|
if base.UseHTTPAPIs {
|
2021-11-24 11:45:23 +01:00
|
|
|
federationapi.AddInternalRoutes(base.InternalAPIMux, fsAPI)
|
|
|
|
fsAPI = base.FederationAPIHTTPClient()
|
2020-08-20 18:03:07 +02:00
|
|
|
}
|
2021-11-24 11:45:23 +01:00
|
|
|
keyRing := fsAPI.KeyRing()
|
|
|
|
|
2021-12-03 18:18:35 +01:00
|
|
|
keyImpl := keyserver.NewInternalAPI(base, &base.Cfg.KeyServer, fsAPI)
|
|
|
|
keyAPI := keyImpl
|
|
|
|
if base.UseHTTPAPIs {
|
|
|
|
keyserver.AddInternalRoutes(base.InternalAPIMux, keyAPI)
|
|
|
|
keyAPI = base.KeyServerHTTPClient()
|
|
|
|
}
|
|
|
|
|
2022-03-03 12:40:53 +01:00
|
|
|
pgClient := base.PushGatewayHTTPClient()
|
|
|
|
userImpl := userapi.NewInternalAPI(base, accountDB, &cfg.UserAPI, cfg.Derived.ApplicationServices, keyAPI, rsAPI, pgClient)
|
2021-12-03 18:18:35 +01:00
|
|
|
userAPI := userImpl
|
|
|
|
if base.UseHTTPAPIs {
|
|
|
|
userapi.AddInternalRoutes(base.InternalAPIMux, userAPI)
|
|
|
|
userAPI = base.UserAPIClient()
|
|
|
|
}
|
2021-08-03 12:23:25 +02:00
|
|
|
if traceInternal {
|
|
|
|
userAPI = &uapi.UserInternalAPITrace{
|
|
|
|
Impl: userAPI,
|
|
|
|
}
|
|
|
|
}
|
2021-12-03 18:18:35 +01:00
|
|
|
|
|
|
|
// TODO: This should use userAPI, not userImpl, but the appservice setup races with
|
|
|
|
// the listeners and panics at startup if it tries to create appservice accounts
|
|
|
|
// before the listeners are up.
|
|
|
|
asAPI := appservice.NewInternalAPI(base, userImpl, rsAPI)
|
2021-08-09 15:35:24 +02:00
|
|
|
if base.UseHTTPAPIs {
|
2021-12-03 18:18:35 +01:00
|
|
|
appservice.AddInternalRoutes(base.InternalAPIMux, asAPI)
|
|
|
|
asAPI = base.AppserviceHTTPClient()
|
2021-08-09 15:35:24 +02:00
|
|
|
}
|
2020-08-20 18:03:07 +02:00
|
|
|
|
2021-12-03 18:18:35 +01:00
|
|
|
// 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. Other components also need updating after their dependencies are up.
|
2021-12-13 14:24:49 +01:00
|
|
|
rsImpl.SetFederationAPI(fsAPI, keyRing)
|
2021-12-03 18:18:35 +01:00
|
|
|
rsImpl.SetAppserviceAPI(asAPI)
|
2022-02-18 16:05:03 +01:00
|
|
|
rsImpl.SetUserAPI(userAPI)
|
2021-12-03 18:18:35 +01:00
|
|
|
keyImpl.SetUserAPI(userAPI)
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
eduInputAPI := eduserver.NewInternalAPI(
|
2020-06-16 18:39:56 +02:00
|
|
|
base, cache.New(), userAPI,
|
2020-05-01 11:48:17 +02:00
|
|
|
)
|
2020-06-04 15:27:10 +02:00
|
|
|
if base.UseHTTPAPIs {
|
2020-06-08 16:51:07 +02:00
|
|
|
eduserver.AddInternalRoutes(base.InternalAPIMux, eduInputAPI)
|
2020-06-04 16:43:07 +02:00
|
|
|
eduInputAPI = base.EDUServerClient()
|
2020-05-22 13:28:36 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 13:07:33 +02:00
|
|
|
monolith := setup.Monolith{
|
2020-10-15 14:27:13 +02:00
|
|
|
Config: base.Cfg,
|
|
|
|
AccountDB: accountDB,
|
|
|
|
Client: base.CreateClient(),
|
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
2020-06-09 13:07:33 +02:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
EDUInternalAPI: eduInputAPI,
|
|
|
|
FederationAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
|
|
|
UserAPI: userAPI,
|
|
|
|
KeyAPI: keyAPI,
|
2020-06-09 13:07:33 +02:00
|
|
|
}
|
2020-08-13 13:16:37 +02:00
|
|
|
monolith.AddAllPublicRoutes(
|
2021-01-26 13:56:20 +01:00
|
|
|
base.ProcessContext,
|
2020-08-13 13:16:37 +02:00
|
|
|
base.PublicClientAPIMux,
|
|
|
|
base.PublicFederationAPIMux,
|
|
|
|
base.PublicKeyAPIMux,
|
2021-09-10 11:05:31 +02:00
|
|
|
base.PublicWellKnownAPIMux,
|
2020-08-13 13:16:37 +02:00
|
|
|
base.PublicMediaAPIMux,
|
2021-07-09 17:52:31 +02:00
|
|
|
base.SynapseAdminMux,
|
2020-05-22 12:43:17 +02:00
|
|
|
)
|
2018-05-23 16:42:08 +02:00
|
|
|
|
2020-11-19 12:34:59 +01:00
|
|
|
if len(base.Cfg.MSCs.MSCs) > 0 {
|
|
|
|
if err := mscs.Enable(base, &monolith); err != nil {
|
|
|
|
logrus.WithError(err).Fatalf("Failed to enable MSCs")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 14:12:36 +02:00
|
|
|
// Expose the matrix APIs directly rather than putting them under a /api path.
|
2017-08-07 14:39:53 +02:00
|
|
|
go func() {
|
2020-08-13 13:16:37 +02:00
|
|
|
base.SetupAndServeHTTP(
|
2020-10-07 17:59:22 +02:00
|
|
|
httpAPIAddr, // internal API
|
|
|
|
httpAddr, // external API
|
|
|
|
nil, nil, // TLS settings
|
2020-08-13 13:16:37 +02:00
|
|
|
)
|
2017-08-07 14:39:53 +02:00
|
|
|
}()
|
2020-04-20 18:42:34 +02:00
|
|
|
// Handle HTTPS if certificate and key are provided
|
|
|
|
if *certFile != "" && *keyFile != "" {
|
|
|
|
go func() {
|
2020-08-13 13:16:37 +02:00
|
|
|
base.SetupAndServeHTTP(
|
2021-11-24 11:45:23 +01:00
|
|
|
basepkg.NoListener, // internal API
|
|
|
|
httpsAddr, // external API
|
|
|
|
certFile, keyFile, // TLS settings
|
2020-08-13 13:16:37 +02:00
|
|
|
)
|
2020-04-20 18:42:34 +02:00
|
|
|
}()
|
|
|
|
}
|
2017-08-07 14:39:53 +02:00
|
|
|
|
|
|
|
// We want to block forever to let the HTTP and HTTPS handler serve the APIs
|
2021-01-26 13:56:20 +01:00
|
|
|
base.WaitForShutdown()
|
2017-08-04 14:12:36 +02:00
|
|
|
}
|