From 0a7dea44505f703af1e7e069602ca95aa5a83700 Mon Sep 17 00:00:00 2001 From: kegsay Date: Fri, 18 Feb 2022 11:28:02 +0000 Subject: [PATCH] Update /whoami response to match Spec v1.2 (#2201) Basically include `is_guest` and `device_id`. The latter is needed for https://github.com/matrix-org/complement/pull/305 --- clientapi/routing/whoami.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/clientapi/routing/whoami.go b/clientapi/routing/whoami.go index 26280f6c..a1d9d667 100644 --- a/clientapi/routing/whoami.go +++ b/clientapi/routing/whoami.go @@ -21,7 +21,9 @@ import ( // whoamiResponse represents an response for a `whoami` request type whoamiResponse struct { - UserID string `json:"user_id"` + UserID string `json:"user_id"` + DeviceID string `json:"device_id"` + IsGuest bool `json:"is_guest"` } // Whoami implements `/account/whoami` which enables client to query their account user id. @@ -29,6 +31,10 @@ type whoamiResponse struct { func Whoami(req *http.Request, device *api.Device) util.JSONResponse { return util.JSONResponse{ Code: http.StatusOK, - JSON: whoamiResponse{UserID: device.UserID}, + JSON: whoamiResponse{ + UserID: device.UserID, + DeviceID: device.ID, + IsGuest: device.AccountType == api.AccountTypeGuest, + }, } }