2018-06-22 12:46:19 +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 (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
2018-07-11 12:13:04 +02:00
|
|
|
"net/url"
|
2018-06-22 12:46:19 +02:00
|
|
|
|
|
|
|
"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-22 12:46:19 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetState returns state events & auth events for the roomID, eventID
|
|
|
|
func GetState(
|
|
|
|
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,
|
2018-06-22 12:46:19 +02:00
|
|
|
roomID string,
|
|
|
|
) util.JSONResponse {
|
2018-07-11 12:13:04 +02:00
|
|
|
eventID, err := parseEventIDParam(request)
|
|
|
|
if err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2022-02-09 21:31:24 +01:00
|
|
|
stateEvents, authChain, err := getState(ctx, request, rsAPI, roomID, eventID)
|
2018-06-22 12:46:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2023-04-06 10:55:01 +02:00
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &fclient.RespState{
|
2023-04-27 13:54:20 +02:00
|
|
|
AuthEvents: types.NewEventJSONsFromHeaderedEvents(authChain),
|
|
|
|
StateEvents: types.NewEventJSONsFromHeaderedEvents(stateEvents),
|
2022-02-09 21:31:24 +01:00
|
|
|
}}
|
2018-06-22 12:46:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetStateIDs returns state event IDs & auth event IDs for the roomID, eventID
|
|
|
|
func GetStateIDs(
|
|
|
|
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,
|
2018-06-22 12:46:19 +02:00
|
|
|
roomID string,
|
|
|
|
) util.JSONResponse {
|
2018-07-11 12:13:04 +02:00
|
|
|
eventID, err := parseEventIDParam(request)
|
|
|
|
if err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2022-02-09 21:31:24 +01:00
|
|
|
stateEvents, authEvents, err := getState(ctx, request, rsAPI, roomID, eventID)
|
2018-06-22 12:46:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return *err
|
|
|
|
}
|
|
|
|
|
2022-02-09 21:31:24 +01:00
|
|
|
stateEventIDs := getIDsFromEvent(stateEvents)
|
|
|
|
authEventIDs := getIDsFromEvent(authEvents)
|
2018-06-22 12:46:19 +02:00
|
|
|
|
2023-04-06 10:55:01 +02:00
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: fclient.RespStateIDs{
|
2018-06-22 12:46:19 +02:00
|
|
|
StateEventIDs: stateEventIDs,
|
|
|
|
AuthEventIDs: authEventIDs,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 12:13:04 +02:00
|
|
|
func parseEventIDParam(
|
2023-04-19 16:50:33 +02:00
|
|
|
request *fclient.FederationRequest,
|
2018-07-11 12:13:04 +02:00
|
|
|
) (eventID string, resErr *util.JSONResponse) {
|
|
|
|
URL, err := url.Parse(request.RequestURI())
|
|
|
|
if err != nil {
|
2019-06-19 15:05:03 +02:00
|
|
|
response := util.ErrorResponse(err)
|
|
|
|
resErr = &response
|
2018-07-11 12:13:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
eventID = URL.Query().Get("event_id")
|
|
|
|
if eventID == "" {
|
|
|
|
resErr = &util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
2023-05-10 00:46:49 +02:00
|
|
|
JSON: spec.MissingParam("event_id missing"),
|
2018-07-11 12:13:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-22 12:46:19 +02:00
|
|
|
func getState(
|
|
|
|
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,
|
2018-06-22 12:46:19 +02:00
|
|
|
roomID string,
|
|
|
|
eventID string,
|
2023-04-27 13:54:20 +02:00
|
|
|
) (stateEvents, authEvents []*types.HeaderedEvent, errRes *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 nil, nil, err
|
|
|
|
}
|
|
|
|
|
2023-03-01 17:06:47 +01:00
|
|
|
event, resErr := fetchEvent(ctx, rsAPI, roomID, eventID)
|
2018-06-22 12:46:19 +02:00
|
|
|
if resErr != nil {
|
2022-02-09 21:31:24 +01:00
|
|
|
return nil, nil, resErr
|
2018-06-22 12:46:19 +02:00
|
|
|
}
|
|
|
|
|
2023-09-15 16:39:06 +02:00
|
|
|
if event.RoomID().String() != roomID {
|
2023-05-10 00:46:49 +02:00
|
|
|
return nil, nil, &util.JSONResponse{Code: http.StatusNotFound, JSON: spec.NotFound("event does not belong to this room")}
|
2020-06-23 12:47:48 +02:00
|
|
|
}
|
2023-09-15 16:39:06 +02:00
|
|
|
resErr = allowedToSeeEvent(ctx, request.Origin(), rsAPI, eventID, event.RoomID().String())
|
2020-06-23 12:47:48 +02:00
|
|
|
if resErr != nil {
|
2022-02-09 21:31:24 +01:00
|
|
|
return nil, nil, resErr
|
2019-06-25 12:32:15 +02:00
|
|
|
}
|
|
|
|
|
2018-06-22 12:46:19 +02:00
|
|
|
var response api.QueryStateAndAuthChainResponse
|
2020-05-01 11:48:17 +02:00
|
|
|
err := rsAPI.QueryStateAndAuthChain(
|
2018-06-22 12:46:19 +02:00
|
|
|
ctx,
|
|
|
|
&api.QueryStateAndAuthChainRequest{
|
|
|
|
RoomID: roomID,
|
Federation for v3/v4 rooms (#954)
* Update gomatrixserverlib
* Default to room version 4
* Update gomatrixserverlib
* Limit prev_events and auth_events
* Fix auth_events, prev_events
* Fix linter issues
* Update gomatrixserverlib
* Fix getState
* Update sytest-whitelist
* Squashed commit of the following:
commit 067b87506357c996fd6ddb11271db9469ad4ce80
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date: Fri Apr 3 14:29:06 2020 +0100
Invites v2 endpoint (#952)
* Start converting v1 invite endpoint to v2
* Update gomatrixserverlib
* Early federationsender code for sending invites
* Sending invites sorta happens now
* Populate invite request with stripped state
* Remodel a bit, don't reflect received invites
* Handle invite_room_state
* Handle room versions a bit better
* Update gomatrixserverlib
* Tweak order in destinationQueue.next
* Revert check in processMessage
* Tweak federation sender destination queue code a bit
* Add comments
commit 955244c09298d0e6c870377dad3af2ffa1f5e578
Author: Ben B <benne@klimlive.de>
Date: Fri Apr 3 12:40:50 2020 +0200
use custom http client instead of the http DefaultClient (#823)
This commit replaces the default client from the http lib with a custom one.
The previously used default client doesn't come with a timeout. This could cause
unwanted locks.
That solution chosen here creates a http client in the base component dendrite
with a constant timeout of 30 seconds. If it should be necessary to overwrite
this, we could include the timeout in the dendrite configuration.
Here it would be a good idea to extend the type "Address" by a timeout and
create an http client for each service.
Closes #820
Signed-off-by: Benedikt Bongartz <benne@klimlive.de>
Co-authored-by: Kegsay <kegan@matrix.org>
* Update sytest-whitelist, sytest-blacklist
* Update go.mod/go.sum
* Add some error wrapping for debug
* Add a NOTSPEC to common/events.go
* Perform state resolution at send_join
* Set default room version to v2 again
* Tweak GetCapabilities
* Add comments to ResolveConflictsAdhoc
* Update sytest-blacklist
* go mod tidy
* Update sytest-whitelist, sytest-blacklist
* Update versions
* Updates from review comments
* Update sytest-blacklist, sytest-whitelist
* Check room versions compatible at make_join, add some comments, update gomatrixserverlib, other tweaks
* Set default room version back to v2
* Update gomatrixserverlib, sytest-whitelist
2020-04-09 16:46:06 +02:00
|
|
|
PrevEventIDs: []string{eventID},
|
2020-06-11 16:07:16 +02:00
|
|
|
AuthEventIDs: event.AuthEventIDs(),
|
2018-06-22 12:46:19 +02:00
|
|
|
},
|
|
|
|
&response,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
resErr := util.ErrorResponse(err)
|
2022-02-09 21:31:24 +01:00
|
|
|
return nil, nil, &resErr
|
2018-06-22 12:46:19 +02:00
|
|
|
}
|
|
|
|
|
2022-10-11 11:48:36 +02:00
|
|
|
switch {
|
|
|
|
case !response.RoomExists:
|
|
|
|
return nil, nil, &util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
2023-05-10 00:46:49 +02:00
|
|
|
JSON: spec.NotFound("Room not found"),
|
2022-10-11 11:48:36 +02:00
|
|
|
}
|
|
|
|
case !response.StateKnown:
|
2022-08-25 10:51:36 +02:00
|
|
|
return nil, nil, &util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
2023-05-10 00:46:49 +02:00
|
|
|
JSON: spec.NotFound("State not known"),
|
2022-08-25 10:51:36 +02:00
|
|
|
}
|
2022-10-11 11:48:36 +02:00
|
|
|
case response.IsRejected:
|
2022-04-25 19:05:01 +02:00
|
|
|
return nil, nil, &util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
2023-05-10 00:46:49 +02:00
|
|
|
JSON: spec.NotFound("Event not found"),
|
2022-04-25 19:05:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 21:31:24 +01:00
|
|
|
return response.StateEvents, response.AuthChainEvents, nil
|
2018-06-22 12:46:19 +02:00
|
|
|
}
|
|
|
|
|
2023-04-27 13:54:20 +02:00
|
|
|
func getIDsFromEvent(events []*types.HeaderedEvent) []string {
|
2018-06-22 12:46:19 +02:00
|
|
|
IDs := make([]string, len(events))
|
|
|
|
for i := range events {
|
|
|
|
IDs[i] = events[i].EventID()
|
|
|
|
}
|
|
|
|
|
|
|
|
return IDs
|
|
|
|
}
|