2020-05-01 14:01:50 +02:00
|
|
|
package internal
|
2019-08-22 13:47:52 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2020-04-29 12:34:31 +02:00
|
|
|
// QueryJoinedHostServerNamesInRoom implements api.FederationSenderInternalAPI
|
|
|
|
func (f *FederationSenderInternalAPI) QueryJoinedHostServerNamesInRoom(
|
2019-08-22 13:47:52 +02:00
|
|
|
ctx context.Context,
|
|
|
|
request *api.QueryJoinedHostServerNamesInRoomRequest,
|
|
|
|
response *api.QueryJoinedHostServerNamesInRoomResponse,
|
|
|
|
) (err error) {
|
2020-04-29 16:29:39 +02:00
|
|
|
joinedHosts, err := f.db.GetJoinedHosts(ctx, request.RoomID)
|
2019-08-22 13:47:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-20 14:24:57 +01:00
|
|
|
response.ServerNames = make([]gomatrixserverlib.ServerName, 0, len(joinedHosts))
|
2019-08-22 13:47:52 +02:00
|
|
|
for _, host := range joinedHosts {
|
2019-12-20 14:24:57 +01:00
|
|
|
response.ServerNames = append(response.ServerNames, host.ServerName)
|
2019-08-22 13:47:52 +02:00
|
|
|
}
|
|
|
|
|
2019-12-20 14:24:57 +01:00
|
|
|
// TODO: remove duplicates?
|
2019-08-22 13:47:52 +02:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|