2016-04-26 10:36:50 -05:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2016-07-21 03:29:11 -05:00
|
|
|
"fmt"
|
2018-06-01 07:36:40 -05:00
|
|
|
"strconv"
|
2016-07-21 03:29:11 -05:00
|
|
|
|
2016-04-27 06:02:28 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
2016-04-26 10:36:50 -05:00
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
2019-08-12 13:03:48 -05:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2016-07-20 09:13:36 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/alerting"
|
2018-01-30 07:41:25 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/guardian"
|
2018-06-01 07:36:40 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/search"
|
2016-04-26 10:36:50 -05:00
|
|
|
)
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func ValidateOrgAlert(c *models.ReqContext) {
|
2016-05-02 09:07:19 -05:00
|
|
|
id := c.ParamsInt64(":alertId")
|
2019-08-12 13:03:48 -05:00
|
|
|
query := models.GetAlertByIdQuery{Id: id}
|
2016-04-26 10:36:50 -05:00
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
|
|
c.JsonApiErr(404, "Alert not found", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.OrgId != query.Result.OrgId {
|
|
|
|
c.JsonApiErr(403, "You are not allowed to edit/view alert", nil)
|
|
|
|
return
|
2017-10-23 02:56:52 -05:00
|
|
|
}
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlertStatesForDashboard(c *models.ReqContext) Response {
|
2018-03-22 06:37:35 -05:00
|
|
|
dashboardID := c.QueryInt64("dashboardId")
|
2016-09-30 10:37:47 -05:00
|
|
|
|
2018-03-22 06:37:35 -05:00
|
|
|
if dashboardID == 0 {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(400, "Missing query parameter dashboardId", nil)
|
2016-09-30 10:37:47 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
query := models.GetAlertStatesForDashboardQuery{
|
2016-09-30 10:37:47 -05:00
|
|
|
OrgId: c.OrgId,
|
|
|
|
DashboardId: c.QueryInt64("dashboardId"),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to fetch alert states", err)
|
2016-09-30 10:37:47 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, query.Result)
|
2016-09-30 10:37:47 -05:00
|
|
|
}
|
|
|
|
|
2016-09-14 01:36:44 -05:00
|
|
|
// GET /api/alerts
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlerts(c *models.ReqContext) Response {
|
2018-06-01 07:36:40 -05:00
|
|
|
dashboardQuery := c.Query("dashboardQuery")
|
|
|
|
dashboardTags := c.QueryStrings("dashboardTag")
|
|
|
|
stringDashboardIDs := c.QueryStrings("dashboardId")
|
|
|
|
stringFolderIDs := c.QueryStrings("folderId")
|
|
|
|
|
|
|
|
dashboardIDs := make([]int64, 0)
|
|
|
|
for _, id := range stringDashboardIDs {
|
|
|
|
dashboardID, err := strconv.ParseInt(id, 10, 64)
|
|
|
|
if err == nil {
|
|
|
|
dashboardIDs = append(dashboardIDs, dashboardID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if dashboardQuery != "" || len(dashboardTags) > 0 || len(stringFolderIDs) > 0 {
|
|
|
|
folderIDs := make([]int64, 0)
|
|
|
|
for _, id := range stringFolderIDs {
|
|
|
|
folderID, err := strconv.ParseInt(id, 10, 64)
|
|
|
|
if err == nil {
|
|
|
|
folderIDs = append(folderIDs, folderID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
searchQuery := search.Query{
|
|
|
|
Title: dashboardQuery,
|
|
|
|
Tags: dashboardTags,
|
|
|
|
SignedInUser: c.SignedInUser,
|
|
|
|
Limit: 1000,
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
DashboardIds: dashboardIDs,
|
|
|
|
Type: string(search.DashHitDB),
|
|
|
|
FolderIds: folderIDs,
|
2019-08-12 13:03:48 -05:00
|
|
|
Permission: models.PERMISSION_VIEW,
|
2018-06-01 07:36:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
err := bus.Dispatch(&searchQuery)
|
|
|
|
if err != nil {
|
|
|
|
return Error(500, "List alerts failed", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, d := range searchQuery.Result {
|
|
|
|
if d.Type == search.DashHitDB && d.Id > 0 {
|
|
|
|
dashboardIDs = append(dashboardIDs, d.Id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we didn't find any dashboards, return empty result
|
|
|
|
if len(dashboardIDs) == 0 {
|
2019-08-12 13:03:48 -05:00
|
|
|
return JSON(200, []*models.AlertListItemDTO{})
|
2018-06-01 07:36:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
query := models.GetAlertsQuery{
|
2018-06-01 07:36:40 -05:00
|
|
|
OrgId: c.OrgId,
|
|
|
|
DashboardIDs: dashboardIDs,
|
|
|
|
PanelId: c.QueryInt64("panelId"),
|
|
|
|
Limit: c.QueryInt64("limit"),
|
|
|
|
User: c.SignedInUser,
|
|
|
|
Query: c.Query("query"),
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
|
|
|
|
2016-09-14 07:12:19 -05:00
|
|
|
states := c.QueryStrings("state")
|
|
|
|
if len(states) > 0 {
|
|
|
|
query.State = states
|
|
|
|
}
|
|
|
|
|
2016-04-26 10:36:50 -05:00
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "List alerts failed", err)
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
|
|
|
|
2018-02-16 06:56:04 -06:00
|
|
|
for _, alert := range query.Result {
|
2019-08-12 13:03:48 -05:00
|
|
|
alert.Url = models.GetDashboardUrl(alert.DashboardUid, alert.DashboardSlug)
|
2018-01-31 03:47:31 -06:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, query.Result)
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
|
|
|
|
2016-07-20 09:13:36 -05:00
|
|
|
// POST /api/alerts/test
|
2019-08-12 13:03:48 -05:00
|
|
|
func AlertTest(c *models.ReqContext, dto dtos.AlertTestCommand) Response {
|
2016-11-23 07:55:10 -06:00
|
|
|
if _, idErr := dto.Dashboard.Get("id").Int64(); idErr != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(400, "The dashboard needs to be saved at least once before you can test an alert rule", nil)
|
2016-11-23 07:55:10 -06:00
|
|
|
}
|
|
|
|
|
2016-07-21 03:29:11 -05:00
|
|
|
backendCmd := alerting.AlertTestCommand{
|
2019-06-03 03:25:58 -05:00
|
|
|
OrgID: c.OrgId,
|
2016-07-20 09:13:36 -05:00
|
|
|
Dashboard: dto.Dashboard,
|
2019-06-03 03:25:58 -05:00
|
|
|
PanelID: dto.PanelId,
|
2018-11-05 07:25:19 -06:00
|
|
|
User: c.SignedInUser,
|
2016-07-20 09:13:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&backendCmd); err != nil {
|
2016-07-27 09:29:28 -05:00
|
|
|
if validationErr, ok := err.(alerting.ValidationError); ok {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(422, validationErr.Error(), nil)
|
2016-07-21 06:09:12 -05:00
|
|
|
}
|
2019-08-12 13:03:48 -05:00
|
|
|
if err == models.ErrDataSourceAccessDenied {
|
2018-11-05 07:25:19 -06:00
|
|
|
return Error(403, "Access denied to datasource", err)
|
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to test rule", err)
|
2016-07-20 09:13:36 -05:00
|
|
|
}
|
|
|
|
|
2016-07-21 03:29:11 -05:00
|
|
|
res := backendCmd.Result
|
|
|
|
dtoRes := &dtos.AlertTestResult{
|
2016-11-17 08:48:15 -06:00
|
|
|
Firing: res.Firing,
|
|
|
|
ConditionEvals: res.ConditionEvals,
|
2017-01-13 03:24:40 -06:00
|
|
|
State: res.Rule.State,
|
2016-07-21 03:29:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if res.Error != nil {
|
|
|
|
dtoRes.Error = res.Error.Error()
|
|
|
|
}
|
|
|
|
|
2016-07-21 06:09:12 -05:00
|
|
|
for _, log := range res.Logs {
|
|
|
|
dtoRes.Logs = append(dtoRes.Logs, &dtos.AlertTestResultLog{Message: log.Message, Data: log.Data})
|
|
|
|
}
|
2016-08-18 04:22:24 -05:00
|
|
|
for _, match := range res.EvalMatches {
|
|
|
|
dtoRes.EvalMatches = append(dtoRes.EvalMatches, &dtos.EvalMatch{Metric: match.Metric, Value: match.Value})
|
|
|
|
}
|
2016-07-21 06:09:12 -05:00
|
|
|
|
2016-07-26 05:29:52 -05:00
|
|
|
dtoRes.TimeMs = fmt.Sprintf("%1.3fms", res.GetDurationMs())
|
2016-07-21 03:29:11 -05:00
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, dtoRes)
|
2016-07-20 09:13:36 -05:00
|
|
|
}
|
|
|
|
|
2016-04-28 01:23:50 -05:00
|
|
|
// GET /api/alerts/:id
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlert(c *models.ReqContext) Response {
|
2016-05-02 11:00:10 -05:00
|
|
|
id := c.ParamsInt64(":alertId")
|
2019-08-12 13:03:48 -05:00
|
|
|
query := models.GetAlertByIdQuery{Id: id}
|
2016-04-26 10:36:50 -05:00
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "List alerts failed", err)
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, &query.Result)
|
2016-04-26 10:36:50 -05:00
|
|
|
}
|
2016-04-28 01:23:50 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlertNotifiers(c *models.ReqContext) Response {
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, alerting.GetNotifiers())
|
2017-01-06 05:04:25 -06:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlertNotificationLookup(c *models.ReqContext) Response {
|
|
|
|
alertNotifications, err := getAlertNotificationsInternal(c)
|
|
|
|
if err != nil {
|
|
|
|
return Error(500, "Failed to get alert notifications", err)
|
|
|
|
}
|
2016-06-15 03:48:04 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
result := make([]*dtos.AlertNotificationLookup, 0)
|
|
|
|
|
|
|
|
for _, notification := range alertNotifications {
|
|
|
|
result = append(result, dtos.NewAlertNotificationLookup(notification))
|
|
|
|
}
|
|
|
|
|
|
|
|
return JSON(200, result)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetAlertNotifications(c *models.ReqContext) Response {
|
|
|
|
alertNotifications, err := getAlertNotificationsInternal(c)
|
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to get alert notifications", err)
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
|
|
|
|
2016-11-06 08:40:02 -06:00
|
|
|
result := make([]*dtos.AlertNotification, 0)
|
2016-06-20 04:31:20 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
for _, notification := range alertNotifications {
|
2018-06-04 15:19:27 -05:00
|
|
|
result = append(result, dtos.NewAlertNotification(notification))
|
2016-06-20 04:31:20 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, result)
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func getAlertNotificationsInternal(c *models.ReqContext) ([]*models.AlertNotification, error) {
|
|
|
|
query := &models.GetAllAlertNotificationsQuery{OrgId: c.OrgId}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(query); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return query.Result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetAlertNotificationByID(c *models.ReqContext) Response {
|
|
|
|
query := &models.GetAlertNotificationsQuery{
|
2016-07-22 09:45:17 -05:00
|
|
|
OrgId: c.OrgId,
|
2016-06-16 07:29:20 -05:00
|
|
|
Id: c.ParamsInt64("notificationId"),
|
|
|
|
}
|
|
|
|
|
2019-03-26 06:37:02 -05:00
|
|
|
if query.Id == 0 {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(query); err != nil {
|
|
|
|
return Error(500, "Failed to get alert notifications", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if query.Result == nil {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
return JSON(200, dtos.NewAlertNotification(query.Result))
|
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func GetAlertNotificationByUID(c *models.ReqContext) Response {
|
|
|
|
query := &models.GetAlertNotificationsWithUidQuery{
|
2019-03-26 06:37:02 -05:00
|
|
|
OrgId: c.OrgId,
|
|
|
|
Uid: c.Params("uid"),
|
|
|
|
}
|
|
|
|
|
|
|
|
if query.Uid == "" {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
2016-06-16 07:29:20 -05:00
|
|
|
if err := bus.Dispatch(query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to get alert notifications", err)
|
2016-06-16 07:29:20 -05:00
|
|
|
}
|
|
|
|
|
2019-01-13 13:30:20 -06:00
|
|
|
if query.Result == nil {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
2018-06-04 15:19:27 -05:00
|
|
|
return JSON(200, dtos.NewAlertNotification(query.Result))
|
2016-06-16 07:29:20 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func CreateAlertNotification(c *models.ReqContext, cmd models.CreateAlertNotificationCommand) Response {
|
2016-07-22 09:45:17 -05:00
|
|
|
cmd.OrgId = c.OrgId
|
2016-06-15 03:48:04 -05:00
|
|
|
|
2016-06-16 07:29:20 -05:00
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to create alert notification", err)
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:19:27 -05:00
|
|
|
return JSON(200, dtos.NewAlertNotification(cmd.Result))
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func UpdateAlertNotification(c *models.ReqContext, cmd models.UpdateAlertNotificationCommand) Response {
|
2016-07-22 09:45:17 -05:00
|
|
|
cmd.OrgId = c.OrgId
|
2016-06-15 03:48:04 -05:00
|
|
|
|
2020-07-08 03:17:05 -05:00
|
|
|
err := fillWithSecureSettingsData(&cmd)
|
|
|
|
if err != nil {
|
|
|
|
return Error(500, "Failed to update alert notification", err)
|
|
|
|
}
|
|
|
|
|
2016-06-16 07:29:20 -05:00
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to update alert notification", err)
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
|
|
|
|
2019-04-04 10:52:40 -05:00
|
|
|
if cmd.Result == nil {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
2020-07-08 03:17:05 -05:00
|
|
|
query := models.GetAlertNotificationsQuery{
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
Id: cmd.Id,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
|
|
return Error(500, "Failed to get alert notification", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return JSON(200, dtos.NewAlertNotification(query.Result))
|
2016-06-15 03:48:04 -05:00
|
|
|
}
|
2016-06-16 08:21:44 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func UpdateAlertNotificationByUID(c *models.ReqContext, cmd models.UpdateAlertNotificationWithUidCommand) Response {
|
2019-03-26 06:37:02 -05:00
|
|
|
cmd.OrgId = c.OrgId
|
|
|
|
cmd.Uid = c.Params("uid")
|
|
|
|
|
2020-07-08 03:17:05 -05:00
|
|
|
err := fillWithSecureSettingsDataByUID(&cmd)
|
|
|
|
if err != nil {
|
|
|
|
return Error(500, "Failed to update alert notification", err)
|
|
|
|
}
|
|
|
|
|
2019-03-26 06:37:02 -05:00
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
|
|
|
return Error(500, "Failed to update alert notification", err)
|
|
|
|
}
|
|
|
|
|
2019-04-04 10:52:40 -05:00
|
|
|
if cmd.Result == nil {
|
|
|
|
return Error(404, "Alert notification not found", nil)
|
|
|
|
}
|
|
|
|
|
2020-07-08 03:17:05 -05:00
|
|
|
query := models.GetAlertNotificationsWithUidQuery{
|
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
Uid: cmd.Uid,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
|
|
return Error(500, "Failed to get alert notification", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return JSON(200, dtos.NewAlertNotification(query.Result))
|
|
|
|
}
|
|
|
|
|
|
|
|
func fillWithSecureSettingsData(cmd *models.UpdateAlertNotificationCommand) error {
|
|
|
|
if len(cmd.SecureSettings) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
query := &models.GetAlertNotificationsQuery{
|
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
Id: cmd.Id,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(query); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
secureSettings := query.Result.SecureSettings.Decrypt()
|
|
|
|
for k, v := range secureSettings {
|
|
|
|
if _, ok := cmd.SecureSettings[k]; !ok {
|
|
|
|
cmd.SecureSettings[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func fillWithSecureSettingsDataByUID(cmd *models.UpdateAlertNotificationWithUidCommand) error {
|
|
|
|
if len(cmd.SecureSettings) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
query := &models.GetAlertNotificationsWithUidQuery{
|
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
Uid: cmd.Uid,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(query); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
secureSettings := query.Result.SecureSettings.Decrypt()
|
|
|
|
for k, v := range secureSettings {
|
|
|
|
if _, ok := cmd.SecureSettings[k]; !ok {
|
|
|
|
cmd.SecureSettings[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-03-26 06:37:02 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func DeleteAlertNotification(c *models.ReqContext) Response {
|
|
|
|
cmd := models.DeleteAlertNotificationCommand{
|
2016-06-16 08:21:44 -05:00
|
|
|
OrgId: c.OrgId,
|
|
|
|
Id: c.ParamsInt64("notificationId"),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to delete alert notification", err)
|
2016-06-16 08:21:44 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Success("Notification deleted")
|
2016-06-16 08:21:44 -05:00
|
|
|
}
|
2016-08-30 02:32:56 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
func DeleteAlertNotificationByUID(c *models.ReqContext) Response {
|
|
|
|
cmd := models.DeleteAlertNotificationWithUidCommand{
|
2019-03-26 06:37:02 -05:00
|
|
|
OrgId: c.OrgId,
|
|
|
|
Uid: c.Params("uid"),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
|
|
|
return Error(500, "Failed to delete alert notification", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Success("Notification deleted")
|
|
|
|
}
|
|
|
|
|
2016-09-05 07:43:53 -05:00
|
|
|
//POST /api/alert-notifications/test
|
2019-08-12 13:03:48 -05:00
|
|
|
func NotificationTest(c *models.ReqContext, dto dtos.NotificationTestCommand) Response {
|
2016-09-05 07:43:53 -05:00
|
|
|
cmd := &alerting.NotificationTestCommand{
|
2020-07-08 03:17:05 -05:00
|
|
|
OrgID: c.OrgId,
|
|
|
|
ID: dto.ID,
|
|
|
|
Name: dto.Name,
|
|
|
|
Type: dto.Type,
|
|
|
|
Settings: dto.Settings,
|
|
|
|
SecureSettings: dto.SecureSettings,
|
2016-09-05 07:43:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(cmd); err != nil {
|
2019-08-12 13:03:48 -05:00
|
|
|
if err == models.ErrSmtpNotEnabled {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(412, err.Error(), err)
|
2017-04-25 06:16:37 -05:00
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to send alert notifications", err)
|
2016-09-05 07:43:53 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Success("Test notification sent")
|
2016-09-05 07:43:53 -05:00
|
|
|
}
|
|
|
|
|
2016-10-14 06:06:29 -05:00
|
|
|
//POST /api/alerts/:alertId/pause
|
2019-08-12 13:03:48 -05:00
|
|
|
func PauseAlert(c *models.ReqContext, dto dtos.PauseAlertCommand) Response {
|
2018-03-22 16:13:46 -05:00
|
|
|
alertID := c.ParamsInt64("alertId")
|
2020-01-09 04:18:51 -06:00
|
|
|
result := make(map[string]interface{})
|
|
|
|
result["alertId"] = alertID
|
2018-01-30 07:41:25 -06:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
query := models.GetAlertByIdQuery{Id: alertID}
|
2018-01-30 07:41:25 -06:00
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Get Alert failed", err)
|
2018-01-30 07:41:25 -06:00
|
|
|
}
|
|
|
|
|
2018-02-19 04:12:56 -06:00
|
|
|
guardian := guardian.New(query.Result.DashboardId, c.OrgId, c.SignedInUser)
|
2018-01-30 07:41:25 -06:00
|
|
|
if canEdit, err := guardian.CanEdit(); err != nil || !canEdit {
|
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Error while checking permissions for Alert", err)
|
2018-01-30 07:41:25 -06:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(403, "Access denied to this dashboard and alert", nil)
|
2018-01-30 07:41:25 -06:00
|
|
|
}
|
|
|
|
|
2020-01-09 04:18:51 -06:00
|
|
|
// Alert state validation
|
|
|
|
if query.Result.State != models.AlertStatePaused && !dto.Paused {
|
|
|
|
result["state"] = "un-paused"
|
|
|
|
result["message"] = "Alert is already un-paused"
|
|
|
|
return JSON(200, result)
|
|
|
|
} else if query.Result.State == models.AlertStatePaused && dto.Paused {
|
|
|
|
result["state"] = models.AlertStatePaused
|
|
|
|
result["message"] = "Alert is already paused"
|
|
|
|
return JSON(200, result)
|
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
cmd := models.PauseAlertCommand{
|
2016-12-19 09:07:55 -06:00
|
|
|
OrgId: c.OrgId,
|
2018-03-22 16:13:46 -05:00
|
|
|
AlertIds: []int64{alertID},
|
2016-12-19 09:07:55 -06:00
|
|
|
Paused: dto.Paused,
|
2016-10-10 07:26:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "", err)
|
2016-10-10 07:26:09 -05:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
var response models.AlertStateType = models.AlertStateUnknown
|
2017-12-31 07:16:19 -06:00
|
|
|
pausedState := "un-paused"
|
2016-10-10 07:26:09 -05:00
|
|
|
if cmd.Paused {
|
2019-08-12 13:03:48 -05:00
|
|
|
response = models.AlertStatePaused
|
2016-10-11 02:45:38 -05:00
|
|
|
pausedState = "paused"
|
2016-10-10 07:26:09 -05:00
|
|
|
}
|
|
|
|
|
2020-01-09 04:18:51 -06:00
|
|
|
result["state"] = response
|
|
|
|
result["message"] = "Alert " + pausedState
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, result)
|
2016-10-10 07:26:09 -05:00
|
|
|
}
|
2016-12-15 10:01:45 -06:00
|
|
|
|
2016-12-19 07:36:44 -06:00
|
|
|
//POST /api/admin/pause-all-alerts
|
2019-08-12 13:03:48 -05:00
|
|
|
func PauseAllAlerts(c *models.ReqContext, dto dtos.PauseAllAlertsCommand) Response {
|
|
|
|
updateCmd := models.PauseAllAlertCommand{
|
2016-12-16 09:07:23 -06:00
|
|
|
Paused: dto.Paused,
|
2016-12-15 10:01:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&updateCmd); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to pause alerts", err)
|
2016-12-15 10:01:45 -06:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
var response models.AlertStateType = models.AlertStatePending
|
2016-12-15 10:01:45 -06:00
|
|
|
pausedState := "un paused"
|
|
|
|
if updateCmd.Paused {
|
2019-08-12 13:03:48 -05:00
|
|
|
response = models.AlertStatePaused
|
2016-12-15 10:01:45 -06:00
|
|
|
pausedState = "paused"
|
|
|
|
}
|
|
|
|
|
|
|
|
result := map[string]interface{}{
|
|
|
|
"state": response,
|
2016-12-19 09:44:59 -06:00
|
|
|
"message": "alerts " + pausedState,
|
2016-12-15 10:01:45 -06:00
|
|
|
"alertsAffected": updateCmd.ResultCount,
|
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, result)
|
2016-12-15 10:01:45 -06:00
|
|
|
}
|