2018-06-26 12:25:49 +02: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 (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2023-04-27 13:54:20 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
2023-04-06 10:55:01 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/fclient"
|
2023-05-10 00:46:49 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2018-06-26 12:25:49 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type getMissingEventRequest struct {
|
|
|
|
EarliestEvents []string `json:"earliest_events"`
|
|
|
|
LatestEvents []string `json:"latest_events"`
|
|
|
|
Limit int `json:"limit"`
|
2020-09-29 15:07:59 +02:00
|
|
|
MinDepth int64 `json:"min_depth"` // not used
|
2018-06-26 12:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetMissingEvents returns missing events between earliest_events & latest_events.
|
|
|
|
// Events are fetched from room DAG starting from latest_events until we reach earliest_events or the limit.
|
|
|
|
func GetMissingEvents(
|
|
|
|
httpReq *http.Request,
|
2023-04-19 16:50:33 +02:00
|
|
|
request *fclient.FederationRequest,
|
2022-05-05 20:30:38 +02:00
|
|
|
rsAPI api.FederationRoomserverAPI,
|
2018-06-26 12:25:49 +02:00
|
|
|
roomID string,
|
|
|
|
) util.JSONResponse {
|
|
|
|
var gme getMissingEventRequest
|
|
|
|
if err := json.Unmarshal(request.Content(), &gme); err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
2023-05-10 00:46:49 +02:00
|
|
|
JSON: spec.NotJSON("The request body could not be decoded into valid JSON. " + err.Error()),
|
2018-06-26 12:25:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 12:45:56 +02:00
|
|
|
// If we don't think we belong to this room then don't waste the effort
|
|
|
|
// responding to expensive requests for it.
|
|
|
|
if err := ErrorIfLocalServerNotInRoom(httpReq.Context(), rsAPI, roomID); err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:25:49 +02:00
|
|
|
var eventsResponse api.QueryMissingEventsResponse
|
2020-05-01 11:48:17 +02:00
|
|
|
if err := rsAPI.QueryMissingEvents(
|
2018-06-26 12:25:49 +02:00
|
|
|
httpReq.Context(), &api.QueryMissingEventsRequest{
|
|
|
|
EarliestEvents: gme.EarliestEvents,
|
|
|
|
LatestEvents: gme.LatestEvents,
|
|
|
|
Limit: gme.Limit,
|
|
|
|
ServerName: request.Origin(),
|
|
|
|
},
|
|
|
|
&eventsResponse,
|
|
|
|
); err != nil {
|
2020-03-02 17:20:44 +01:00
|
|
|
util.GetLogger(httpReq.Context()).WithError(err).Error("query.QueryMissingEvents failed")
|
2023-05-17 02:33:27 +02:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusInternalServerError,
|
|
|
|
JSON: spec.InternalServerError{},
|
|
|
|
}
|
2018-06-26 12:25:49 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 15:07:59 +02:00
|
|
|
eventsResponse.Events = filterEvents(eventsResponse.Events, roomID)
|
2020-05-28 13:44:34 +02:00
|
|
|
|
2023-04-06 10:55:01 +02:00
|
|
|
resp := fclient.RespMissingEvents{
|
2023-04-27 13:54:20 +02:00
|
|
|
Events: types.NewEventJSONsFromHeaderedEvents(eventsResponse.Events),
|
2020-05-28 13:44:34 +02:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:25:49 +02:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
2020-05-28 13:44:34 +02:00
|
|
|
JSON: resp,
|
2018-06-26 12:25:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 15:07:59 +02:00
|
|
|
// filterEvents returns only those events with matching roomID
|
2018-06-26 12:25:49 +02:00
|
|
|
func filterEvents(
|
2023-04-27 13:54:20 +02:00
|
|
|
events []*types.HeaderedEvent, roomID string,
|
|
|
|
) []*types.HeaderedEvent {
|
2018-06-26 12:25:49 +02:00
|
|
|
ref := events[:0]
|
|
|
|
for _, ev := range events {
|
2023-09-15 16:39:06 +02:00
|
|
|
if ev.RoomID().String() == roomID {
|
2018-06-26 12:25:49 +02:00
|
|
|
ref = append(ref, ev)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ref
|
|
|
|
}
|