2020-06-04 15:27:10 +02:00
|
|
|
package inthttp
|
|
|
|
|
|
|
|
import (
|
2022-08-11 16:29:33 +02:00
|
|
|
"context"
|
2020-06-04 15:27:10 +02:00
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/api"
|
2020-06-12 15:55:57 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2022-08-11 16:29:33 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-06-04 15:27:10 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
// AddRoutes adds the FederationInternalAPI handlers to the http.ServeMux.
|
2020-08-17 12:40:49 +02:00
|
|
|
// nolint:gocyclo
|
2021-11-24 11:45:23 +01:00
|
|
|
func AddRoutes(intAPI api.FederationInternalAPI, internalAPIMux *mux.Router) {
|
2020-06-04 15:27:10 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIQueryJoinedHostServerNamesInRoomPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIQueryJoinedHostServerNamesInRoom", intAPI.QueryJoinedHostServerNamesInRoom),
|
2020-06-04 15:27:10 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-13 13:16:37 +02:00
|
|
|
internalAPIMux.Handle(
|
2022-08-11 16:29:33 +02:00
|
|
|
FederationAPIPerformInviteRequestPath,
|
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIPerformInvite", intAPI.PerformInvite),
|
2020-06-04 15:27:10 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-13 13:16:37 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIPerformLeaveRequestPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIPerformLeave", intAPI.PerformLeave),
|
2020-08-17 12:40:49 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-13 13:16:37 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIPerformDirectoryLookupRequestPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIPerformDirectoryLookupRequest", intAPI.PerformDirectoryLookup),
|
2020-06-04 15:27:10 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-13 13:16:37 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIPerformBroadcastEDUPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIPerformBroadcastEDU", intAPI.PerformBroadcastEDU),
|
2020-07-16 14:52:08 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
|
|
|
internalAPIMux.Handle(
|
|
|
|
FederationAPIPerformJoinRequestPath,
|
|
|
|
httputil.MakeInternalRPCAPI(
|
|
|
|
"FederationAPIPerformJoinRequest",
|
|
|
|
func(ctx context.Context, req *api.PerformJoinRequest, res *api.PerformJoinResponse) error {
|
|
|
|
intAPI.PerformJoin(ctx, req, res)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2020-08-20 18:03:07 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIGetUserDevicesPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIGetUserDevices",
|
|
|
|
func(ctx context.Context, req *getUserDevices) (*gomatrixserverlib.RespUserDevices, error) {
|
|
|
|
res, err := intAPI.GetUserDevices(ctx, req.S, req.UserID)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-08-20 18:03:07 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-20 18:03:07 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIClaimKeysPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIClaimKeys",
|
|
|
|
func(ctx context.Context, req *claimKeys) (*gomatrixserverlib.RespClaimKeys, error) {
|
|
|
|
res, err := intAPI.ClaimKeys(ctx, req.S, req.OneTimeKeys)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-08-20 18:03:07 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-08-20 18:03:07 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIQueryKeysPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIQueryKeys",
|
|
|
|
func(ctx context.Context, req *queryKeys) (*gomatrixserverlib.RespQueryKeys, error) {
|
|
|
|
res, err := intAPI.QueryKeys(ctx, req.S, req.Keys)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-08-20 18:03:07 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-02 16:26:30 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIBackfillPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIBackfill",
|
|
|
|
func(ctx context.Context, req *backfill) (*gomatrixserverlib.Transaction, error) {
|
|
|
|
res, err := intAPI.Backfill(ctx, req.S, req.RoomID, req.Limit, req.EventIDs)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-09-02 16:26:30 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-02 16:26:30 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPILookupStatePath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPILookupState",
|
|
|
|
func(ctx context.Context, req *lookupState) (*gomatrixserverlib.RespState, error) {
|
|
|
|
res, err := intAPI.LookupState(ctx, req.S, req.RoomID, req.EventID, req.RoomVersion)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-09-02 16:26:30 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-02 16:26:30 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPILookupStateIDsPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPILookupStateIDs",
|
|
|
|
func(ctx context.Context, req *lookupStateIDs) (*gomatrixserverlib.RespStateIDs, error) {
|
|
|
|
res, err := intAPI.LookupStateIDs(ctx, req.S, req.RoomID, req.EventID)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-09-02 16:26:30 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2022-01-27 15:29:14 +01:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
FederationAPILookupMissingEventsPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPILookupMissingEvents",
|
|
|
|
func(ctx context.Context, req *lookupMissingEvents) (*gomatrixserverlib.RespMissingEvents, error) {
|
|
|
|
res, err := intAPI.LookupMissingEvents(ctx, req.S, req.RoomID, req.Missing, req.RoomVersion)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2022-01-27 15:29:14 +01:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-02 16:26:30 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIGetEventPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIGetEvent",
|
|
|
|
func(ctx context.Context, req *getEvent) (*gomatrixserverlib.Transaction, error) {
|
|
|
|
res, err := intAPI.GetEvent(ctx, req.S, req.EventID)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2022-01-27 15:29:14 +01:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2022-01-27 15:29:14 +01:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
FederationAPIGetEventAuthPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIGetEventAuth",
|
|
|
|
func(ctx context.Context, req *getEventAuth) (*gomatrixserverlib.RespEventAuth, error) {
|
|
|
|
res, err := intAPI.GetEventAuth(ctx, req.S, req.RoomVersion, req.RoomID, req.EventID)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-09-02 16:26:30 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-22 15:40:54 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIQueryServerKeysPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalRPCAPI("FederationAPIQueryServerKeys", intAPI.QueryServerKeys),
|
2020-09-22 15:40:54 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-09-22 15:40:54 +02:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPILookupServerKeysPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPILookupServerKeys",
|
|
|
|
func(ctx context.Context, req *lookupServerKeys) (*[]gomatrixserverlib.ServerKeys, error) {
|
|
|
|
res, err := intAPI.LookupServerKeys(ctx, req.S, req.KeyRequests)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-09-22 15:40:54 +02:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2020-12-04 15:11:01 +01:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPIEventRelationshipsPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIMSC2836EventRelationships",
|
|
|
|
func(ctx context.Context, req *eventRelationships) (*gomatrixserverlib.MSC2836EventRelationshipsResponse, error) {
|
|
|
|
res, err := intAPI.MSC2836EventRelationships(ctx, req.S, req.Req, req.RoomVer)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2020-12-04 15:11:01 +01:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
2021-01-19 18:14:25 +01:00
|
|
|
internalAPIMux.Handle(
|
2021-11-24 11:45:23 +01:00
|
|
|
FederationAPISpacesSummaryPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalProxyAPI(
|
|
|
|
"FederationAPIMSC2946SpacesSummary",
|
|
|
|
func(ctx context.Context, req *spacesReq) (*gomatrixserverlib.MSC2946SpacesResponse, error) {
|
|
|
|
res, err := intAPI.MSC2946Spaces(ctx, req.S, req.RoomID, req.SuggestedOnly)
|
|
|
|
return &res, federationClientError(err)
|
|
|
|
},
|
|
|
|
),
|
2021-01-19 18:14:25 +01:00
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
|
|
|
// TODO: Look at this shape
|
2021-11-24 11:45:23 +01:00
|
|
|
internalAPIMux.Handle(FederationAPIQueryPublicKeyPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalAPI("FederationAPIQueryPublicKeys", func(req *http.Request) util.JSONResponse {
|
2021-11-24 11:45:23 +01:00
|
|
|
request := api.QueryPublicKeysRequest{}
|
|
|
|
response := api.QueryPublicKeysResponse{}
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
keys, err := intAPI.FetchKeys(req.Context(), request.Requests)
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
response.Results = keys
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
2022-08-11 16:29:33 +02:00
|
|
|
|
|
|
|
// TODO: Look at this shape
|
2021-11-24 11:45:23 +01:00
|
|
|
internalAPIMux.Handle(FederationAPIInputPublicKeyPath,
|
2022-08-11 16:29:33 +02:00
|
|
|
httputil.MakeInternalAPI("FederationAPIInputPublicKeys", func(req *http.Request) util.JSONResponse {
|
2021-11-24 11:45:23 +01:00
|
|
|
request := api.InputPublicKeysRequest{}
|
|
|
|
response := api.InputPublicKeysResponse{}
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
if err := intAPI.StoreKeys(req.Context(), request.Keys); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
2020-06-04 15:27:10 +02:00
|
|
|
}
|
2022-08-11 16:29:33 +02:00
|
|
|
|
|
|
|
func federationClientError(err error) error {
|
|
|
|
switch ferr := err.(type) {
|
|
|
|
case nil:
|
|
|
|
return nil
|
|
|
|
case api.FederationClientError:
|
|
|
|
return &ferr
|
|
|
|
case *api.FederationClientError:
|
|
|
|
return ferr
|
|
|
|
default:
|
|
|
|
return &api.FederationClientError{
|
|
|
|
Err: err.Error(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|