2020-09-25 01:54:15 +02:00
|
|
|
package provider
|
|
|
|
|
2020-09-26 20:23:43 +02:00
|
|
|
import (
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/custom"
|
2021-03-05 03:26:17 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/discord"
|
2020-11-23 22:20:06 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/mattermost"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/messagebird"
|
2020-11-03 04:43:55 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/pagerduty"
|
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/slack"
|
2021-03-31 01:38:34 +02:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/telegram"
|
2020-11-03 04:43:55 +01:00
|
|
|
"github.com/TwinProduction/gatus/alerting/provider/twilio"
|
2020-09-26 20:23:43 +02:00
|
|
|
"github.com/TwinProduction/gatus/core"
|
|
|
|
)
|
|
|
|
|
2020-09-26 21:15:50 +02:00
|
|
|
// AlertProvider is the interface that each providers should implement
|
2020-09-25 01:54:15 +02:00
|
|
|
type AlertProvider interface {
|
2020-09-26 21:15:50 +02:00
|
|
|
// IsValid returns whether the provider's configuration is valid
|
2020-09-25 01:54:15 +02:00
|
|
|
IsValid() bool
|
2020-09-26 21:15:50 +02:00
|
|
|
|
|
|
|
// ToCustomAlertProvider converts the provider into a custom.AlertProvider
|
2020-09-26 20:23:43 +02:00
|
|
|
ToCustomAlertProvider(service *core.Service, alert *core.Alert, result *core.Result, resolved bool) *custom.AlertProvider
|
2021-05-16 03:31:32 +02:00
|
|
|
|
|
|
|
// GetDefaultAlert returns the provider's default alert configuration
|
|
|
|
GetDefaultAlert() *core.Alert
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseWithDefaultAlert parses a service alert by using the provider's default alert as a baseline
|
|
|
|
func ParseWithDefaultAlert(providerDefaultAlert, serviceAlert *core.Alert) {
|
|
|
|
if providerDefaultAlert == nil || serviceAlert == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if serviceAlert.Enabled == nil {
|
|
|
|
serviceAlert.Enabled = providerDefaultAlert.Enabled
|
|
|
|
}
|
|
|
|
if serviceAlert.SendOnResolved == nil {
|
|
|
|
serviceAlert.SendOnResolved = providerDefaultAlert.SendOnResolved
|
|
|
|
}
|
|
|
|
if serviceAlert.Description == nil {
|
|
|
|
serviceAlert.Description = providerDefaultAlert.Description
|
|
|
|
}
|
|
|
|
if serviceAlert.FailureThreshold == 0 {
|
|
|
|
serviceAlert.FailureThreshold = providerDefaultAlert.FailureThreshold
|
|
|
|
}
|
|
|
|
if serviceAlert.SuccessThreshold == 0 {
|
|
|
|
serviceAlert.SuccessThreshold = providerDefaultAlert.SuccessThreshold
|
|
|
|
}
|
2020-09-25 01:54:15 +02:00
|
|
|
}
|
2020-11-03 04:43:55 +01:00
|
|
|
|
|
|
|
var (
|
|
|
|
// Validate interface implementation on compile
|
|
|
|
_ AlertProvider = (*custom.AlertProvider)(nil)
|
2021-03-05 03:26:17 +01:00
|
|
|
_ AlertProvider = (*discord.AlertProvider)(nil)
|
2020-11-14 15:55:37 +01:00
|
|
|
_ AlertProvider = (*mattermost.AlertProvider)(nil)
|
2020-11-23 22:20:06 +01:00
|
|
|
_ AlertProvider = (*messagebird.AlertProvider)(nil)
|
2020-11-03 04:43:55 +01:00
|
|
|
_ AlertProvider = (*pagerduty.AlertProvider)(nil)
|
2021-03-05 03:26:17 +01:00
|
|
|
_ AlertProvider = (*slack.AlertProvider)(nil)
|
2021-03-31 01:38:34 +02:00
|
|
|
_ AlertProvider = (*telegram.AlertProvider)(nil)
|
2021-03-05 03:26:17 +01:00
|
|
|
_ AlertProvider = (*twilio.AlertProvider)(nil)
|
2020-11-03 04:43:55 +01:00
|
|
|
)
|