2020-05-01 13:01:50 +01:00
|
|
|
package internal
|
2020-04-29 11:34:31 +01:00
|
|
|
|
|
|
|
import (
|
2020-06-01 18:34:08 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/queue"
|
2020-07-22 17:01:29 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/statistics"
|
2020-04-29 11:34:31 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/storage"
|
2020-05-21 14:40:13 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-10 16:54:43 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-04-29 15:29:39 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-04-29 11:34:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// FederationSenderInternalAPI is an implementation of api.FederationSenderInternalAPI
|
|
|
|
type FederationSenderInternalAPI struct {
|
2020-04-29 15:29:39 +01:00
|
|
|
db storage.Database
|
2020-08-10 14:18:04 +01:00
|
|
|
cfg *config.FederationSender
|
2020-07-22 17:01:29 +01:00
|
|
|
statistics *statistics.Statistics
|
2020-06-10 16:54:43 +01:00
|
|
|
rsAPI api.RoomserverInternalAPI
|
2020-04-29 15:29:39 +01:00
|
|
|
federation *gomatrixserverlib.FederationClient
|
|
|
|
keyRing *gomatrixserverlib.KeyRing
|
2020-06-01 18:34:08 +01:00
|
|
|
queues *queue.OutgoingQueues
|
2020-04-29 15:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewFederationSenderInternalAPI(
|
2020-08-10 14:18:04 +01:00
|
|
|
db storage.Database, cfg *config.FederationSender,
|
2020-06-10 16:54:43 +01:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
2020-04-29 15:29:39 +01:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2020-07-22 17:01:29 +01:00
|
|
|
statistics *statistics.Statistics,
|
2020-06-01 18:34:08 +01:00
|
|
|
queues *queue.OutgoingQueues,
|
2020-04-29 15:29:39 +01:00
|
|
|
) *FederationSenderInternalAPI {
|
|
|
|
return &FederationSenderInternalAPI{
|
|
|
|
db: db,
|
|
|
|
cfg: cfg,
|
2020-06-10 16:54:43 +01:00
|
|
|
rsAPI: rsAPI,
|
2020-04-29 15:29:39 +01:00
|
|
|
federation: federation,
|
|
|
|
keyRing: keyRing,
|
Improve federation sender performance, implement backoff and blacklisting, fix up invites a bit (#1007)
* Improve federation sender performance and behaviour, add backoff
* Tweaks
* Tweaks
* Tweaks
* Take copies of events before passing to destination queues
* Don't accidentally drop queued messages
* Don't take copies again
* Tidy up a bit
* Break out statistics (tracked component-wide), report success and failures from Perform actions
* Fix comment, use atomic add
* Improve logic a bit, don't block on wakeup, move idle check
* Don't retry sucessful invites, don't dispatch sendEvent, sendInvite etc
* Dedupe destinations, fix other bug hopefully
* Dispatch sends again
* Federation sender to ignore invites that are destined locally
* Loopback invite events
* Remodel a bit with channels
* Linter
* Only loopback invite event if we know the room
* We should tell other resident servers about the invite if we know about the room
* Correct invite signing
* Fix invite loopback
* Check HTTP response codes, push new invites to front of queue
* Review comments
2020-05-07 12:42:06 +01:00
|
|
|
statistics: statistics,
|
2020-06-01 18:34:08 +01:00
|
|
|
queues: queues,
|
2020-04-29 15:29:39 +01:00
|
|
|
}
|
2020-04-29 11:34:31 +01:00
|
|
|
}
|