mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-29 09:43:10 -06:00
99 lines
3.7 KiB
Go
99 lines
3.7 KiB
Go
package inthttp
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
"github.com/matrix-org/dendrite/pushserver/api"
|
|
"github.com/matrix-org/util"
|
|
)
|
|
|
|
// AddRoutes adds the PushserverInternalAPI handlers to the http.ServeMux.
|
|
// nolint: gocyclo
|
|
func AddRoutes(r api.PushserverInternalAPI, internalAPIMux *mux.Router) {
|
|
internalAPIMux.Handle(QueryNotificationsPath,
|
|
httputil.MakeInternalAPI("queryNotifications", func(req *http.Request) util.JSONResponse {
|
|
var request api.QueryNotificationsRequest
|
|
var response api.QueryNotificationsResponse
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.QueryNotifications(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
|
|
internalAPIMux.Handle(PerformPusherSetPath,
|
|
httputil.MakeInternalAPI("performPusherSet", func(req *http.Request) util.JSONResponse {
|
|
request := api.PerformPusherSetRequest{}
|
|
response := struct{}{}
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.PerformPusherSet(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
internalAPIMux.Handle(PerformPusherDeletionPath,
|
|
httputil.MakeInternalAPI("performPusherDeletion", func(req *http.Request) util.JSONResponse {
|
|
request := api.PerformPusherDeletionRequest{}
|
|
response := struct{}{}
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.PerformPusherDeletion(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
|
|
internalAPIMux.Handle(QueryPushRulesPath,
|
|
httputil.MakeInternalAPI("queryPushRules", func(req *http.Request) util.JSONResponse {
|
|
request := api.QueryPushRulesRequest{}
|
|
response := api.QueryPushRulesResponse{}
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.QueryPushRules(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
|
|
internalAPIMux.Handle(PerformPusherDeletionPath,
|
|
httputil.MakeInternalAPI("performPusherDeletion", func(req *http.Request) util.JSONResponse {
|
|
request := api.PerformPushRulesPutRequest{}
|
|
response := struct{}{}
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.PerformPushRulesPut(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
|
|
internalAPIMux.Handle(QueryPushRulesPath,
|
|
httputil.MakeInternalAPI("queryPushRules", func(req *http.Request) util.JSONResponse {
|
|
request := api.QueryPushRulesRequest{}
|
|
response := api.QueryPushRulesResponse{}
|
|
if err := json.NewDecoder(req.Body).Decode(&request); err != nil {
|
|
return util.MessageResponse(http.StatusBadRequest, err.Error())
|
|
}
|
|
if err := r.QueryPushRules(req.Context(), &request, &response); err != nil {
|
|
return util.ErrorResponse(err)
|
|
}
|
|
return util.JSONResponse{Code: http.StatusOK, JSON: &response}
|
|
}),
|
|
)
|
|
}
|