mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
8a62020211
* declare new endpoint /api/v1/ngalert * add authorization for new path * add request handler for the new path
104 lines
3.3 KiB
Go
104 lines
3.3 KiB
Go
/*Package api contains base API implementation of unified alerting
|
|
*
|
|
*Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*
|
|
*Do not manually edit these files, please find ngalert/api/swagger-codegen/ for commands on how to generate them.
|
|
*/
|
|
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/api/routing"
|
|
"github.com/grafana/grafana/pkg/middleware"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
"github.com/grafana/grafana/pkg/services/ngalert/metrics"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
type ConfigurationApi interface {
|
|
RouteDeleteNGalertConfig(*models.ReqContext) response.Response
|
|
RouteGetAlertmanagers(*models.ReqContext) response.Response
|
|
RouteGetNGalertConfig(*models.ReqContext) response.Response
|
|
RouteGetStatus(*models.ReqContext) response.Response
|
|
RoutePostNGalertConfig(*models.ReqContext) response.Response
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) RouteDeleteNGalertConfig(ctx *models.ReqContext) response.Response {
|
|
return f.handleRouteDeleteNGalertConfig(ctx)
|
|
}
|
|
func (f *ConfigurationApiHandler) RouteGetAlertmanagers(ctx *models.ReqContext) response.Response {
|
|
return f.handleRouteGetAlertmanagers(ctx)
|
|
}
|
|
func (f *ConfigurationApiHandler) RouteGetNGalertConfig(ctx *models.ReqContext) response.Response {
|
|
return f.handleRouteGetNGalertConfig(ctx)
|
|
}
|
|
func (f *ConfigurationApiHandler) RouteGetStatus(ctx *models.ReqContext) response.Response {
|
|
return f.handleRouteGetStatus(ctx)
|
|
}
|
|
func (f *ConfigurationApiHandler) RoutePostNGalertConfig(ctx *models.ReqContext) response.Response {
|
|
// Parse Request Body
|
|
conf := apimodels.PostableNGalertConfig{}
|
|
if err := web.Bind(ctx.Req, &conf); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return f.handleRoutePostNGalertConfig(ctx, conf)
|
|
}
|
|
|
|
func (api *API) RegisterConfigurationApiEndpoints(srv ConfigurationApi, m *metrics.API) {
|
|
api.RouteRegister.Group("", func(group routing.RouteRegister) {
|
|
group.Delete(
|
|
toMacaronPath("/api/v1/ngalert/admin_config"),
|
|
api.authorize(http.MethodDelete, "/api/v1/ngalert/admin_config"),
|
|
metrics.Instrument(
|
|
http.MethodDelete,
|
|
"/api/v1/ngalert/admin_config",
|
|
srv.RouteDeleteNGalertConfig,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/v1/ngalert/alertmanagers"),
|
|
api.authorize(http.MethodGet, "/api/v1/ngalert/alertmanagers"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/v1/ngalert/alertmanagers",
|
|
srv.RouteGetAlertmanagers,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/v1/ngalert/admin_config"),
|
|
api.authorize(http.MethodGet, "/api/v1/ngalert/admin_config"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/v1/ngalert/admin_config",
|
|
srv.RouteGetNGalertConfig,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/v1/ngalert"),
|
|
api.authorize(http.MethodGet, "/api/v1/ngalert"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/v1/ngalert",
|
|
srv.RouteGetStatus,
|
|
m,
|
|
),
|
|
)
|
|
group.Post(
|
|
toMacaronPath("/api/v1/ngalert/admin_config"),
|
|
api.authorize(http.MethodPost, "/api/v1/ngalert/admin_config"),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/ngalert/admin_config",
|
|
srv.RoutePostNGalertConfig,
|
|
m,
|
|
),
|
|
)
|
|
}, middleware.ReqSignedIn)
|
|
}
|