2018-07-24 14:49:49 +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/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-06-30 12:34:59 +00:00
|
|
|
currentstateAPI "github.com/matrix-org/dendrite/currentstateserver/api"
|
2020-06-10 11:17:54 +00:00
|
|
|
"github.com/matrix-org/dendrite/eduserver/api"
|
2020-06-16 13:10:55 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 11:05:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
2020-06-30 12:34:59 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2018-07-24 14:49:49 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type typingContentJSON struct {
|
|
|
|
Typing bool `json:"typing"`
|
|
|
|
Timeout int64 `json:"timeout"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendTyping handles PUT /rooms/{roomID}/typing/{userID}
|
|
|
|
// sends the typing events to client API typingProducer
|
|
|
|
func SendTyping(
|
2020-06-16 13:10:55 +00:00
|
|
|
req *http.Request, device *userapi.Device, roomID string,
|
2020-02-13 17:27:33 +00:00
|
|
|
userID string, accountDB accounts.Database,
|
2020-06-10 11:17:54 +00:00
|
|
|
eduAPI api.EDUServerInputAPI,
|
2020-06-30 12:34:59 +00:00
|
|
|
stateAPI currentstateAPI.CurrentStateInternalAPI,
|
2018-07-24 14:49:49 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
if device.UserID != userID {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("Cannot set another user's typing state"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-30 12:34:59 +00:00
|
|
|
// Verify that the user is a member of this room
|
|
|
|
tuple := gomatrixserverlib.StateKeyTuple{
|
|
|
|
EventType: gomatrixserverlib.MRoomMember,
|
|
|
|
StateKey: userID,
|
|
|
|
}
|
|
|
|
var res currentstateAPI.QueryCurrentStateResponse
|
|
|
|
err := stateAPI.QueryCurrentState(req.Context(), ¤tstateAPI.QueryCurrentStateRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
StateTuples: []gomatrixserverlib.StateKeyTuple{tuple},
|
|
|
|
}, &res)
|
2018-07-24 14:49:49 +00:00
|
|
|
if err != nil {
|
2020-06-30 12:34:59 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("QueryCurrentState failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-07-24 14:49:49 +00:00
|
|
|
}
|
2020-06-30 12:34:59 +00:00
|
|
|
ev := res.StateEvents[tuple]
|
|
|
|
if ev == nil {
|
2018-07-24 14:49:49 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("User not in this room"),
|
|
|
|
}
|
2020-06-30 12:34:59 +00:00
|
|
|
}
|
|
|
|
membership, err := ev.Membership()
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("Member event isn't valid")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-07-24 14:49:49 +00:00
|
|
|
}
|
2020-06-30 12:34:59 +00:00
|
|
|
if membership != gomatrixserverlib.Join {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("User not in this room"),
|
|
|
|
}
|
|
|
|
}
|
2018-07-24 14:49:49 +00:00
|
|
|
|
|
|
|
// parse the incoming http request
|
|
|
|
var r typingContentJSON
|
|
|
|
resErr := httputil.UnmarshalJSONRequest(req, &r)
|
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
2020-06-10 11:17:54 +00:00
|
|
|
if err = api.SendTyping(
|
|
|
|
req.Context(), eduAPI, userID, roomID, r.Typing, r.Timeout,
|
2018-07-24 14:49:49 +00:00
|
|
|
); err != nil {
|
2020-03-30 14:02:20 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("eduProducer.Send failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-07-24 14:49:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|