func HandleCallback(event *model.Event, action *api.Action) { teams := action.Uic phones := []string{} mails := []string{} if teams != "" { phones, mails = api.ParseTeams(teams) smsContent := GenerateSmsContent(event) mailContent := GenerateMailContent(event) if action.BeforeCallbackSms == 1 { redis.WriteSms(phones, smsContent) } if action.BeforeCallbackMail == 1 { redis.WriteMail(mails, smsContent, mailContent) } } message := Callback(event, action) if teams != "" { if action.AfterCallbackSms == 1 { redis.WriteSms(phones, message) } if action.AfterCallbackMail == 1 { redis.WriteMail(mails, message, message) } } }
// 高优先级的不做报警合并 func consumeHighEvents(event *model.Event, action *api.Action) { if action.Uic == "" { return } phones, mails := api.ParseTeams(action.Uic) smsContent := GenerateSmsContent(event) mailContent := GenerateMailContent(event) if event.Priority() < 3 { redis.WriteSms(phones, smsContent) } redis.WriteMail(mails, smsContent, mailContent) }