issue_22 #41
@@ -71,7 +71,7 @@ lora_mesh:
 | 
			
		||||
 | 
			
		||||
# 通知服务配置
 | 
			
		||||
notify:
 | 
			
		||||
  primary: "log" # 首选通知渠道: smtp, wechat, lark, log (如果其他渠道未启用,log 会自动成为首选)
 | 
			
		||||
  primary: "日志" # 首选通知渠道: "邮件", "企业微信", "飞书", "日志" (如果其他渠道未启用,"日志" 会自动成为首选)
 | 
			
		||||
  failureThreshold: 2 # 连续失败多少次后触发广播模式
 | 
			
		||||
  smtp:
 | 
			
		||||
    enabled: false # 是否启用 SMTP 邮件通知
 | 
			
		||||
 
 | 
			
		||||
@@ -5656,7 +5656,7 @@ const docTemplate = `{
 | 
			
		||||
            ],
 | 
			
		||||
            "properties": {
 | 
			
		||||
                "type": {
 | 
			
		||||
                    "description": "Type 指定要测试的通知渠道\n@enum(smtp, wechat, lark, log)",
 | 
			
		||||
                    "description": "Type 指定要测试的通知渠道",
 | 
			
		||||
                    "allOf": [
 | 
			
		||||
                        {
 | 
			
		||||
                            "$ref": "#/definitions/notify.NotifierType"
 | 
			
		||||
@@ -6611,14 +6611,12 @@ const docTemplate = `{
 | 
			
		||||
                "smtp",
 | 
			
		||||
                "wechat",
 | 
			
		||||
                "lark",
 | 
			
		||||
                "sms",
 | 
			
		||||
                "log"
 | 
			
		||||
            ],
 | 
			
		||||
            "x-enum-varnames": [
 | 
			
		||||
                "NotifierTypeSMTP",
 | 
			
		||||
                "NotifierTypeWeChat",
 | 
			
		||||
                "NotifierTypeLark",
 | 
			
		||||
                "NotifierTypeSMS",
 | 
			
		||||
                "NotifierTypeLog"
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
@@ -5648,7 +5648,7 @@
 | 
			
		||||
            ],
 | 
			
		||||
            "properties": {
 | 
			
		||||
                "type": {
 | 
			
		||||
                    "description": "Type 指定要测试的通知渠道\n@enum(smtp, wechat, lark, log)",
 | 
			
		||||
                    "description": "Type 指定要测试的通知渠道",
 | 
			
		||||
                    "allOf": [
 | 
			
		||||
                        {
 | 
			
		||||
                            "$ref": "#/definitions/notify.NotifierType"
 | 
			
		||||
@@ -6603,14 +6603,12 @@
 | 
			
		||||
                "smtp",
 | 
			
		||||
                "wechat",
 | 
			
		||||
                "lark",
 | 
			
		||||
                "sms",
 | 
			
		||||
                "log"
 | 
			
		||||
            ],
 | 
			
		||||
            "x-enum-varnames": [
 | 
			
		||||
                "NotifierTypeSMTP",
 | 
			
		||||
                "NotifierTypeWeChat",
 | 
			
		||||
                "NotifierTypeLark",
 | 
			
		||||
                "NotifierTypeSMS",
 | 
			
		||||
                "NotifierTypeLog"
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
@@ -1130,9 +1130,7 @@ definitions:
 | 
			
		||||
      type:
 | 
			
		||||
        allOf:
 | 
			
		||||
        - $ref: '#/definitions/notify.NotifierType'
 | 
			
		||||
        description: |-
 | 
			
		||||
          Type 指定要测试的通知渠道
 | 
			
		||||
          @enum(smtp, wechat, lark, log)
 | 
			
		||||
        description: Type 指定要测试的通知渠道
 | 
			
		||||
    required:
 | 
			
		||||
    - type
 | 
			
		||||
    type: object
 | 
			
		||||
@@ -1832,14 +1830,12 @@ definitions:
 | 
			
		||||
    - smtp
 | 
			
		||||
    - wechat
 | 
			
		||||
    - lark
 | 
			
		||||
    - sms
 | 
			
		||||
    - log
 | 
			
		||||
    type: string
 | 
			
		||||
    x-enum-varnames:
 | 
			
		||||
    - NotifierTypeSMTP
 | 
			
		||||
    - NotifierTypeWeChat
 | 
			
		||||
    - NotifierTypeLark
 | 
			
		||||
    - NotifierTypeSMS
 | 
			
		||||
    - NotifierTypeLog
 | 
			
		||||
info:
 | 
			
		||||
  contact:
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,5 @@ import "git.huangwc.com/pig/pig-farm-controller/internal/infra/notify"
 | 
			
		||||
// SendTestNotificationRequest 定义了发送测试通知请求的 JSON 结构
 | 
			
		||||
type SendTestNotificationRequest struct {
 | 
			
		||||
	// Type 指定要测试的通知渠道
 | 
			
		||||
	// @enum(smtp, wechat, lark, log)
 | 
			
		||||
	Type notify.NotifierType `json:"type" binding:"required"`
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -163,7 +163,7 @@ type LoraMeshConfig struct {
 | 
			
		||||
 | 
			
		||||
// NotifyConfig 包含了所有与通知服务相关的配置
 | 
			
		||||
type NotifyConfig struct {
 | 
			
		||||
	Primary          string       `yaml:"primary"`          // 首选通知渠道 (e.g., "smtp", "wechat", "lark", "log")
 | 
			
		||||
	Primary          string       `yaml:"primary"`          // 首选通知渠道 (e.g., "邮件", "企业微信", "飞书", "日志")
 | 
			
		||||
	FailureThreshold int          `yaml:"failureThreshold"` // 连续失败多少次后触发广播模式
 | 
			
		||||
	SMTP             SMTPConfig   `yaml:"smtp"`
 | 
			
		||||
	WeChat           WeChatConfig `yaml:"wechat"`
 | 
			
		||||
 
 | 
			
		||||
@@ -14,13 +14,13 @@ type NotifierType string
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	// NotifierTypeSMTP 表示 SMTP 邮件通知器。
 | 
			
		||||
	NotifierTypeSMTP NotifierType = "smtp"
 | 
			
		||||
	NotifierTypeSMTP NotifierType = "邮件"
 | 
			
		||||
	// NotifierTypeWeChat 表示企业微信通知器。
 | 
			
		||||
	NotifierTypeWeChat NotifierType = "wechat"
 | 
			
		||||
	NotifierTypeWeChat NotifierType = "企业微信"
 | 
			
		||||
	// NotifierTypeLark 表示飞书通知器。
 | 
			
		||||
	NotifierTypeLark NotifierType = "lark"
 | 
			
		||||
	NotifierTypeLark NotifierType = "飞书"
 | 
			
		||||
	// NotifierTypeLog 表示日志通知器,作为最终的告警记录渠道。
 | 
			
		||||
	NotifierTypeLog NotifierType = "log"
 | 
			
		||||
	NotifierTypeLog NotifierType = "日志"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// AlarmContent 定义了通知的内容
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user