mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-06 16:09:01 +01:00
78 lines
3 KiB
Go
78 lines
3 KiB
Go
|
package query
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/matrix-org/dendrite/common"
|
||
|
"github.com/matrix-org/dendrite/federationsender/api"
|
||
|
"github.com/matrix-org/dendrite/federationsender/storage"
|
||
|
rsAPI "github.com/matrix-org/dendrite/roomserver/api"
|
||
|
"github.com/matrix-org/util"
|
||
|
)
|
||
|
|
||
|
// FederationSenderInternalAPI is an implementation of api.FederationSenderInternalAPI
|
||
|
type FederationSenderInternalAPI struct {
|
||
|
api.FederationSenderInternalAPI
|
||
|
DB storage.Database
|
||
|
RoomserverInputAPI rsAPI.RoomserverInputAPI
|
||
|
}
|
||
|
|
||
|
// SetupHTTP adds the FederationSenderInternalAPI handlers to the http.ServeMux.
|
||
|
func (f *FederationSenderInternalAPI) SetupHTTP(servMux *http.ServeMux) {
|
||
|
servMux.Handle(
|
||
|
api.FederationSenderQueryJoinedHostsInRoomPath,
|
||
|
common.MakeInternalAPI("QueryJoinedHostsInRoom", func(req *http.Request) util.JSONResponse {
|
||
|
var request api.QueryJoinedHostsInRoomRequest
|
||
|
var response api.QueryJoinedHostsInRoomResponse
|
||
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
if err := f.QueryJoinedHostsInRoom(req.Context(), &request, &response); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
||
|
}),
|
||
|
)
|
||
|
servMux.Handle(
|
||
|
api.FederationSenderQueryJoinedHostServerNamesInRoomPath,
|
||
|
common.MakeInternalAPI("QueryJoinedHostServerNamesInRoom", func(req *http.Request) util.JSONResponse {
|
||
|
var request api.QueryJoinedHostServerNamesInRoomRequest
|
||
|
var response api.QueryJoinedHostServerNamesInRoomResponse
|
||
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
if err := f.QueryJoinedHostServerNamesInRoom(req.Context(), &request, &response); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
||
|
}),
|
||
|
)
|
||
|
servMux.Handle(api.FederationSenderPerformJoinRequestPath,
|
||
|
common.MakeInternalAPI("PerformJoinRequest", func(req *http.Request) util.JSONResponse {
|
||
|
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())
|
||
|
}
|
||
|
if err := f.PerformJoinRequest(req.Context(), &request, &response); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
||
|
}),
|
||
|
)
|
||
|
servMux.Handle(api.FederationSenderPerformLeaveRequestPath,
|
||
|
common.MakeInternalAPI("PerformLeaveRequest", func(req *http.Request) util.JSONResponse {
|
||
|
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 := f.PerformLeaveRequest(req.Context(), &request, &response); err != nil {
|
||
|
return util.ErrorResponse(err)
|
||
|
}
|
||
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
||
|
}),
|
||
|
)
|
||
|
}
|