2020-09-19 22:29:08 +02:00
|
|
|
package twilio
|
2020-09-19 22:22:12 +02:00
|
|
|
|
|
|
|
import (
|
2021-12-03 03:05:17 +01:00
|
|
|
"bytes"
|
2020-09-19 22:22:12 +02:00
|
|
|
"encoding/base64"
|
2024-12-17 02:32:13 +01:00
|
|
|
"errors"
|
2020-09-19 22:22:12 +02:00
|
|
|
"fmt"
|
2021-12-03 07:44:17 +01:00
|
|
|
"io"
|
2020-11-23 22:20:06 +01:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2022-12-06 07:41:09 +01:00
|
|
|
"github.com/TwiN/gatus/v5/alerting/alert"
|
|
|
|
"github.com/TwiN/gatus/v5/client"
|
2024-05-10 04:56:16 +02:00
|
|
|
"github.com/TwiN/gatus/v5/config/endpoint"
|
2024-12-17 02:32:13 +01:00
|
|
|
"gopkg.in/yaml.v3"
|
2020-09-19 22:22:12 +02:00
|
|
|
)
|
|
|
|
|
2024-12-17 02:32:13 +01:00
|
|
|
var (
|
|
|
|
ErrSIDNotSet = errors.New("sid not set")
|
|
|
|
ErrTokenNotSet = errors.New("token not set")
|
|
|
|
ErrFromNotSet = errors.New("from not set")
|
|
|
|
ErrToNotSet = errors.New("to not set")
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2020-09-19 22:22:12 +02:00
|
|
|
SID string `yaml:"sid"`
|
|
|
|
Token string `yaml:"token"`
|
|
|
|
From string `yaml:"from"`
|
|
|
|
To string `yaml:"to"`
|
2024-12-17 02:32:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *Config) Validate() error {
|
|
|
|
if len(cfg.SID) == 0 {
|
|
|
|
return ErrSIDNotSet
|
|
|
|
}
|
|
|
|
if len(cfg.Token) == 0 {
|
|
|
|
return ErrTokenNotSet
|
|
|
|
}
|
|
|
|
if len(cfg.From) == 0 {
|
|
|
|
return ErrFromNotSet
|
|
|
|
}
|
|
|
|
if len(cfg.To) == 0 {
|
|
|
|
return ErrToNotSet
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *Config) Merge(override *Config) {
|
|
|
|
if len(override.SID) > 0 {
|
|
|
|
cfg.SID = override.SID
|
|
|
|
}
|
|
|
|
if len(override.Token) > 0 {
|
|
|
|
cfg.Token = override.Token
|
|
|
|
}
|
|
|
|
if len(override.From) > 0 {
|
|
|
|
cfg.From = override.From
|
|
|
|
}
|
|
|
|
if len(override.To) > 0 {
|
|
|
|
cfg.To = override.To
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AlertProvider is the configuration necessary for sending an alert using Twilio
|
|
|
|
type AlertProvider struct {
|
|
|
|
DefaultConfig Config `yaml:",inline"`
|
2021-05-16 03:31:32 +02:00
|
|
|
|
2021-10-23 22:47:12 +02:00
|
|
|
// DefaultAlert is the default alert configuration to use for endpoints with an alert of the appropriate type
|
2022-01-12 02:13:37 +01:00
|
|
|
DefaultAlert *alert.Alert `yaml:"default-alert,omitempty"`
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|
|
|
|
|
2024-12-17 02:32:13 +01:00
|
|
|
// Validate the provider's configuration
|
|
|
|
func (provider *AlertProvider) Validate() error {
|
|
|
|
return provider.DefaultConfig.Validate()
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|
|
|
|
|
2021-12-03 03:05:17 +01:00
|
|
|
// Send an alert using the provider
|
2024-05-10 04:56:16 +02:00
|
|
|
func (provider *AlertProvider) Send(ep *endpoint.Endpoint, alert *alert.Alert, result *endpoint.Result, resolved bool) error {
|
2024-12-17 02:32:13 +01:00
|
|
|
cfg, err := provider.GetConfig(ep.Group, alert)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
buffer := bytes.NewBuffer([]byte(provider.buildRequestBody(cfg, ep, alert, result, resolved)))
|
|
|
|
request, err := http.NewRequest(http.MethodPost, fmt.Sprintf("https://api.twilio.com/2010-04-01/Accounts/%s/Messages.json", cfg.SID), buffer)
|
2021-12-03 03:05:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
request.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
2024-12-17 02:32:13 +01:00
|
|
|
request.Header.Set("Authorization", fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(cfg.SID+":"+cfg.Token))))
|
2021-12-03 03:05:17 +01:00
|
|
|
response, err := client.GetHTTPClient(nil).Do(request)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-20 21:16:27 +02:00
|
|
|
defer response.Body.Close()
|
2021-12-03 03:05:17 +01:00
|
|
|
if response.StatusCode > 399 {
|
2021-12-03 07:44:17 +01:00
|
|
|
body, _ := io.ReadAll(response.Body)
|
2021-12-03 03:05:17 +01:00
|
|
|
return fmt.Errorf("call to provider alert returned status code %d: %s", response.StatusCode, string(body))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// buildRequestBody builds the request body for the provider
|
2024-12-17 02:32:13 +01:00
|
|
|
func (provider *AlertProvider) buildRequestBody(cfg *Config, ep *endpoint.Endpoint, alert *alert.Alert, result *endpoint.Result, resolved bool) string {
|
2020-09-26 20:23:43 +02:00
|
|
|
var message string
|
|
|
|
if resolved {
|
2024-05-10 04:56:16 +02:00
|
|
|
message = fmt.Sprintf("RESOLVED: %s - %s", ep.DisplayName(), alert.GetDescription())
|
2020-09-26 20:23:43 +02:00
|
|
|
} else {
|
2024-05-10 04:56:16 +02:00
|
|
|
message = fmt.Sprintf("TRIGGERED: %s - %s", ep.DisplayName(), alert.GetDescription())
|
2020-09-26 20:23:43 +02:00
|
|
|
}
|
2021-12-03 03:05:17 +01:00
|
|
|
return url.Values{
|
2024-12-17 02:32:13 +01:00
|
|
|
"To": {cfg.To},
|
|
|
|
"From": {cfg.From},
|
2021-12-03 03:05:17 +01:00
|
|
|
"Body": {message},
|
|
|
|
}.Encode()
|
2020-09-19 22:22:12 +02:00
|
|
|
}
|
2021-05-16 03:31:32 +02:00
|
|
|
|
|
|
|
// GetDefaultAlert returns the provider's default alert configuration
|
2024-02-08 02:09:45 +01:00
|
|
|
func (provider *AlertProvider) GetDefaultAlert() *alert.Alert {
|
2021-05-16 03:31:32 +02:00
|
|
|
return provider.DefaultAlert
|
|
|
|
}
|
2024-12-17 02:32:13 +01:00
|
|
|
|
|
|
|
// GetConfig returns the configuration for the provider with the overrides applied
|
|
|
|
func (provider *AlertProvider) GetConfig(group string, alert *alert.Alert) (*Config, error) {
|
|
|
|
cfg := provider.DefaultConfig
|
|
|
|
// Handle alert overrides
|
|
|
|
if len(alert.ProviderOverride) != 0 {
|
|
|
|
overrideConfig := Config{}
|
|
|
|
if err := yaml.Unmarshal(alert.ProviderOverrideAsBytes(), &overrideConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cfg.Merge(&overrideConfig)
|
|
|
|
}
|
|
|
|
// Validate the configuration
|
|
|
|
err := cfg.Validate()
|
|
|
|
return &cfg, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateOverrides validates the alert's provider override and, if present, the group override
|
|
|
|
func (provider *AlertProvider) ValidateOverrides(group string, alert *alert.Alert) error {
|
|
|
|
_, err := provider.GetConfig(group, alert)
|
|
|
|
return err
|
|
|
|
}
|