2020-05-01 14:01:50 +02:00
|
|
|
package internal
|
2020-04-29 12:34:31 +02:00
|
|
|
|
|
|
|
import (
|
2020-06-01 19:34:08 +02:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/queue"
|
2020-04-29 12:34:31 +02:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/storage"
|
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 13:42:06 +02:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/types"
|
2020-05-21 15:40:13 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-10 17:54:43 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-04-29 16:29:39 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-04-29 12:34:31 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// FederationSenderInternalAPI is an implementation of api.FederationSenderInternalAPI
|
|
|
|
type FederationSenderInternalAPI struct {
|
2020-04-29 16:29:39 +02:00
|
|
|
db storage.Database
|
|
|
|
cfg *config.Dendrite
|
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 13:42:06 +02:00
|
|
|
statistics *types.Statistics
|
2020-06-10 17:54:43 +02:00
|
|
|
rsAPI api.RoomserverInternalAPI
|
2020-04-29 16:29:39 +02:00
|
|
|
federation *gomatrixserverlib.FederationClient
|
|
|
|
keyRing *gomatrixserverlib.KeyRing
|
2020-06-01 19:34:08 +02:00
|
|
|
queues *queue.OutgoingQueues
|
2020-04-29 16:29:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewFederationSenderInternalAPI(
|
|
|
|
db storage.Database, cfg *config.Dendrite,
|
2020-06-10 17:54:43 +02:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
2020-04-29 16:29:39 +02:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
keyRing *gomatrixserverlib.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 13:42:06 +02:00
|
|
|
statistics *types.Statistics,
|
2020-06-01 19:34:08 +02:00
|
|
|
queues *queue.OutgoingQueues,
|
2020-04-29 16:29:39 +02:00
|
|
|
) *FederationSenderInternalAPI {
|
|
|
|
return &FederationSenderInternalAPI{
|
|
|
|
db: db,
|
|
|
|
cfg: cfg,
|
2020-06-10 17:54:43 +02:00
|
|
|
rsAPI: rsAPI,
|
2020-04-29 16:29:39 +02: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 13:42:06 +02:00
|
|
|
statistics: statistics,
|
2020-06-01 19:34:08 +02:00
|
|
|
queues: queues,
|
2020-04-29 16:29:39 +02:00
|
|
|
}
|
2020-04-29 12:34:31 +02:00
|
|
|
}
|