2020-03-14 21:08:54 +01: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 (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
|
2022-01-06 18:13:34 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-03-14 21:08:54 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2023-04-06 10:55:01 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/fclient"
|
2020-03-14 21:08:54 +01:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetEventAuth returns event auth for the roomID and eventID
|
|
|
|
func GetEventAuth(
|
|
|
|
ctx context.Context,
|
2023-04-19 16:50:33 +02:00
|
|
|
request *fclient.FederationRequest,
|
2022-05-05 20:30:38 +02:00
|
|
|
rsAPI api.FederationRoomserverAPI,
|
2020-03-14 21:08:54 +01:00
|
|
|
roomID string,
|
|
|
|
eventID string,
|
|
|
|
) util.JSONResponse {
|
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(ctx, rsAPI, roomID); err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2023-03-01 17:06:47 +01:00
|
|
|
event, resErr := fetchEvent(ctx, rsAPI, roomID, eventID)
|
2022-01-06 18:13:34 +01:00
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
|
|
|
if event.RoomID() != roomID {
|
|
|
|
return util.JSONResponse{Code: http.StatusNotFound, JSON: jsonerror.NotFound("event does not belong to this room")}
|
|
|
|
}
|
|
|
|
resErr = allowedToSeeEvent(ctx, request.Origin(), rsAPI, eventID)
|
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
|
|
|
var response api.QueryStateAndAuthChainResponse
|
|
|
|
err := rsAPI.QueryStateAndAuthChain(
|
|
|
|
ctx,
|
|
|
|
&api.QueryStateAndAuthChainRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
PrevEventIDs: []string{eventID},
|
|
|
|
AuthEventIDs: event.AuthEventIDs(),
|
|
|
|
OnlyFetchAuthChain: true,
|
|
|
|
},
|
|
|
|
&response,
|
|
|
|
)
|
2020-03-14 21:08:54 +01:00
|
|
|
if err != nil {
|
2022-01-06 18:13:34 +01:00
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !response.RoomExists {
|
|
|
|
return util.JSONResponse{Code: http.StatusNotFound, JSON: nil}
|
2020-03-14 21:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
2023-04-06 10:55:01 +02:00
|
|
|
JSON: fclient.RespEventAuth{
|
2022-02-09 21:31:24 +01:00
|
|
|
AuthEvents: gomatrixserverlib.NewEventJSONsFromHeaderedEvents(response.AuthChainEvents),
|
2022-01-06 18:13:34 +01:00
|
|
|
},
|
2020-03-14 21:08:54 +01:00
|
|
|
}
|
|
|
|
}
|