2017-10-17 18:12:54 +00:00
|
|
|
// Copyright 2017 Paul Tötterman <paul.totterman@iki.fi>
|
|
|
|
//
|
|
|
|
// 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 (
|
|
|
|
"database/sql"
|
2017-11-14 09:59:02 +00:00
|
|
|
"encoding/json"
|
2020-07-09 23:39:44 +00:00
|
|
|
"io/ioutil"
|
2017-10-17 18:12:54 +00:00
|
|
|
"net/http"
|
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth"
|
2017-10-17 18:12:54 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 11:05:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/devices"
|
2017-10-17 18:12:54 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2020-06-19 12:29:27 +00:00
|
|
|
// https://matrix.org/docs/spec/client_server/r0.6.1#get-matrix-client-r0-devices
|
2017-10-17 18:12:54 +00:00
|
|
|
type deviceJSON struct {
|
2020-06-19 12:29:27 +00:00
|
|
|
DeviceID string `json:"device_id"`
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
LastSeenIP string `json:"last_seen_ip"`
|
|
|
|
LastSeenTS uint64 `json:"last_seen_ts"`
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type devicesJSON struct {
|
|
|
|
Devices []deviceJSON `json:"devices"`
|
|
|
|
}
|
|
|
|
|
2017-11-14 09:59:02 +00:00
|
|
|
type deviceUpdateJSON struct {
|
|
|
|
DisplayName *string `json:"display_name"`
|
|
|
|
}
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
type devicesDeleteJSON struct {
|
|
|
|
Devices []string `json:"devices"`
|
|
|
|
}
|
|
|
|
|
2018-05-24 12:53:22 +00:00
|
|
|
// GetDeviceByID handles /devices/{deviceID}
|
2017-10-17 18:12:54 +00:00
|
|
|
func GetDeviceByID(
|
2020-06-16 13:10:55 +00:00
|
|
|
req *http.Request, deviceDB devices.Database, device *api.Device,
|
2017-10-17 18:12:54 +00:00
|
|
|
deviceID string,
|
|
|
|
) util.JSONResponse {
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx := req.Context()
|
|
|
|
dev, err := deviceDB.GetDeviceByID(ctx, localpart, deviceID)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusNotFound,
|
2017-10-17 18:12:54 +00:00
|
|
|
JSON: jsonerror.NotFound("Unknown device"),
|
|
|
|
}
|
|
|
|
} else if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("deviceDB.GetDeviceByID failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-10-17 18:12:54 +00:00
|
|
|
JSON: deviceJSON{
|
2020-07-09 23:39:44 +00:00
|
|
|
DeviceID: dev.ID,
|
|
|
|
DisplayName: dev.DisplayName,
|
2017-10-17 18:12:54 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDevicesByLocalpart handles /devices
|
|
|
|
func GetDevicesByLocalpart(
|
2020-06-16 13:10:55 +00:00
|
|
|
req *http.Request, deviceDB devices.Database, device *api.Device,
|
2017-10-17 18:12:54 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx := req.Context()
|
2017-11-15 10:25:48 +00:00
|
|
|
deviceList, err := deviceDB.GetDevicesByLocalpart(ctx, localpart)
|
2017-10-17 18:12:54 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("deviceDB.GetDevicesByLocalpart failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-17 18:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res := devicesJSON{}
|
|
|
|
|
2017-11-15 10:25:48 +00:00
|
|
|
for _, dev := range deviceList {
|
2017-10-17 18:12:54 +00:00
|
|
|
res.Devices = append(res.Devices, deviceJSON{
|
2020-07-09 23:39:44 +00:00
|
|
|
DeviceID: dev.ID,
|
|
|
|
DisplayName: dev.DisplayName,
|
2017-10-17 18:12:54 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-10-17 18:12:54 +00:00
|
|
|
JSON: res,
|
|
|
|
}
|
|
|
|
}
|
2017-11-14 09:59:02 +00:00
|
|
|
|
|
|
|
// UpdateDeviceByID handles PUT on /devices/{deviceID}
|
|
|
|
func UpdateDeviceByID(
|
2020-07-31 13:40:45 +00:00
|
|
|
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
2017-11-14 09:59:02 +00:00
|
|
|
deviceID string,
|
|
|
|
) util.JSONResponse {
|
|
|
|
|
|
|
|
defer req.Body.Close() // nolint: errcheck
|
|
|
|
|
|
|
|
payload := deviceUpdateJSON{}
|
|
|
|
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&payload); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("json.NewDecoder.Decode failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-11-14 09:59:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 13:40:45 +00:00
|
|
|
var performRes api.PerformDeviceUpdateResponse
|
|
|
|
err := userAPI.PerformDeviceUpdate(req.Context(), &api.PerformDeviceUpdateRequest{
|
|
|
|
RequestingUserID: device.UserID,
|
|
|
|
DeviceID: deviceID,
|
|
|
|
DisplayName: payload.DisplayName,
|
|
|
|
}, &performRes)
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("PerformDeviceUpdate failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2017-11-14 09:59:02 +00:00
|
|
|
}
|
2020-07-31 13:40:45 +00:00
|
|
|
if !performRes.DeviceExists {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
|
|
|
JSON: jsonerror.Forbidden("device does not exist"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if performRes.Forbidden {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("device not owned by current user"),
|
|
|
|
}
|
|
|
|
}
|
2017-11-14 09:59:02 +00:00
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-11-14 09:59:02 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|
2020-02-11 12:13:38 +00:00
|
|
|
|
|
|
|
// DeleteDeviceById handles DELETE requests to /devices/{deviceId}
|
|
|
|
func DeleteDeviceById(
|
2020-07-30 17:00:56 +00:00
|
|
|
req *http.Request, userInteractiveAuth *auth.UserInteractive, userAPI api.UserInternalAPI, device *api.Device,
|
2020-02-11 12:13:38 +00:00
|
|
|
deviceID string,
|
|
|
|
) util.JSONResponse {
|
2020-07-09 23:39:44 +00:00
|
|
|
ctx := req.Context()
|
|
|
|
defer req.Body.Close() // nolint:errcheck
|
|
|
|
bodyBytes, err := ioutil.ReadAll(req.Body)
|
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.BadJSON("The request body could not be read: " + err.Error()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
login, errRes := userInteractiveAuth.Verify(ctx, bodyBytes, device)
|
|
|
|
if errRes != nil {
|
|
|
|
return *errRes
|
|
|
|
}
|
|
|
|
|
2020-02-11 12:13:38 +00:00
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
|
|
|
|
if err != nil {
|
2020-07-09 23:39:44 +00:00
|
|
|
util.GetLogger(ctx).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2020-02-11 12:13:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 23:39:44 +00:00
|
|
|
// make sure that the access token being used matches the login creds used for user interactive auth, else
|
|
|
|
// 1 compromised access token could be used to logout all devices.
|
|
|
|
if login.Username() != localpart && login.Username() != device.UserID {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: 403,
|
|
|
|
JSON: jsonerror.Forbidden("Cannot delete another user's device"),
|
|
|
|
}
|
|
|
|
}
|
2020-02-11 12:13:38 +00:00
|
|
|
|
2020-07-30 17:00:56 +00:00
|
|
|
var res api.PerformDeviceDeletionResponse
|
|
|
|
if err := userAPI.PerformDeviceDeletion(ctx, &api.PerformDeviceDeletionRequest{
|
|
|
|
UserID: device.UserID,
|
|
|
|
DeviceIDs: []string{deviceID},
|
|
|
|
}, &res); err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("userAPI.PerformDeviceDeletion failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2020-02-11 12:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteDevices handles POST requests to /delete_devices
|
|
|
|
func DeleteDevices(
|
2020-07-30 17:00:56 +00:00
|
|
|
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
2020-02-11 12:13:38 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
ctx := req.Context()
|
|
|
|
payload := devicesDeleteJSON{}
|
|
|
|
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&payload); err != nil {
|
2020-07-30 17:00:56 +00:00
|
|
|
util.GetLogger(ctx).WithError(err).Error("json.NewDecoder.Decode failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2020-02-11 12:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer req.Body.Close() // nolint: errcheck
|
|
|
|
|
2020-07-30 17:00:56 +00:00
|
|
|
var res api.PerformDeviceDeletionResponse
|
|
|
|
if err := userAPI.PerformDeviceDeletion(ctx, &api.PerformDeviceDeletionRequest{
|
|
|
|
UserID: device.UserID,
|
|
|
|
DeviceIDs: payload.Devices,
|
|
|
|
}, &res); err != nil {
|
|
|
|
util.GetLogger(ctx).WithError(err).Error("userAPI.PerformDeviceDeletion failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2020-02-11 12:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|