aboutsummaryrefslogtreecommitdiff
path: root/currentstateserver/internal/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'currentstateserver/internal/api.go')
-rw-r--r--currentstateserver/internal/api.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/currentstateserver/internal/api.go b/currentstateserver/internal/api.go
index c581c524..dc255412 100644
--- a/currentstateserver/internal/api.go
+++ b/currentstateserver/internal/api.go
@@ -17,6 +17,7 @@ package internal
import (
"context"
+ "github.com/matrix-org/dendrite/clientapi/auth/authtypes"
"github.com/matrix-org/dendrite/currentstateserver/api"
"github.com/matrix-org/dendrite/currentstateserver/storage"
"github.com/matrix-org/gomatrixserverlib"
@@ -49,6 +50,19 @@ func (a *CurrentStateInternalAPI) QueryRoomsForUser(ctx context.Context, req *ap
return nil
}
+func (a *CurrentStateInternalAPI) QueryKnownUsers(ctx context.Context, req *api.QueryKnownUsersRequest, res *api.QueryKnownUsersResponse) error {
+ users, err := a.DB.GetKnownUsers(ctx, req.UserID, req.SearchString, req.Limit)
+ if err != nil {
+ return err
+ }
+ for _, user := range users {
+ res.Users = append(res.Users, authtypes.FullyQualifiedProfile{
+ UserID: user,
+ })
+ }
+ return nil
+}
+
func (a *CurrentStateInternalAPI) QueryBulkStateContent(ctx context.Context, req *api.QueryBulkStateContentRequest, res *api.QueryBulkStateContentResponse) error {
events, err := a.DB.GetBulkStateContent(ctx, req.RoomIDs, req.StateTuples, req.AllowWildcards)
if err != nil {