2017-07-26 13:53:11 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2017-10-11 17:16:53 +00:00
|
|
|
package routing
|
2017-07-26 13:53:11 +00:00
|
|
|
|
|
|
|
import (
|
2020-04-11 16:47:05 +00:00
|
|
|
"encoding/json"
|
2020-06-18 17:36:03 +00:00
|
|
|
"fmt"
|
2017-07-26 13:53:11 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2017-08-02 15:21:35 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2017-07-26 13:53:11 +00:00
|
|
|
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2020-01-29 17:53:05 +00:00
|
|
|
// GetAccountData implements GET /user/{userId}/[rooms/{roomid}/]account_data/{type}
|
|
|
|
func GetAccountData(
|
2020-06-18 17:36:03 +00:00
|
|
|
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
2020-01-29 17:53:05 +00:00
|
|
|
userID string, roomID string, dataType string,
|
|
|
|
) util.JSONResponse {
|
|
|
|
if userID != device.UserID {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("userID does not match the current user"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-18 17:36:03 +00:00
|
|
|
dataReq := api.QueryAccountDataRequest{
|
|
|
|
UserID: userID,
|
|
|
|
DataType: dataType,
|
|
|
|
RoomID: roomID,
|
|
|
|
}
|
|
|
|
dataRes := api.QueryAccountDataResponse{}
|
|
|
|
if err := userAPI.QueryAccountData(req.Context(), &dataReq, &dataRes); err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("userAPI.QueryAccountData failed")
|
|
|
|
return util.ErrorResponse(fmt.Errorf("userAPI.QueryAccountData: %w", err))
|
2020-01-29 17:53:05 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 17:36:03 +00:00
|
|
|
var data json.RawMessage
|
|
|
|
var ok bool
|
|
|
|
if roomID != "" {
|
|
|
|
data, ok = dataRes.RoomAccountData[roomID][dataType]
|
|
|
|
} else {
|
|
|
|
data, ok = dataRes.GlobalAccountData[dataType]
|
|
|
|
}
|
|
|
|
if ok {
|
2020-01-29 17:53:05 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
2020-06-18 17:36:03 +00:00
|
|
|
JSON: data,
|
2020-01-29 17:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
|
|
|
JSON: jsonerror.Forbidden("data not found"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:53:11 +00:00
|
|
|
// SaveAccountData implements PUT /user/{userId}/[rooms/{roomId}/]account_data/{type}
|
|
|
|
func SaveAccountData(
|
2020-06-18 17:36:03 +00:00
|
|
|
req *http.Request, userAPI api.UserInternalAPI, device *api.Device,
|
2017-08-02 15:21:35 +00:00
|
|
|
userID string, roomID string, dataType string, syncProducer *producers.SyncAPIProducer,
|
2017-07-26 13:53:11 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
if userID != device.UserID {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusForbidden,
|
2017-07-26 13:53:11 +00:00
|
|
|
JSON: jsonerror.Forbidden("userID does not match the current user"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-20 09:59:19 +00:00
|
|
|
defer req.Body.Close() // nolint: errcheck
|
2017-07-26 13:53:11 +00:00
|
|
|
|
2020-04-11 16:47:05 +00:00
|
|
|
if req.Body == http.NoBody {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.NotJSON("Content not JSON"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:53:11 +00:00
|
|
|
body, err := ioutil.ReadAll(req.Body)
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("ioutil.ReadAll failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-07-26 13:53:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 16:47:05 +00:00
|
|
|
if !json.Valid(body) {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.BadJSON("Bad JSON content"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-18 17:36:03 +00:00
|
|
|
dataReq := api.InputAccountDataRequest{
|
|
|
|
UserID: userID,
|
|
|
|
DataType: dataType,
|
|
|
|
RoomID: roomID,
|
|
|
|
AccountData: json.RawMessage(body),
|
|
|
|
}
|
|
|
|
dataRes := api.InputAccountDataResponse{}
|
|
|
|
if err := userAPI.InputAccountData(req.Context(), &dataReq, &dataRes); err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("userAPI.QueryAccountData failed")
|
|
|
|
return util.ErrorResponse(err)
|
2017-07-26 13:53:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 17:36:03 +00:00
|
|
|
// TODO: user API should do this since it's account data
|
2017-08-02 15:21:35 +00:00
|
|
|
if err := syncProducer.SendData(userID, roomID, dataType); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("syncProducer.SendData failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-08-02 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 13:53:11 +00:00
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-07-26 13:53:11 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|