2020-05-01 12:01:50 +00:00
|
|
|
package internal
|
2019-08-22 11:47:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
|
|
|
)
|
|
|
|
|
2020-04-29 10:34:31 +00:00
|
|
|
// QueryJoinedHostServerNamesInRoom implements api.FederationSenderInternalAPI
|
|
|
|
func (f *FederationSenderInternalAPI) QueryJoinedHostServerNamesInRoom(
|
2019-08-22 11:47:52 +00:00
|
|
|
ctx context.Context,
|
|
|
|
request *api.QueryJoinedHostServerNamesInRoomRequest,
|
|
|
|
response *api.QueryJoinedHostServerNamesInRoomResponse,
|
|
|
|
) (err error) {
|
2020-11-19 11:34:59 +00:00
|
|
|
joinedHosts, err := f.db.GetJoinedHostsForRooms(ctx, []string{request.RoomID})
|
2019-08-22 11:47:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-11-19 11:34:59 +00:00
|
|
|
response.ServerNames = joinedHosts
|
2019-08-22 11:47:52 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|