mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
df25e9197e
* Add auth checks and test * Check user is authorized to view rule and add tests * Change naming * Update Swagger params * Update auth test and swagger gen * Update swagger gen * Change response to GettableExtendedRuleNode * openapi3-gen * Update tests with refactors models pkg
127 lines
4.9 KiB
Go
127 lines
4.9 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
)
|
|
|
|
// RulerApiHandler will validate and proxy requests to the correct backend type depending on the datasource.
|
|
type RulerApiHandler struct {
|
|
LotexRuler *LotexRuler
|
|
GrafanaRuler *RulerSrv
|
|
DatasourceCache datasources.CacheService
|
|
}
|
|
|
|
func NewForkingRuler(datasourceCache datasources.CacheService, lotex *LotexRuler, grafana *RulerSrv) *RulerApiHandler {
|
|
return &RulerApiHandler{
|
|
LotexRuler: lotex,
|
|
GrafanaRuler: grafana,
|
|
DatasourceCache: datasourceCache,
|
|
}
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteDeleteNamespaceRulesConfig(ctx *contextmodel.ReqContext, dsUID, namespace string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
return t.RouteDeleteNamespaceRulesConfig(ctx, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteDeleteRuleGroupConfig(ctx *contextmodel.ReqContext, dsUID, namespace, group string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
return t.RouteDeleteRuleGroupConfig(ctx, namespace, group)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetNamespaceRulesConfig(ctx *contextmodel.ReqContext, dsUID, namespace string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
return t.RouteGetNamespaceRulesConfig(ctx, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetRulegGroupConfig(ctx *contextmodel.ReqContext, dsUID, namespace, group string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
return t.RouteGetRulegGroupConfig(ctx, namespace, group)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetRulesConfig(ctx *contextmodel.ReqContext, dsUID string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
return t.RouteGetRulesConfig(ctx)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRoutePostNameRulesConfig(ctx *contextmodel.ReqContext, conf apimodels.PostableRuleGroupConfig, dsUID, namespace string) response.Response {
|
|
t, err := f.getService(ctx)
|
|
if err != nil {
|
|
return errorToResponse(err)
|
|
}
|
|
if conf.Type() != apimodels.LoTexRulerBackend {
|
|
return errorToResponse(backendTypeDoesNotMatchPayloadTypeError(apimodels.LoTexRulerBackend, conf.Type().String()))
|
|
}
|
|
return t.RoutePostNameRulesConfig(ctx, conf, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteDeleteNamespaceGrafanaRulesConfig(ctx *contextmodel.ReqContext, namespace string) response.Response {
|
|
return f.GrafanaRuler.RouteDeleteAlertRules(ctx, namespace, "")
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteDeleteGrafanaRuleGroupConfig(ctx *contextmodel.ReqContext, namespace, groupName string) response.Response {
|
|
return f.GrafanaRuler.RouteDeleteAlertRules(ctx, namespace, groupName)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetNamespaceGrafanaRulesConfig(ctx *contextmodel.ReqContext, namespace string) response.Response {
|
|
return f.GrafanaRuler.RouteGetNamespaceRulesConfig(ctx, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetGrafanaRuleGroupConfig(ctx *contextmodel.ReqContext, namespace, group string) response.Response {
|
|
return f.GrafanaRuler.RouteGetRulesGroupConfig(ctx, namespace, group)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetGrafanaRulesConfig(ctx *contextmodel.ReqContext) response.Response {
|
|
return f.GrafanaRuler.RouteGetRulesConfig(ctx)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetRuleByUID(ctx *contextmodel.ReqContext, ruleUID string) response.Response {
|
|
return f.GrafanaRuler.RouteGetRuleByUID(ctx, ruleUID)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRoutePostNameGrafanaRulesConfig(ctx *contextmodel.ReqContext, conf apimodels.PostableRuleGroupConfig, namespace string) response.Response {
|
|
payloadType := conf.Type()
|
|
if payloadType != apimodels.GrafanaBackend {
|
|
return errorToResponse(backendTypeDoesNotMatchPayloadTypeError(apimodels.GrafanaBackend, conf.Type().String()))
|
|
}
|
|
return f.GrafanaRuler.RoutePostNameRulesConfig(ctx, conf, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRoutePostRulesGroupForExport(ctx *contextmodel.ReqContext, conf apimodels.PostableRuleGroupConfig, namespace string) response.Response {
|
|
payloadType := conf.Type()
|
|
if payloadType != apimodels.GrafanaBackend {
|
|
return errorToResponse(backendTypeDoesNotMatchPayloadTypeError(apimodels.GrafanaBackend, conf.Type().String()))
|
|
}
|
|
return f.GrafanaRuler.ExportFromPayload(ctx, conf, namespace)
|
|
}
|
|
|
|
func (f *RulerApiHandler) handleRouteGetRulesForExport(ctx *contextmodel.ReqContext) response.Response {
|
|
return f.GrafanaRuler.ExportRules(ctx)
|
|
}
|
|
|
|
func (f *RulerApiHandler) getService(ctx *contextmodel.ReqContext) (*LotexRuler, error) {
|
|
_, err := getDatasourceByUID(ctx, f.DatasourceCache, apimodels.LoTexRulerBackend)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return f.LotexRuler, nil
|
|
}
|