2016-06-13 09:39:00 -05:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2018-05-25 13:14:33 -05:00
|
|
|
"errors"
|
2016-06-13 09:39:00 -05:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
|
|
)
|
|
|
|
|
2018-05-25 13:14:33 -05:00
|
|
|
var (
|
2018-09-27 04:14:44 -05:00
|
|
|
ErrNotificationFrequencyNotFound = errors.New("Notification frequency not specified")
|
|
|
|
ErrAlertNotificationStateNotFound = errors.New("alert notification state not found")
|
|
|
|
ErrAlertNotificationStateVersionConflict = errors.New("alert notification state update version conflict")
|
2018-09-27 04:33:13 -05:00
|
|
|
ErrAlertNotificationStateAlreadyExist = errors.New("alert notification state already exists.")
|
2018-09-27 04:14:44 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type AlertNotificationStateType string
|
|
|
|
|
|
|
|
var (
|
|
|
|
AlertNotificationStatePending = AlertNotificationStateType("pending")
|
|
|
|
AlertNotificationStateCompleted = AlertNotificationStateType("completed")
|
2018-10-02 04:19:09 -05:00
|
|
|
AlertNotificationStateUnknown = AlertNotificationStateType("unknown")
|
2018-05-25 13:14:33 -05:00
|
|
|
)
|
|
|
|
|
2016-06-13 09:39:00 -05:00
|
|
|
type AlertNotification struct {
|
2018-06-05 03:27:29 -05:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
SendReminder bool `json:"sendReminder"`
|
|
|
|
Frequency time.Duration `json:"frequency"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
Settings *simplejson.Json `json:"settings"`
|
|
|
|
Created time.Time `json:"created"`
|
|
|
|
Updated time.Time `json:"updated"`
|
2016-06-13 09:39:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type CreateAlertNotificationCommand struct {
|
2018-06-05 03:27:29 -05:00
|
|
|
Name string `json:"name" binding:"Required"`
|
|
|
|
Type string `json:"type" binding:"Required"`
|
|
|
|
SendReminder bool `json:"sendReminder"`
|
|
|
|
Frequency string `json:"frequency"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
Settings *simplejson.Json `json:"settings"`
|
2016-06-13 09:39:00 -05:00
|
|
|
|
2016-07-22 09:45:17 -05:00
|
|
|
OrgId int64 `json:"-"`
|
2016-06-13 09:39:00 -05:00
|
|
|
Result *AlertNotification
|
|
|
|
}
|
|
|
|
|
|
|
|
type UpdateAlertNotificationCommand struct {
|
2018-06-05 03:27:29 -05:00
|
|
|
Id int64 `json:"id" binding:"Required"`
|
|
|
|
Name string `json:"name" binding:"Required"`
|
|
|
|
Type string `json:"type" binding:"Required"`
|
|
|
|
SendReminder bool `json:"sendReminder"`
|
|
|
|
Frequency string `json:"frequency"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
Settings *simplejson.Json `json:"settings" binding:"Required"`
|
2016-06-13 09:39:00 -05:00
|
|
|
|
2016-07-22 09:45:17 -05:00
|
|
|
OrgId int64 `json:"-"`
|
2016-06-13 09:39:00 -05:00
|
|
|
Result *AlertNotification
|
|
|
|
}
|
|
|
|
|
2016-06-16 08:21:44 -05:00
|
|
|
type DeleteAlertNotificationCommand struct {
|
|
|
|
Id int64
|
|
|
|
OrgId int64
|
|
|
|
}
|
|
|
|
|
2016-07-22 09:45:17 -05:00
|
|
|
type GetAlertNotificationsQuery struct {
|
|
|
|
Name string
|
|
|
|
Id int64
|
2016-09-06 01:42:35 -05:00
|
|
|
OrgId int64
|
|
|
|
|
|
|
|
Result *AlertNotification
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetAlertNotificationsToSendQuery struct {
|
2016-07-22 09:45:17 -05:00
|
|
|
Ids []int64
|
|
|
|
OrgId int64
|
2016-06-13 09:39:00 -05:00
|
|
|
|
|
|
|
Result []*AlertNotification
|
|
|
|
}
|
2016-09-06 01:42:35 -05:00
|
|
|
|
|
|
|
type GetAllAlertNotificationsQuery struct {
|
|
|
|
OrgId int64
|
|
|
|
|
|
|
|
Result []*AlertNotification
|
|
|
|
}
|
2018-05-19 15:21:00 -05:00
|
|
|
|
2018-09-26 10:26:02 -05:00
|
|
|
type AlertNotificationState struct {
|
2018-10-02 04:19:09 -05:00
|
|
|
Id int64
|
|
|
|
OrgId int64
|
|
|
|
AlertId int64
|
|
|
|
NotifierId int64
|
|
|
|
State AlertNotificationStateType
|
|
|
|
Version int64
|
|
|
|
UpdatedAt int64
|
|
|
|
AlertRuleStateUpdatedVersion int64
|
2018-05-19 15:21:00 -05:00
|
|
|
}
|
|
|
|
|
2018-09-27 04:33:13 -05:00
|
|
|
type SetAlertNotificationStateToPendingCommand struct {
|
2018-10-01 07:13:03 -05:00
|
|
|
AlertRuleStateUpdatedVersion int64
|
|
|
|
State *AlertNotificationState
|
2018-05-19 15:21:00 -05:00
|
|
|
}
|
|
|
|
|
2018-09-27 04:33:13 -05:00
|
|
|
type SetAlertNotificationStateToCompleteCommand struct {
|
2018-09-28 07:12:26 -05:00
|
|
|
State *AlertNotificationState
|
2018-09-27 04:33:13 -05:00
|
|
|
}
|
|
|
|
|
2018-10-02 04:23:40 -05:00
|
|
|
type GetOrCreateNotificationStateQuery struct {
|
2018-05-19 15:21:00 -05:00
|
|
|
OrgId int64
|
|
|
|
AlertId int64
|
|
|
|
NotifierId int64
|
|
|
|
|
2018-09-26 10:26:02 -05:00
|
|
|
Result *AlertNotificationState
|
2018-05-19 15:21:00 -05:00
|
|
|
}
|