2016-06-13 22:39:00 +08:00
|
|
|
package sqlstore
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
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
|
|
|
|
2016-06-14 14:33:50 +08:00
|
|
|
"github.com/go-xorm/xorm"
|
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)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func DeleteAlertNotification(cmd *m.DeleteAlertNotificationCommand) error {
|
|
|
|
|
return inTransaction(func(sess *xorm.Session) error {
|
|
|
|
|
sql := "DELETE FROM alert_notification WHERE alert_notification.org_id = ? AND alert_notification.id = ?"
|
|
|
|
|
_, err := sess.Exec(sql, cmd.OrgId, cmd.Id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
})
|
2016-06-13 22:39:00 +08:00
|
|
|
}
|
|
|
|
|
|
2016-08-01 20:34:58 +08:00
|
|
|
func GetAlertNotifications(query *m.GetAlertNotificationsQuery) error {
|
|
|
|
|
return getAlertNotificationsInternal(query, x.NewSession())
|
2016-06-14 14:33:50 +08:00
|
|
|
}
|
|
|
|
|
|
2016-08-01 20:34:58 +08:00
|
|
|
func getAlertNotificationsInternal(query *m.GetAlertNotificationsQuery, sess *xorm.Session) 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,
|
|
|
|
|
alert_notification.is_default
|
|
|
|
|
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 03:33:05 +08:00
|
|
|
if query.Name != "" || query.Id != 0 || len(query.Ids) > 0 {
|
|
|
|
|
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-09-06 03:33:05 +08:00
|
|
|
if len(query.Ids) > 0 {
|
|
|
|
|
sql.WriteString(` AND ((alert_notification.is_default = 1) OR alert_notification.id IN (?` + strings.Repeat(",?", len(query.Ids)-1) + "))")
|
|
|
|
|
for _, v := range query.Ids {
|
|
|
|
|
params = append(params, v)
|
|
|
|
|
}
|
2016-07-26 18:29:52 +08:00
|
|
|
}
|
2016-06-14 22:56:14 +08:00
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
results := make([]*m.AlertNotification, 0)
|
|
|
|
|
if err := sess.Sql(sql.String(), params...).Find(&results); err != nil {
|
2016-06-13 22:39:00 +08:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
query.Result = results
|
2016-06-13 22:39:00 +08:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-14 14:33:50 +08:00
|
|
|
func CreateAlertNotificationCommand(cmd *m.CreateAlertNotificationCommand) error {
|
2016-06-13 22:39:00 +08:00
|
|
|
return inTransaction(func(sess *xorm.Session) error {
|
2016-07-22 22:45:17 +08:00
|
|
|
existingQuery := &m.GetAlertNotificationsQuery{OrgId: cmd.OrgId, Name: cmd.Name}
|
2016-08-01 20:34:58 +08:00
|
|
|
err := getAlertNotificationsInternal(existingQuery, sess)
|
2016-06-14 14:33:50 +08:00
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(existingQuery.Result) > 0 {
|
|
|
|
|
return fmt.Errorf("Alert notification name %s already exists", cmd.Name)
|
|
|
|
|
}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2016-06-14 14:33:50 +08:00
|
|
|
alertNotification := &m.AlertNotification{
|
2016-09-06 03:33:05 +08:00
|
|
|
OrgId: cmd.OrgId,
|
|
|
|
|
Name: cmd.Name,
|
|
|
|
|
Type: cmd.Type,
|
|
|
|
|
Settings: cmd.Settings,
|
|
|
|
|
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
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
if _, err = sess.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 {
|
2016-06-14 14:33:50 +08:00
|
|
|
return inTransaction(func(sess *xorm.Session) (err error) {
|
2016-07-22 22:45:17 +08:00
|
|
|
current := m.AlertNotification{}
|
2016-06-13 22:39:00 +08:00
|
|
|
|
2016-07-22 22:45:17 +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-08-01 20:34:58 +08:00
|
|
|
if err := getAlertNotificationsInternal(sameNameQuery, sess); err != nil {
|
2016-07-22 22:45:17 +08:00
|
|
|
return err
|
2016-06-20 22:19:15 +08:00
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
if len(sameNameQuery.Result) > 0 && sameNameQuery.Result[0].Id != current.Id {
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
sess.UseBool("is_default")
|
2016-06-14 14:33:50 +08:00
|
|
|
|
2016-07-22 22:45:17 +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 {
|
2016-06-14 22:56:14 +08:00
|
|
|
return fmt.Errorf("Could not find alert notification")
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:45:17 +08:00
|
|
|
cmd.Result = ¤t
|
2016-06-14 14:33:50 +08:00
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|