2016-06-13 22:39:00 +08:00
|
|
|
package sqlstore
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
2018-06-15 21:30:17 +08:00
|
|
|
"context"
|
2018-09-28 17:17:03 +08:00
|
|
|
"errors"
|
2016-06-14 14:33:50 +08:00
|
|
|
"fmt"
|
2016-07-26 18:29:52 +08:00
|
|
|
"strings"
|
2016-06-14 14:33:50 +08:00
|
|
|
"time"
|
2016-06-13 22:39:00 +08:00
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
2016-08-01 20:34:58 +08:00
|
|
|
bus.AddHandler("sql", GetAlertNotifications)
|
2016-06-14 14:33:50 +08:00
|
|
|
bus.AddHandler("sql", CreateAlertNotificationCommand)
|
|
|
|
|
bus.AddHandler("sql", UpdateAlertNotification)
|
2016-06-16 21:21:44 +08:00
|
|
|
bus.AddHandler("sql", DeleteAlertNotification)
|
2016-09-06 14:42:35 +08:00
|
|
|
bus.AddHandler("sql", GetAlertNotificationsToSend)
|
|
|
|
|
bus.AddHandler("sql", GetAllAlertNotifications)
|
2018-09-27 17:14:44 +08:00
|
|
|
bus.AddHandlerCtx("sql", InsertAlertNotificationState)
|
|
|
|
|
bus.AddHandlerCtx("sql", GetAlertNotificationState)
|
2018-09-27 17:33:13 +08:00
|
|
|
bus.AddHandlerCtx("sql", SetAlertNotificationStateToCompleteCommand)
|
|
|
|
|
bus.AddHandlerCtx("sql", SetAlertNotificationStateToPendingCommand)
|
2016-06-16 21:21:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func DeleteAlertNotification(cmd *m.DeleteAlertNotificationCommand) error {
|
2017-05-23 16:56:23 +08:00
|
|
|
return inTransaction(func(sess *DBSession) error {
|
2016-06-16 21:21:44 +08:00
|
|
|
sql := "DELETE FROM alert_notification WHERE alert_notification.org_id = ? AND alert_notification.id = ?"
|
|
|
|
|
_, err := sess.Exec(sql, cmd.OrgId, cmd.Id)
|
2018-04-17 01:54:23 +08:00
|
|
|
return err
|
2016-06-16 21:21:44 +08:00
|
|
|
})
|
2016-06-13 22:39:00 +08:00
|
|
|
}
|
|
|
|
|
|
2016-08-01 20:34:58 +08:00
|
|
|
func GetAlertNotifications(query *m.GetAlertNotificationsQuery) error {
|
2017-05-23 16:56:23 +08:00
|
|
|
return getAlertNotificationInternal(query, newSession())
|
2016-06-14 14:33:50 +08:00
|
|
|
}
|
|
|
|
|
|
2016-09-06 14:42:35 +08:00
|
|
|
func GetAllAlertNotifications(query *m.GetAllAlertNotificationsQuery) error {
|
|
|
|
|
results := make([]*m.AlertNotification, 0)
|
|
|
|
|
if err := x.Where("org_id = ?", query.OrgId).Find(&results); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.Result = results
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func GetAlertNotificationsToSend(query *m.GetAlertNotificationsToSendQuery) error {
|
|
|
|
|
var sql bytes.Buffer
|
|
|
|
|
params := make([]interface{}, 0)
|
|
|
|
|
|
|
|
|
|
sql.WriteString(`SELECT
|
|
|
|
|
alert_notification.id,
|
|
|
|
|
alert_notification.org_id,
|
|
|
|
|
alert_notification.name,
|
|
|
|
|
alert_notification.type,
|
|
|
|
|
alert_notification.created,
|
|
|
|
|
alert_notification.updated,
|
|
|
|
|
alert_notification.settings,
|
2018-05-21 00:12:10 +08:00
|
|
|
alert_notification.is_default,
|
2018-06-05 16:27:29 +08:00
|
|
|
alert_notification.send_reminder,
|
2018-05-21 00:12:10 +08:00
|
|
|
alert_notification.frequency
|
2016-09-06 14:42:35 +08:00
|
|
|
FROM alert_notification
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
|
|
sql.WriteString(` WHERE alert_notification.org_id = ?`)
|
|
|
|
|
params = append(params, query.OrgId)
|
|
|
|
|
|
2016-09-23 14:07:14 +08:00
|
|
|
sql.WriteString(` AND ((alert_notification.is_default = ?)`)
|
|
|
|
|
params = append(params, dialect.BooleanStr(true))
|
2016-09-06 14:42:35 +08:00
|
|
|
if len(query.Ids) > 0 {
|
|
|
|
|
sql.WriteString(` OR alert_notification.id IN (?` + strings.Repeat(",?", len(query.Ids)-1) + ")")
|
|
|
|
|
for _, v := range query.Ids {
|
|
|
|
|
params = append(params, v)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
sql.WriteString(`)`)
|
|
|
|
|
|
|
|
|
|
results := make([]*m.AlertNotification, 0)
|
2018-01-24 05:30:45 +08:00
|
|
|
if err := x.SQL(sql.String(), params...).Find(&results); err != nil {
|
2016-09-06 14:42:35 +08:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.Result = results
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 16:56:23 +08:00
|
|
|
func getAlertNotificationInternal(query *m.GetAlertNotificationsQuery, sess *DBSession) error {
|
2016-06-13 22:39:00 +08:00
|
|
|
var sql bytes.Buffer
|
|
|
|
|
params := make([]interface{}, 0)
|
|
|
|
|
|
|
|
|
|
sql.WriteString(`SELECT
|
2016-09-06 03:33:05 +08:00
|
|
|
alert_notification.id,
|
|
|
|
|
alert_notification.org_id,
|
|
|
|
|
alert_notification.name,
|
|
|
|
|
alert_notification.type,
|
|
|
|
|
alert_notification.created,
|
|
|
|
|
alert_notification.updated,
|
|
|
|
|
alert_notification.settings,
|
2018-05-21 00:12:10 +08:00
|
|
|
alert_notification.is_default,
|
2018-06-05 16:27:29 +08:00
|
|
|
alert_notification.send_reminder,
|
2018-05-21 00:12:10 +08:00
|
|
|
alert_notification.frequency
|
2016-09-06 03:33:05 +08:00
|
|
|
FROM alert_notification
|
|
|
|
|
`)
|
2016-06-13 22:39:00 +08:00
|
|
|
|
|
|
|
|
sql.WriteString(` WHERE alert_notification.org_id = ?`)
|
2016-07-22 22:45:17 +08:00
|
|
|
params = append(params, query.OrgId)
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2016-09-06 14:42:35 +08:00
|
|
|
if query.Name != "" || query.Id != 0 {
|
2016-09-06 03:33:05 +08:00
|
|
|
if query.Name != "" {
|
|
|
|
|
sql.WriteString(` AND alert_notification.name = ?`)
|
|
|
|
|
params = append(params, query.Name)
|
|
|
|
|
}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2016-09-06 03:33:05 +08:00
|
|
|
if query.Id != 0 {
|
|
|
|
|
sql.WriteString(` AND alert_notification.id = ?`)
|
|
|
|
|
params = append(params, query.Id)
|
|
|
|
|
}
|
2016-06-14 22:56:14 +08:00
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
results := make([]*m.AlertNotification, 0)
|
2018-09-16 18:26:05 +08:00
|
|
|
if err := sess.SQL(sql.String(), params...).Find(&results); err != nil {
|
2016-06-13 22:39:00 +08:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-06 14:42:35 +08:00
|
|
|
if len(results) == 0 {
|
|
|
|
|
query.Result = nil
|
|
|
|
|
} else {
|
|
|
|
|
query.Result = results[0]
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 22:39:00 +08:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-14 14:33:50 +08:00
|
|
|
func CreateAlertNotificationCommand(cmd *m.CreateAlertNotificationCommand) error {
|
2017-05-23 16:56:23 +08:00
|
|
|
return inTransaction(func(sess *DBSession) error {
|
2016-07-22 22:45:17 +08:00
|
|
|
existingQuery := &m.GetAlertNotificationsQuery{OrgId: cmd.OrgId, Name: cmd.Name}
|
2016-09-06 14:42:35 +08:00
|
|
|
err := getAlertNotificationInternal(existingQuery, sess)
|
2016-06-14 14:33:50 +08:00
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-06 14:42:35 +08:00
|
|
|
if existingQuery.Result != nil {
|
2016-06-14 14:33:50 +08:00
|
|
|
return fmt.Errorf("Alert notification name %s already exists", cmd.Name)
|
|
|
|
|
}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2018-05-26 02:14:33 +08:00
|
|
|
var frequency time.Duration
|
2018-06-05 16:27:29 +08:00
|
|
|
if cmd.SendReminder {
|
2018-06-05 04:19:27 +08:00
|
|
|
if cmd.Frequency == "" {
|
|
|
|
|
return m.ErrNotificationFrequencyNotFound
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
frequency, err = time.ParseDuration(cmd.Frequency)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2018-05-21 00:12:10 +08:00
|
|
|
}
|
|
|
|
|
|
2016-06-14 14:33:50 +08:00
|
|
|
alertNotification := &m.AlertNotification{
|
2018-06-05 16:27:29 +08:00
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
|
Name: cmd.Name,
|
|
|
|
|
Type: cmd.Type,
|
|
|
|
|
Settings: cmd.Settings,
|
|
|
|
|
SendReminder: cmd.SendReminder,
|
|
|
|
|
Frequency: frequency,
|
|
|
|
|
Created: time.Now(),
|
|
|
|
|
Updated: time.Now(),
|
|
|
|
|
IsDefault: cmd.IsDefault,
|
2016-06-14 14:33:50 +08:00
|
|
|
}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2018-06-05 16:27:29 +08:00
|
|
|
if _, err = sess.MustCols("send_reminder").Insert(alertNotification); err != nil {
|
2016-06-14 14:33:50 +08:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cmd.Result = alertNotification
|
|
|
|
|
return nil
|
2016-06-13 22:39:00 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func UpdateAlertNotification(cmd *m.UpdateAlertNotificationCommand) error {
|
2017-05-23 16:56:23 +08:00
|
|
|
return inTransaction(func(sess *DBSession) (err error) {
|
2016-07-22 22:45:17 +08:00
|
|
|
current := m.AlertNotification{}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2018-01-24 05:30:45 +08:00
|
|
|
if _, err = sess.ID(cmd.Id).Get(¤t); err != nil {
|
2016-06-14 14:33:50 +08:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
// check if name exists
|
|
|
|
|
sameNameQuery := &m.GetAlertNotificationsQuery{OrgId: cmd.OrgId, Name: cmd.Name}
|
2016-09-06 14:42:35 +08:00
|
|
|
if err := getAlertNotificationInternal(sameNameQuery, sess); err != nil {
|
2016-07-22 22:45:17 +08:00
|
|
|
return err
|
2016-06-20 22:19:15 +08:00
|
|
|
}
|
|
|
|
|
|
2016-09-06 14:42:35 +08:00
|
|
|
if sameNameQuery.Result != nil && sameNameQuery.Result.Id != current.Id {
|
2016-07-22 22:45:17 +08:00
|
|
|
return fmt.Errorf("Alert notification name %s already exists", cmd.Name)
|
|
|
|
|
}
|
2016-06-14 14:33:50 +08:00
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
current.Updated = time.Now()
|
|
|
|
|
current.Settings = cmd.Settings
|
|
|
|
|
current.Name = cmd.Name
|
|
|
|
|
current.Type = cmd.Type
|
2016-09-06 03:33:05 +08:00
|
|
|
current.IsDefault = cmd.IsDefault
|
2018-06-05 16:27:29 +08:00
|
|
|
current.SendReminder = cmd.SendReminder
|
2018-05-21 00:12:10 +08:00
|
|
|
|
2018-06-05 16:27:29 +08:00
|
|
|
if current.SendReminder {
|
2018-06-05 04:19:27 +08:00
|
|
|
if cmd.Frequency == "" {
|
|
|
|
|
return m.ErrNotificationFrequencyNotFound
|
|
|
|
|
}
|
2018-05-21 04:08:42 +08:00
|
|
|
|
2018-06-05 04:19:27 +08:00
|
|
|
frequency, err := time.ParseDuration(cmd.Frequency)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
current.Frequency = frequency
|
2018-05-21 00:12:10 +08:00
|
|
|
}
|
2016-09-06 03:33:05 +08:00
|
|
|
|
2018-06-05 16:27:29 +08:00
|
|
|
sess.UseBool("is_default", "send_reminder")
|
2016-06-14 14:33:50 +08:00
|
|
|
|
2018-01-24 05:30:45 +08:00
|
|
|
if affected, err := sess.ID(cmd.Id).Update(current); err != nil {
|
2016-06-14 14:33:50 +08:00
|
|
|
return err
|
2016-07-22 22:45:17 +08:00
|
|
|
} else if affected == 0 {
|
2018-06-05 04:19:27 +08:00
|
|
|
return fmt.Errorf("Could not update alert notification")
|
2016-06-14 22:56:14 +08:00
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
cmd.Result = ¤t
|
2016-06-14 14:33:50 +08:00
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
2018-05-20 04:21:00 +08:00
|
|
|
|
2018-09-27 17:14:44 +08:00
|
|
|
func InsertAlertNotificationState(ctx context.Context, cmd *m.InsertAlertNotificationCommand) error {
|
2018-09-24 22:16:10 +08:00
|
|
|
return withDbSession(ctx, func(sess *DBSession) error {
|
2018-09-27 17:14:44 +08:00
|
|
|
notificationState := &m.AlertNotificationState{
|
2018-05-20 04:21:00 +08:00
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
|
AlertId: cmd.AlertId,
|
|
|
|
|
NotifierId: cmd.NotifierId,
|
|
|
|
|
SentAt: cmd.SentAt,
|
2018-09-27 17:14:44 +08:00
|
|
|
State: cmd.State,
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-27 18:07:43 +08:00
|
|
|
if _, err := sess.Insert(notificationState); err != nil {
|
|
|
|
|
if dialect.IsUniqueConstraintViolation(err) {
|
2018-09-27 17:33:13 +08:00
|
|
|
return m.ErrAlertNotificationStateAlreadyExist
|
|
|
|
|
}
|
2018-09-27 18:07:43 +08:00
|
|
|
|
|
|
|
|
return err
|
2018-05-20 04:21:00 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-27 18:07:43 +08:00
|
|
|
return nil
|
2018-05-20 04:21:00 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-27 17:33:13 +08:00
|
|
|
func SetAlertNotificationStateToCompleteCommand(ctx context.Context, cmd *m.SetAlertNotificationStateToCompleteCommand) error {
|
|
|
|
|
return withDbSession(ctx, func(sess *DBSession) error {
|
2018-09-28 20:12:26 +08:00
|
|
|
version := cmd.State.Version
|
|
|
|
|
var current m.AlertNotificationState
|
|
|
|
|
sess.ID(cmd.State.Id).Get(¤t)
|
|
|
|
|
|
|
|
|
|
cmd.State.State = m.AlertNotificationStateCompleted
|
|
|
|
|
cmd.State.Version++
|
|
|
|
|
|
2018-09-27 18:07:43 +08:00
|
|
|
sql := `UPDATE alert_notification_state SET
|
2018-09-28 17:17:03 +08:00
|
|
|
state = ?,
|
|
|
|
|
version = ?
|
2018-09-27 17:33:13 +08:00
|
|
|
WHERE
|
|
|
|
|
id = ?`
|
|
|
|
|
|
2018-09-28 20:12:26 +08:00
|
|
|
_, err := sess.Exec(sql, cmd.State.State, cmd.State.Version, cmd.State.Id)
|
|
|
|
|
|
2018-09-27 17:33:13 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 20:12:26 +08:00
|
|
|
if current.Version != version {
|
2018-09-27 17:33:13 +08:00
|
|
|
return m.ErrAlertNotificationStateVersionConflict
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func SetAlertNotificationStateToPendingCommand(ctx context.Context, cmd *m.SetAlertNotificationStateToPendingCommand) error {
|
2018-09-27 17:14:44 +08:00
|
|
|
return withDbSession(ctx, func(sess *DBSession) error {
|
2018-09-28 20:12:26 +08:00
|
|
|
currentVersion := cmd.State.Version
|
|
|
|
|
cmd.State.State = m.AlertNotificationStatePending
|
|
|
|
|
cmd.State.Version++
|
|
|
|
|
|
2018-09-27 18:07:43 +08:00
|
|
|
sql := `UPDATE alert_notification_state SET
|
2018-09-28 17:17:03 +08:00
|
|
|
state = ?,
|
2018-09-27 17:14:44 +08:00
|
|
|
version = ?
|
|
|
|
|
WHERE
|
|
|
|
|
id = ? AND
|
2018-09-27 17:33:13 +08:00
|
|
|
version = ?`
|
2018-09-27 17:14:44 +08:00
|
|
|
|
2018-09-28 20:12:26 +08:00
|
|
|
res, err := sess.Exec(sql, cmd.State.State, cmd.State.Version, cmd.State.Id, currentVersion)
|
|
|
|
|
|
2018-09-27 17:14:44 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
affected, _ := res.RowsAffected()
|
|
|
|
|
|
|
|
|
|
if affected == 0 {
|
|
|
|
|
return m.ErrAlertNotificationStateVersionConflict
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func GetAlertNotificationState(ctx context.Context, cmd *m.GetNotificationStateQuery) error {
|
2018-09-24 22:16:10 +08:00
|
|
|
return withDbSession(ctx, func(sess *DBSession) error {
|
2018-09-26 23:26:02 +08:00
|
|
|
nj := &m.AlertNotificationState{}
|
2018-06-29 21:15:31 +08:00
|
|
|
|
2018-09-28 16:48:08 +08:00
|
|
|
exist, err := getAlertNotificationState(sess, cmd, nj)
|
2018-06-16 17:27:04 +08:00
|
|
|
|
2018-09-27 20:32:54 +08:00
|
|
|
// if exists, return it, otherwise create it with default values
|
2018-05-20 04:21:00 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 16:48:08 +08:00
|
|
|
if exist {
|
|
|
|
|
cmd.Result = nj
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
notificationState := &m.AlertNotificationState{
|
|
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
|
AlertId: cmd.AlertId,
|
|
|
|
|
NotifierId: cmd.NotifierId,
|
|
|
|
|
State: "unknown",
|
|
|
|
|
}
|
2018-09-27 20:32:54 +08:00
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
if _, err := sess.Insert(notificationState); err != nil {
|
|
|
|
|
if dialect.IsUniqueConstraintViolation(err) {
|
|
|
|
|
exist, err = getAlertNotificationState(sess, cmd, nj)
|
2018-09-27 20:32:54 +08:00
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2018-09-28 16:48:08 +08:00
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
if !exist {
|
|
|
|
|
return errors.New("Should not happen")
|
2018-09-27 20:32:54 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
cmd.Result = nj
|
|
|
|
|
return nil
|
2018-09-28 16:48:08 +08:00
|
|
|
}
|
2018-09-28 17:17:03 +08:00
|
|
|
|
|
|
|
|
return err
|
2018-09-27 17:14:44 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 17:17:03 +08:00
|
|
|
cmd.Result = notificationState
|
2018-05-20 04:21:00 +08:00
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
2018-09-28 16:48:08 +08:00
|
|
|
|
|
|
|
|
func getAlertNotificationState(sess *DBSession, cmd *m.GetNotificationStateQuery, nj *m.AlertNotificationState) (bool, error) {
|
|
|
|
|
exist, err := sess.Desc("alert_notification_state.sent_at").
|
|
|
|
|
Where("alert_notification_state.org_id = ?", cmd.OrgId).
|
|
|
|
|
Where("alert_notification_state.alert_id = ?", cmd.AlertId).
|
|
|
|
|
Where("alert_notification_state.notifier_id = ?", cmd.NotifierId).
|
|
|
|
|
Get(nj)
|
|
|
|
|
return exist, err
|
|
|
|
|
}
|