mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 08:34:15 +01:00
7de5a1fe48
* feat: implement Gitea alerting provider integration - Add TypeGitea for the gitea alerting provider - Introduce a new file for the gitea alerting provider implementation - Implement the AlertProvider struct with necessary fields for gitea integration - Add validation logic for the AlertProvider configuration - Create tests for the AlertProvider's validation and sending functionality - Update go.mod to include the gitea SDK as a dependency - Modify the alerting configuration validation to recognize TypeGitea Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * chore: integrate Gitea alerting provider configuration - Add Gitea alerting provider import to the configuration file - Update the comment for the RepositoryURL field to reflect Gitea instead of GitHub Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * feat: add Assignees support to AlertProvider functionality - Add a field for Assignees to the AlertProvider struct - Update the Send function to include Assignees in the alert payload Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * feat: implement Gitea alerting configuration and documentation - Add a new image asset for Gitea alerts - Update the README to include configuration details for Gitea alerts - Introduce parameters for Gitea alerting, including repository URL and personal access token - Document the behavior of the Gitea alerting provider regarding issue creation and resolution - Include an example YAML configuration for Gitea alerts Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * Update README.md Co-authored-by: TwiN <twin@linux.com> * Update README.md Co-authored-by: TwiN <twin@linux.com> * Update README.md Co-authored-by: TwiN <twin@linux.com> * feat: refactor AlertProvider for improved client configuration - Add import for the Gatus client library - Remove the SkipVerify field from the AlertProvider struct - Introduce ClientConfig field in the AlertProvider struct for client configuration - Update validation logic to check for ClientConfig instead of SkipVerify Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * Update README.md Co-authored-by: TwiN <twin@linux.com> * chore: update configuration for Gitea integration - Change references from GitHub to Gitea in the configuration section - Update alerting provider descriptions to reflect the correct platform - Swap the order of GitHub and Gitea configurations - Replace Gitea alert image with GitHub alert image - Adjust the type field from gitea to github in the relevant sections Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * fix: ensure ClientConfig is validated and defaults set - Add a check for nil ClientConfig in the IsValid function - Set ClientConfig to a default configuration if it is nil Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> --------- Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-authored-by: TwiN <twin@linux.com>
128 lines
5.1 KiB
Go
128 lines
5.1 KiB
Go
package alerting
|
|
|
|
import (
|
|
"log"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/TwiN/gatus/v5/alerting/alert"
|
|
"github.com/TwiN/gatus/v5/alerting/provider"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/awsses"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/custom"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/discord"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/email"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/gitea"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/github"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/gitlab"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/googlechat"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/gotify"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/jetbrainsspace"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/matrix"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/mattermost"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/messagebird"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/ntfy"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/opsgenie"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/pagerduty"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/pushover"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/slack"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/teams"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/telegram"
|
|
"github.com/TwiN/gatus/v5/alerting/provider/twilio"
|
|
)
|
|
|
|
// Config is the configuration for alerting providers
|
|
type Config struct {
|
|
// AWSSimpleEmailService is the configuration for the aws-ses alerting provider
|
|
AWSSimpleEmailService *awsses.AlertProvider `yaml:"aws-ses,omitempty"`
|
|
|
|
// Custom is the configuration for the custom alerting provider
|
|
Custom *custom.AlertProvider `yaml:"custom,omitempty"`
|
|
|
|
// Discord is the configuration for the discord alerting provider
|
|
Discord *discord.AlertProvider `yaml:"discord,omitempty"`
|
|
|
|
// Email is the configuration for the email alerting provider
|
|
Email *email.AlertProvider `yaml:"email,omitempty"`
|
|
|
|
// GitHub is the configuration for the github alerting provider
|
|
GitHub *github.AlertProvider `yaml:"github,omitempty"`
|
|
|
|
// GitLab is the configuration for the gitlab alerting provider
|
|
GitLab *gitlab.AlertProvider `yaml:"gitlab,omitempty"`
|
|
|
|
// Gitea is the configuration for the gitea alerting provider
|
|
Gitea *gitea.AlertProvider `yaml:"gitea,omitempty"`
|
|
|
|
// GoogleChat is the configuration for the googlechat alerting provider
|
|
GoogleChat *googlechat.AlertProvider `yaml:"googlechat,omitempty"`
|
|
|
|
// Gotify is the configuration for the gotify alerting provider
|
|
Gotify *gotify.AlertProvider `yaml:"gotify,omitempty"`
|
|
|
|
// JetBrainsSpace is the configuration for the jetbrains space alerting provider
|
|
JetBrainsSpace *jetbrainsspace.AlertProvider `yaml:"jetbrainsspace,omitempty"`
|
|
|
|
// Matrix is the configuration for the matrix alerting provider
|
|
Matrix *matrix.AlertProvider `yaml:"matrix,omitempty"`
|
|
|
|
// Mattermost is the configuration for the mattermost alerting provider
|
|
Mattermost *mattermost.AlertProvider `yaml:"mattermost,omitempty"`
|
|
|
|
// Messagebird is the configuration for the messagebird alerting provider
|
|
Messagebird *messagebird.AlertProvider `yaml:"messagebird,omitempty"`
|
|
|
|
// Ntfy is the configuration for the ntfy alerting provider
|
|
Ntfy *ntfy.AlertProvider `yaml:"ntfy,omitempty"`
|
|
|
|
// Opsgenie is the configuration for the opsgenie alerting provider
|
|
Opsgenie *opsgenie.AlertProvider `yaml:"opsgenie,omitempty"`
|
|
|
|
// PagerDuty is the configuration for the pagerduty alerting provider
|
|
PagerDuty *pagerduty.AlertProvider `yaml:"pagerduty,omitempty"`
|
|
|
|
// Pushover is the configuration for the pushover alerting provider
|
|
Pushover *pushover.AlertProvider `yaml:"pushover,omitempty"`
|
|
|
|
// Slack is the configuration for the slack alerting provider
|
|
Slack *slack.AlertProvider `yaml:"slack,omitempty"`
|
|
|
|
// Teams is the configuration for the teams alerting provider
|
|
Teams *teams.AlertProvider `yaml:"teams,omitempty"`
|
|
|
|
// Telegram is the configuration for the telegram alerting provider
|
|
Telegram *telegram.AlertProvider `yaml:"telegram,omitempty"`
|
|
|
|
// Twilio is the configuration for the twilio alerting provider
|
|
Twilio *twilio.AlertProvider `yaml:"twilio,omitempty"`
|
|
}
|
|
|
|
// GetAlertingProviderByAlertType returns an provider.AlertProvider by its corresponding alert.Type
|
|
func (config *Config) GetAlertingProviderByAlertType(alertType alert.Type) provider.AlertProvider {
|
|
entityType := reflect.TypeOf(config).Elem()
|
|
for i := 0; i < entityType.NumField(); i++ {
|
|
field := entityType.Field(i)
|
|
tag := strings.Split(field.Tag.Get("yaml"), ",")[0]
|
|
if tag == string(alertType) {
|
|
fieldValue := reflect.ValueOf(config).Elem().Field(i)
|
|
if fieldValue.IsNil() {
|
|
return nil
|
|
}
|
|
return fieldValue.Interface().(provider.AlertProvider)
|
|
}
|
|
}
|
|
log.Printf("[alerting.GetAlertingProviderByAlertType] No alerting provider found for alert type %s", alertType)
|
|
return nil
|
|
}
|
|
|
|
// SetAlertingProviderToNil Sets an alerting provider to nil to avoid having to revalidate it every time an
|
|
// alert of its corresponding type is sent.
|
|
func (config *Config) SetAlertingProviderToNil(p provider.AlertProvider) {
|
|
entityType := reflect.TypeOf(config).Elem()
|
|
for i := 0; i < entityType.NumField(); i++ {
|
|
field := entityType.Field(i)
|
|
if field.Type == reflect.TypeOf(p) {
|
|
reflect.ValueOf(config).Elem().Field(i).Set(reflect.Zero(field.Type))
|
|
}
|
|
}
|
|
}
|