2018-11-07 11:38:01 +00:00
|
|
|
// Copyright 2018 New Vector 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.
|
|
|
|
|
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
2020-03-27 16:28:22 +00:00
|
|
|
"encoding/json"
|
2020-04-16 16:59:55 +00:00
|
|
|
"fmt"
|
2018-11-07 11:38:01 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
2019-12-20 15:02:09 +00:00
|
|
|
"time"
|
2018-11-07 11:38:01 +00:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2018-11-07 11:38:01 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Backfill implements the /backfill federation endpoint.
|
|
|
|
// https://matrix.org/docs/spec/server_server/unstable.html#get-matrix-federation-v1-backfill-roomid
|
|
|
|
func Backfill(
|
|
|
|
httpReq *http.Request,
|
|
|
|
request *gomatrixserverlib.FederationRequest,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
2018-11-07 11:38:01 +00:00
|
|
|
roomID string,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.FederationAPI,
|
2018-11-07 11:38:01 +00:00
|
|
|
) util.JSONResponse {
|
2020-06-11 18:50:40 +00:00
|
|
|
var res api.PerformBackfillResponse
|
2018-11-07 11:38:01 +00:00
|
|
|
var eIDs []string
|
|
|
|
var limit string
|
|
|
|
var exists bool
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// Check the room ID's format.
|
|
|
|
if _, _, err = gomatrixserverlib.SplitID('!', roomID); err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.MissingArgument("Bad room ID: " + err.Error()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if all of the required parameters are there.
|
|
|
|
eIDs, exists = httpReq.URL.Query()["v"]
|
|
|
|
if !exists {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.MissingArgument("v is missing"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
limit = httpReq.URL.Query().Get("limit")
|
|
|
|
if len(limit) == 0 {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.MissingArgument("limit is missing"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Populate the request.
|
2020-06-11 18:50:40 +00:00
|
|
|
req := api.PerformBackfillRequest{
|
2020-05-20 15:04:31 +00:00
|
|
|
RoomID: roomID,
|
|
|
|
// we don't know who the successors are for these events, which won't
|
|
|
|
// be a problem because we don't use that information when servicing /backfill requests,
|
|
|
|
// only when making them. TODO: Think of a better API shape
|
|
|
|
BackwardsExtremities: map[string][]string{
|
|
|
|
"": eIDs,
|
|
|
|
},
|
|
|
|
ServerName: request.Origin(),
|
2018-11-07 11:38:01 +00:00
|
|
|
}
|
|
|
|
if req.Limit, err = strconv.Atoi(limit); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(httpReq.Context()).WithError(err).Error("strconv.Atoi failed")
|
2020-04-16 16:59:55 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.InvalidArgumentValue(fmt.Sprintf("limit %q is invalid format", limit)),
|
|
|
|
}
|
2018-11-07 11:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Query the roomserver.
|
2020-06-11 18:50:40 +00:00
|
|
|
if err = rsAPI.PerformBackfill(httpReq.Context(), &req, &res); err != nil {
|
|
|
|
util.GetLogger(httpReq.Context()).WithError(err).Error("query.PerformBackfill failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-11-07 11:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filter any event that's not from the requested room out.
|
|
|
|
evs := make([]gomatrixserverlib.Event, 0)
|
|
|
|
|
2020-03-16 17:29:52 +00:00
|
|
|
var ev gomatrixserverlib.HeaderedEvent
|
2018-11-07 11:38:01 +00:00
|
|
|
for _, ev = range res.Events {
|
|
|
|
if ev.RoomID() == roomID {
|
2020-03-16 17:29:52 +00:00
|
|
|
evs = append(evs, ev.Event)
|
2018-11-07 11:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 16:30:03 +00:00
|
|
|
eventJSONs := []json.RawMessage{}
|
2020-04-27 14:47:36 +00:00
|
|
|
for _, e := range gomatrixserverlib.ReverseTopologicalOrdering(
|
|
|
|
evs,
|
|
|
|
gomatrixserverlib.TopologicalOrderByPrevEvents,
|
|
|
|
) {
|
2020-03-27 16:28:22 +00:00
|
|
|
eventJSONs = append(eventJSONs, e.JSON())
|
|
|
|
}
|
|
|
|
|
2020-05-20 15:04:31 +00:00
|
|
|
// sytest wants these in reversed order, similar to /messages, so reverse them now.
|
|
|
|
for i := len(eventJSONs)/2 - 1; i >= 0; i-- {
|
|
|
|
opp := len(eventJSONs) - 1 - i
|
|
|
|
eventJSONs[i], eventJSONs[opp] = eventJSONs[opp], eventJSONs[i]
|
|
|
|
}
|
|
|
|
|
2019-12-20 15:02:09 +00:00
|
|
|
txn := gomatrixserverlib.Transaction{
|
|
|
|
Origin: cfg.Matrix.ServerName,
|
2020-03-27 16:28:22 +00:00
|
|
|
PDUs: eventJSONs,
|
2019-12-20 15:02:09 +00:00
|
|
|
OriginServerTS: gomatrixserverlib.AsTimestamp(time.Now()),
|
|
|
|
}
|
2018-11-07 11:38:01 +00:00
|
|
|
|
|
|
|
// Send the events to the client.
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: txn,
|
|
|
|
}
|
|
|
|
}
|