2017-04-20 22:40:52 +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-02-03 16:05:46 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2017-05-23 16:43:05 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-03-15 11:22:40 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2017-03-15 13:36:26 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
2017-10-25 13:44:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/common"
|
2017-06-19 14:21:04 +00:00
|
|
|
"github.com/matrix-org/dendrite/common/config"
|
2018-05-18 09:49:40 +00:00
|
|
|
"github.com/matrix-org/dendrite/common/transactions"
|
2017-03-15 11:22:40 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-02-03 16:05:46 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2017-03-15 11:22:40 +00:00
|
|
|
// http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-send-eventtype-txnid
|
2017-03-17 11:21:52 +00:00
|
|
|
// http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-state-eventtype-statekey
|
|
|
|
type sendEventResponse struct {
|
2017-03-15 11:22:40 +00:00
|
|
|
EventID string `json:"event_id"`
|
|
|
|
}
|
|
|
|
|
2017-03-17 11:21:52 +00:00
|
|
|
// SendEvent implements:
|
2017-09-26 11:55:48 +00:00
|
|
|
// /rooms/{roomID}/send/{eventType}
|
2017-03-17 11:21:52 +00:00
|
|
|
// /rooms/{roomID}/send/{eventType}/{txnID}
|
|
|
|
// /rooms/{roomID}/state/{eventType}/{stateKey}
|
2017-06-19 14:21:04 +00:00
|
|
|
func SendEvent(
|
|
|
|
req *http.Request,
|
|
|
|
device *authtypes.Device,
|
2017-12-04 18:07:52 +00:00
|
|
|
roomID, eventType string, txnID, stateKey *string,
|
2020-02-11 11:18:12 +00:00
|
|
|
cfg *config.Dendrite,
|
2017-06-19 14:21:04 +00:00
|
|
|
queryAPI api.RoomserverQueryAPI,
|
|
|
|
producer *producers.RoomserverProducer,
|
2018-05-18 09:49:40 +00:00
|
|
|
txnCache *transactions.Cache,
|
2017-06-19 14:21:04 +00:00
|
|
|
) util.JSONResponse {
|
2018-05-18 09:49:40 +00:00
|
|
|
if txnID != nil {
|
|
|
|
// Try to fetch response from transactionsCache
|
2019-08-06 15:33:53 +00:00
|
|
|
if res, ok := txnCache.FetchTransaction(device.AccessToken, *txnID); ok {
|
2018-05-18 09:49:40 +00:00
|
|
|
return *res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 12:40:25 +00:00
|
|
|
e, resErr := generateSendEvent(req, device, roomID, eventType, stateKey, cfg, queryAPI)
|
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:55:40 +00:00
|
|
|
var txnAndSessionID *api.TransactionID
|
2018-08-22 12:40:25 +00:00
|
|
|
if txnID != nil {
|
2019-08-23 16:55:40 +00:00
|
|
|
txnAndSessionID = &api.TransactionID{
|
2018-08-22 12:40:25 +00:00
|
|
|
TransactionID: *txnID,
|
2019-08-23 16:55:40 +00:00
|
|
|
SessionID: device.SessionID,
|
2018-08-22 12:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// pass the new event to the roomserver and receive the correct event ID
|
|
|
|
// event ID in case of duplicate transaction is discarded
|
|
|
|
eventID, err := producer.SendEvents(
|
2019-08-23 16:55:40 +00:00
|
|
|
req.Context(), []gomatrixserverlib.Event{*e}, cfg.Matrix.ServerName, txnAndSessionID,
|
2018-08-22 12:40:25 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return httputil.LogThenError(req, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res := util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: sendEventResponse{eventID},
|
|
|
|
}
|
|
|
|
// Add response to transactionsCache
|
|
|
|
if txnID != nil {
|
2019-08-06 15:33:53 +00:00
|
|
|
txnCache.AddTransaction(device.AccessToken, *txnID, &res)
|
2018-08-22 12:40:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateSendEvent(
|
|
|
|
req *http.Request,
|
|
|
|
device *authtypes.Device,
|
|
|
|
roomID, eventType string, stateKey *string,
|
2020-02-11 11:18:12 +00:00
|
|
|
cfg *config.Dendrite,
|
2018-08-22 12:40:25 +00:00
|
|
|
queryAPI api.RoomserverQueryAPI,
|
|
|
|
) (*gomatrixserverlib.Event, *util.JSONResponse) {
|
2017-03-15 11:22:40 +00:00
|
|
|
// parse the incoming http request
|
2017-05-23 16:43:05 +00:00
|
|
|
userID := device.UserID
|
2017-03-15 11:22:40 +00:00
|
|
|
var r map[string]interface{} // must be a JSON object
|
2017-05-23 16:43:05 +00:00
|
|
|
resErr := httputil.UnmarshalJSONRequest(req, &r)
|
2017-03-15 11:22:40 +00:00
|
|
|
if resErr != nil {
|
2018-08-22 12:40:25 +00:00
|
|
|
return nil, resErr
|
2017-03-15 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2018-08-22 12:40:25 +00:00
|
|
|
evTime, err := httputil.ParseTSParam(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.InvalidArgumentValue(err.Error()),
|
|
|
|
}
|
|
|
|
}
|
2018-08-06 13:09:25 +00:00
|
|
|
|
2017-03-15 11:22:40 +00:00
|
|
|
// create the new event and set all the fields we can
|
|
|
|
builder := gomatrixserverlib.EventBuilder{
|
|
|
|
Sender: userID,
|
|
|
|
RoomID: roomID,
|
|
|
|
Type: eventType,
|
2017-03-17 11:21:52 +00:00
|
|
|
StateKey: stateKey,
|
2017-03-15 11:22:40 +00:00
|
|
|
}
|
2018-08-22 12:40:25 +00:00
|
|
|
err = builder.SetContent(r)
|
2017-09-20 09:59:19 +00:00
|
|
|
if err != nil {
|
2018-08-22 12:40:25 +00:00
|
|
|
resErr := httputil.LogThenError(req, err)
|
|
|
|
return nil, &resErr
|
2017-09-20 09:59:19 +00:00
|
|
|
}
|
2017-03-15 11:22:40 +00:00
|
|
|
|
|
|
|
var queryRes api.QueryLatestEventsAndStateResponse
|
2018-08-06 13:09:25 +00:00
|
|
|
e, err := common.BuildEvent(req.Context(), &builder, cfg, evTime, queryAPI, &queryRes)
|
2017-10-25 13:44:33 +00:00
|
|
|
if err == common.ErrRoomNoExists {
|
2018-08-22 12:40:25 +00:00
|
|
|
return nil, &util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusNotFound,
|
2017-03-15 11:22:40 +00:00
|
|
|
JSON: jsonerror.NotFound("Room does not exist"),
|
|
|
|
}
|
2017-08-04 15:32:10 +00:00
|
|
|
} else if err != nil {
|
2018-08-22 12:40:25 +00:00
|
|
|
resErr := httputil.LogThenError(req, err)
|
|
|
|
return nil, &resErr
|
2017-03-15 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// check to see if this user can perform this operation
|
|
|
|
stateEvents := make([]*gomatrixserverlib.Event, len(queryRes.StateEvents))
|
|
|
|
for i := range queryRes.StateEvents {
|
|
|
|
stateEvents[i] = &queryRes.StateEvents[i]
|
|
|
|
}
|
|
|
|
provider := gomatrixserverlib.NewAuthEvents(stateEvents)
|
2017-08-04 15:32:10 +00:00
|
|
|
if err = gomatrixserverlib.Allowed(*e, &provider); err != nil {
|
2018-08-22 12:40:25 +00:00
|
|
|
return nil, &util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusForbidden,
|
2017-03-15 11:22:40 +00:00
|
|
|
JSON: jsonerror.Forbidden(err.Error()), // TODO: Is this error string comprehensible to the client?
|
|
|
|
}
|
|
|
|
}
|
2018-08-22 12:40:25 +00:00
|
|
|
return e, nil
|
2017-03-15 11:22:40 +00:00
|
|
|
}
|