|
|
|
@@ -16,7 +16,23 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func createNotifier(channel string, channelConfig map[string]any) (notifier.Notifier, error) {
|
|
|
|
|
/*
|
|
|
|
|
注意:如果追加新的常量值,请保持以 ASCII 排序。
|
|
|
|
|
NOTICE: If you add new constant, please keep ASCII order.
|
|
|
|
|
*/
|
|
|
|
|
switch channel {
|
|
|
|
|
case domain.NotifyChannelBark:
|
|
|
|
|
return providerBark.New(&providerBark.BarkNotifierConfig{
|
|
|
|
|
DeviceKey: maps.GetValueAsString(channelConfig, "deviceKey"),
|
|
|
|
|
ServerUrl: maps.GetValueAsString(channelConfig, "serverUrl"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelDingtalk:
|
|
|
|
|
return providerDingTalk.New(&providerDingTalk.DingTalkNotifierConfig{
|
|
|
|
|
AccessToken: maps.GetValueAsString(channelConfig, "accessToken"),
|
|
|
|
|
Secret: maps.GetValueAsString(channelConfig, "secret"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelEmail:
|
|
|
|
|
return providerEmail.New(&providerEmail.EmailNotifierConfig{
|
|
|
|
|
SmtpHost: maps.GetValueAsString(channelConfig, "smtpHost"),
|
|
|
|
@@ -28,38 +44,26 @@ func createNotifier(channel string, channelConfig map[string]any) (notifier.Noti
|
|
|
|
|
ReceiverAddress: maps.GetValueAsString(channelConfig, "receiverAddress"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelWebhook:
|
|
|
|
|
return providerWebhook.New(&providerWebhook.WebhookNotifierConfig{
|
|
|
|
|
Url: maps.GetValueAsString(channelConfig, "url"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelDingtalk:
|
|
|
|
|
return providerDingTalk.New(&providerDingTalk.DingTalkNotifierConfig{
|
|
|
|
|
AccessToken: maps.GetValueAsString(channelConfig, "accessToken"),
|
|
|
|
|
Secret: maps.GetValueAsString(channelConfig, "secret"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelLark:
|
|
|
|
|
return providerLark.New(&providerLark.LarkNotifierConfig{
|
|
|
|
|
WebhookUrl: maps.GetValueAsString(channelConfig, "webhookUrl"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelServerChan:
|
|
|
|
|
return providerServerChan.New(&providerServerChan.ServerChanNotifierConfig{
|
|
|
|
|
Url: maps.GetValueAsString(channelConfig, "url"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelTelegram:
|
|
|
|
|
return providerTelegram.New(&providerTelegram.TelegramNotifierConfig{
|
|
|
|
|
ApiToken: maps.GetValueAsString(channelConfig, "apiToken"),
|
|
|
|
|
ChatId: maps.GetValueAsInt64(channelConfig, "chatId"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelServerChan:
|
|
|
|
|
return providerServerChan.New(&providerServerChan.ServerChanNotifierConfig{
|
|
|
|
|
case domain.NotifyChannelWebhook:
|
|
|
|
|
return providerWebhook.New(&providerWebhook.WebhookNotifierConfig{
|
|
|
|
|
Url: maps.GetValueAsString(channelConfig, "url"),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
case domain.NotifyChannelBark:
|
|
|
|
|
return providerBark.New(&providerBark.BarkNotifierConfig{
|
|
|
|
|
DeviceKey: maps.GetValueAsString(channelConfig, "deviceKey"),
|
|
|
|
|
ServerUrl: maps.GetValueAsString(channelConfig, "serverUrl"),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("unsupported notifier channel: %s", channelConfig)
|
|
|
|
|