2018-06-26 10:32:43 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-06-16 13:53:19 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-06-02 10:29:47 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2018-06-26 10:32:43 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetUserDevices for the given user id
|
|
|
|
func GetUserDevices(
|
|
|
|
req *http.Request,
|
2020-06-16 13:53:19 +00:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2018-06-26 10:32:43 +00:00
|
|
|
userID string,
|
|
|
|
) util.JSONResponse {
|
2020-06-02 10:29:47 +00:00
|
|
|
response := gomatrixserverlib.RespUserDevices{
|
|
|
|
UserID: userID,
|
|
|
|
// TODO: we should return an incrementing stream ID each time the device
|
|
|
|
// list changes for delta changes to be recognised
|
|
|
|
StreamID: 0,
|
|
|
|
}
|
|
|
|
|
2020-06-16 13:53:19 +00:00
|
|
|
var res userapi.QueryDevicesResponse
|
|
|
|
err := userAPI.QueryDevices(req.Context(), &userapi.QueryDevicesRequest{
|
|
|
|
UserID: userID,
|
|
|
|
}, &res)
|
2018-06-26 10:32:43 +00:00
|
|
|
if err != nil {
|
2020-06-16 13:53:19 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("userAPI.QueryDevices failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-06-26 10:32:43 +00:00
|
|
|
}
|
|
|
|
|
2020-06-16 13:53:19 +00:00
|
|
|
for _, dev := range res.Devices {
|
2020-06-02 10:29:47 +00:00
|
|
|
device := gomatrixserverlib.RespUserDevice{
|
|
|
|
DeviceID: dev.ID,
|
|
|
|
DisplayName: dev.DisplayName,
|
|
|
|
Keys: []gomatrixserverlib.RespUserDeviceKeys{},
|
|
|
|
}
|
|
|
|
response.Devices = append(response.Devices, device)
|
|
|
|
}
|
|
|
|
|
2018-06-26 10:32:43 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: 200,
|
2020-06-02 10:29:47 +00:00
|
|
|
JSON: response,
|
2018-06-26 10:32:43 +00:00
|
|
|
}
|
|
|
|
}
|