2020-05-14 14:05:14 +01: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.
|
|
|
|
|
|
|
|
package keyserver
|
|
|
|
|
|
|
|
import (
|
2020-06-08 15:51:07 +01:00
|
|
|
"github.com/gorilla/mux"
|
2022-09-07 10:45:12 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2022-12-12 07:20:59 +00:00
|
|
|
rsapi "github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
fedsenderapi "github.com/matrix-org/dendrite/federationapi/api"
|
2020-07-13 16:02:35 +01:00
|
|
|
"github.com/matrix-org/dendrite/keyserver/api"
|
2022-06-15 14:27:07 +01:00
|
|
|
"github.com/matrix-org/dendrite/keyserver/consumers"
|
2020-07-13 16:02:35 +01:00
|
|
|
"github.com/matrix-org/dendrite/keyserver/internal"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver/inthttp"
|
2020-07-23 16:41:36 +01:00
|
|
|
"github.com/matrix-org/dendrite/keyserver/producers"
|
2020-07-15 12:02:34 +01:00
|
|
|
"github.com/matrix-org/dendrite/keyserver/storage"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2022-01-05 17:44:49 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-05-14 14:05:14 +01:00
|
|
|
)
|
|
|
|
|
2020-07-13 16:02:35 +01:00
|
|
|
// AddInternalRoutes registers HTTP handlers for the internal API. Invokes functions
|
|
|
|
// on the given input API.
|
2022-12-05 12:53:36 +00:00
|
|
|
func AddInternalRoutes(router *mux.Router, intAPI api.KeyInternalAPI, enableMetrics bool) {
|
|
|
|
inthttp.AddRoutes(router, intAPI, enableMetrics)
|
2020-07-13 16:02:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInternalAPI returns a concerete implementation of the internal API. Callers
|
|
|
|
// can call functions directly on the returned API or via an HTTP interface using AddInternalRoutes.
|
2020-07-23 16:41:36 +01:00
|
|
|
func NewInternalAPI(
|
2022-05-17 13:23:35 +01:00
|
|
|
base *base.BaseDendrite, cfg *config.KeyServer, fedClient fedsenderapi.KeyserverFederationAPI,
|
2022-12-12 07:20:59 +00:00
|
|
|
rsAPI rsapi.KeyserverRoomserverAPI,
|
2020-07-23 16:41:36 +01:00
|
|
|
) api.KeyInternalAPI {
|
2022-05-09 14:15:24 +01:00
|
|
|
js, _ := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2020-10-15 13:27:13 +01:00
|
|
|
|
2022-05-03 16:35:06 +01:00
|
|
|
db, err := storage.NewDatabase(base, &cfg.Database)
|
2020-07-15 12:02:34 +01:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to key server database")
|
|
|
|
}
|
2022-12-12 07:20:59 +00:00
|
|
|
|
2020-07-23 16:41:36 +01:00
|
|
|
keyChangeProducer := &producers.KeyChange{
|
2022-03-23 10:20:18 +00:00
|
|
|
Topic: string(cfg.Matrix.JetStream.Prefixed(jetstream.OutputKeyChangeEvent)),
|
2022-01-21 09:56:06 +00:00
|
|
|
JetStream: js,
|
|
|
|
DB: db,
|
2020-07-23 16:41:36 +01:00
|
|
|
}
|
2021-08-04 17:56:29 +01:00
|
|
|
ap := &internal.KeyInternalAPI{
|
2022-11-11 16:41:37 +00:00
|
|
|
DB: db,
|
|
|
|
Cfg: cfg,
|
|
|
|
FedClient: fedClient,
|
|
|
|
Producer: keyChangeProducer,
|
2021-08-04 17:56:29 +01:00
|
|
|
}
|
2022-12-12 07:20:59 +00:00
|
|
|
updater := internal.NewDeviceListUpdater(base.ProcessContext, db, ap, keyChangeProducer, fedClient, 8, rsAPI, cfg.Matrix.ServerName) // 8 workers TODO: configurable
|
2021-08-04 17:56:29 +01:00
|
|
|
ap.Updater = updater
|
2022-12-12 07:20:59 +00:00
|
|
|
|
|
|
|
// Remove users which we don't share a room with anymore
|
|
|
|
if err := updater.CleanUp(); err != nil {
|
|
|
|
logrus.WithError(err).Error("failed to cleanup stale device lists")
|
|
|
|
}
|
|
|
|
|
2020-09-03 21:17:55 +01:00
|
|
|
go func() {
|
2022-08-29 08:10:42 +01:00
|
|
|
if err := updater.Start(); err != nil {
|
2020-09-03 21:17:55 +01:00
|
|
|
logrus.WithError(err).Panicf("failed to start device list updater")
|
|
|
|
}
|
|
|
|
}()
|
2021-08-04 17:56:29 +01:00
|
|
|
|
2022-06-15 14:27:07 +01:00
|
|
|
dlConsumer := consumers.NewDeviceListUpdateConsumer(
|
|
|
|
base.ProcessContext, cfg, js, updater,
|
|
|
|
)
|
2022-08-29 08:10:42 +01:00
|
|
|
if err := dlConsumer.Start(); err != nil {
|
2022-06-15 14:27:07 +01:00
|
|
|
logrus.WithError(err).Panic("failed to start device list consumer")
|
|
|
|
}
|
|
|
|
|
2022-09-07 10:45:12 +01:00
|
|
|
sigConsumer := consumers.NewSigningKeyUpdateConsumer(
|
|
|
|
base.ProcessContext, cfg, js, ap,
|
|
|
|
)
|
|
|
|
if err := sigConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start signing key consumer")
|
|
|
|
}
|
|
|
|
|
2021-08-04 17:56:29 +01:00
|
|
|
return ap
|
2020-05-14 14:05:14 +01:00
|
|
|
}
|