2020-06-04 13:27:10 +00:00
|
|
|
package inthttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-06-04 13:27:10 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AddRoutes adds the FederationSenderInternalAPI handlers to the http.ServeMux.
|
|
|
|
func AddRoutes(intAPI api.FederationSenderInternalAPI, internalAPIMux *mux.Router) {
|
|
|
|
internalAPIMux.Handle(
|
|
|
|
FederationSenderQueryJoinedHostServerNamesInRoomPath,
|
2020-06-12 13:55:57 +00:00
|
|
|
httputil.MakeInternalAPI("QueryJoinedHostServerNamesInRoom", func(req *http.Request) util.JSONResponse {
|
2020-06-04 13:27:10 +00:00
|
|
|
var request api.QueryJoinedHostServerNamesInRoomRequest
|
|
|
|
var response api.QueryJoinedHostServerNamesInRoomResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
if err := intAPI.QueryJoinedHostServerNamesInRoom(req.Context(), &request, &response); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
internalAPIMux.Handle(FederationSenderPerformJoinRequestPath,
|
2020-06-12 13:55:57 +00:00
|
|
|
httputil.MakeInternalAPI("PerformJoinRequest", func(req *http.Request) util.JSONResponse {
|
2020-06-04 13:27:10 +00:00
|
|
|
var request api.PerformJoinRequest
|
|
|
|
var response api.PerformJoinResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
2020-06-25 14:04:48 +00:00
|
|
|
intAPI.PerformJoin(req.Context(), &request, &response)
|
2020-06-04 13:27:10 +00:00
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
internalAPIMux.Handle(FederationSenderPerformLeaveRequestPath,
|
2020-06-12 13:55:57 +00:00
|
|
|
httputil.MakeInternalAPI("PerformLeaveRequest", func(req *http.Request) util.JSONResponse {
|
2020-06-04 13:27:10 +00:00
|
|
|
var request api.PerformLeaveRequest
|
|
|
|
var response api.PerformLeaveResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
if err := intAPI.PerformLeave(req.Context(), &request, &response); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
internalAPIMux.Handle(FederationSenderPerformDirectoryLookupRequestPath,
|
2020-06-12 13:55:57 +00:00
|
|
|
httputil.MakeInternalAPI("PerformDirectoryLookupRequest", func(req *http.Request) util.JSONResponse {
|
2020-06-04 13:27:10 +00:00
|
|
|
var request api.PerformDirectoryLookupRequest
|
|
|
|
var response api.PerformDirectoryLookupResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
if err := intAPI.PerformDirectoryLookup(req.Context(), &request, &response); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
internalAPIMux.Handle(FederationSenderPerformServersAlivePath,
|
2020-06-12 13:55:57 +00:00
|
|
|
httputil.MakeInternalAPI("PerformServersAliveRequest", func(req *http.Request) util.JSONResponse {
|
2020-06-04 13:27:10 +00:00
|
|
|
var request api.PerformServersAliveRequest
|
|
|
|
var response api.PerformServersAliveResponse
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
if err := intAPI.PerformServersAlive(req.Context(), &request, &response); err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|