mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
6c5a573772
* Chore: Move ReqContext to contexthandler service * Rename package to contextmodel * Generate ngalert files * Remove unused imports
39 lines
1.3 KiB
Go
39 lines
1.3 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
)
|
|
|
|
// ConfigurationApiHandler always forwards requests to grafana backend
|
|
type ConfigurationApiHandler struct {
|
|
grafana *ConfigSrv
|
|
}
|
|
|
|
func NewConfiguration(grafana *ConfigSrv) *ConfigurationApiHandler {
|
|
return &ConfigurationApiHandler{
|
|
grafana: grafana,
|
|
}
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) handleRouteGetAlertmanagers(c *contextmodel.ReqContext) response.Response {
|
|
return f.grafana.RouteGetAlertmanagers(c)
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) handleRouteGetNGalertConfig(c *contextmodel.ReqContext) response.Response {
|
|
return f.grafana.RouteGetNGalertConfig(c)
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) handleRoutePostNGalertConfig(c *contextmodel.ReqContext, body apimodels.PostableNGalertConfig) response.Response {
|
|
return f.grafana.RoutePostNGalertConfig(c, body)
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) handleRouteDeleteNGalertConfig(c *contextmodel.ReqContext) response.Response {
|
|
return f.grafana.RouteDeleteNGalertConfig(c)
|
|
}
|
|
|
|
func (f *ConfigurationApiHandler) handleRouteGetStatus(c *contextmodel.ReqContext) response.Response {
|
|
return f.grafana.RouteGetAlertingStatus(c)
|
|
}
|