refactor ComposeNotification()
This commit is contained in:
parent
3a48d3ae5a
commit
287f26a37c
3 changed files with 34 additions and 69 deletions
|
@ -4,7 +4,6 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/smtp"
|
"net/smtp"
|
||||||
"strings"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
@ -55,38 +54,6 @@ func (n EmailNotifier) New(config TransportConfig) (AbstractNotifier, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n EmailNotifier) ComposeNotification(box *Box, checks []CheckResult) Notification {
|
|
||||||
errTexts := []string{}
|
|
||||||
resolvedTexts := []string{}
|
|
||||||
for _, check := range checks {
|
|
||||||
if check.Status == CheckErr {
|
|
||||||
errTexts = append(errTexts, check.String())
|
|
||||||
} else {
|
|
||||||
resolvedTexts = append(resolvedTexts, check.String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
resolved string
|
|
||||||
resolvedList string
|
|
||||||
errList string
|
|
||||||
)
|
|
||||||
if len(resolvedTexts) != 0 {
|
|
||||||
resolvedList = fmt.Sprintf("Resolved issue(s):\n\n%s\n\n", strings.Join(resolvedTexts, "\n"))
|
|
||||||
}
|
|
||||||
if len(errTexts) != 0 {
|
|
||||||
errList = fmt.Sprintf("New issue(s):\n\n%s\n\n", strings.Join(errTexts, "\n"))
|
|
||||||
} else {
|
|
||||||
resolved = "resolved "
|
|
||||||
}
|
|
||||||
|
|
||||||
return Notification{
|
|
||||||
Subject: fmt.Sprintf("Issues %swith your box \"%s\" on opensensemap.org!", resolved, box.Name),
|
|
||||||
Body: fmt.Sprintf("A check at %s identified the following updates for your box \"%s\":\n\n%s%sYou may visit https://opensensemap.org/explore/%s for more details.\n\n--\nSent automatically by osem_notify (https://github.com/noerw/osem_notify)",
|
|
||||||
time.Now().Round(time.Minute), box.Name, errList, resolvedList, box.Id),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n EmailNotifier) Submit(notification Notification) error {
|
func (n EmailNotifier) Submit(notification Notification) error {
|
||||||
// :TransportConfSourceHack
|
// :TransportConfSourceHack
|
||||||
auth := smtp.PlainAuth(
|
auth := smtp.PlainAuth(
|
||||||
|
|
|
@ -3,8 +3,6 @@ package core
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
xmpp "github.com/mattn/go-xmpp"
|
xmpp "github.com/mattn/go-xmpp"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
@ -54,38 +52,6 @@ func (n XmppNotifier) New(config TransportConfig) (AbstractNotifier, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n XmppNotifier) ComposeNotification(box *Box, checks []CheckResult) Notification {
|
|
||||||
errTexts := []string{}
|
|
||||||
resolvedTexts := []string{}
|
|
||||||
for _, check := range checks {
|
|
||||||
if check.Status == CheckErr {
|
|
||||||
errTexts = append(errTexts, check.String())
|
|
||||||
} else {
|
|
||||||
resolvedTexts = append(resolvedTexts, check.String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
resolved string
|
|
||||||
resolvedList string
|
|
||||||
errList string
|
|
||||||
)
|
|
||||||
if len(resolvedTexts) != 0 {
|
|
||||||
resolvedList = fmt.Sprintf("Resolved issue(s):\n\n%s\n\n", strings.Join(resolvedTexts, "\n"))
|
|
||||||
}
|
|
||||||
if len(errTexts) != 0 {
|
|
||||||
errList = fmt.Sprintf("New issue(s):\n\n%s\n\n", strings.Join(errTexts, "\n"))
|
|
||||||
} else {
|
|
||||||
resolved = "resolved "
|
|
||||||
}
|
|
||||||
|
|
||||||
return Notification{
|
|
||||||
Subject: fmt.Sprintf("Issues %swith your box \"%s\" on opensensemap.org!", resolved, box.Name),
|
|
||||||
Body: fmt.Sprintf("A check at %s identified the following updates for your box \"%s\":\n\n%s%sYou may visit https://opensensemap.org/explore/%s for more details.\n\n--\nSent automatically by osem_notify (https://github.com/noerw/osem_notify)",
|
|
||||||
time.Now().Round(time.Minute), box.Name, errList, resolvedList, box.Id),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n XmppNotifier) Submit(notification Notification) error {
|
func (n XmppNotifier) Submit(notification Notification) error {
|
||||||
// :TransportConfSourceHack
|
// :TransportConfSourceHack
|
||||||
xmppOpts := xmpp.Options{
|
xmppOpts := xmpp.Options{
|
||||||
|
|
|
@ -15,7 +15,6 @@ var Notifiers = map[string]AbstractNotifier{
|
||||||
|
|
||||||
type AbstractNotifier interface {
|
type AbstractNotifier interface {
|
||||||
New(config TransportConfig) (AbstractNotifier, error)
|
New(config TransportConfig) (AbstractNotifier, error)
|
||||||
ComposeNotification(box *Box, checks []CheckResult) Notification
|
|
||||||
Submit(notification Notification) error
|
Submit(notification Notification) error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,7 +80,7 @@ func (results BoxCheckResults) SendNotifications(notifyTypes []string, useCache
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
notification := notifier.ComposeNotification(box, resultsDue)
|
notification := ComposeNotification(box, resultsDue)
|
||||||
|
|
||||||
var submitErr error
|
var submitErr error
|
||||||
submitErr = notifier.Submit(notification)
|
submitErr = notifier.Submit(notification)
|
||||||
|
@ -116,3 +115,36 @@ func (results BoxCheckResults) SendNotifications(notifyTypes []string, useCache
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ComposeNotification(box *Box, checks []CheckResult) Notification {
|
||||||
|
errTexts := []string{}
|
||||||
|
resolvedTexts := []string{}
|
||||||
|
for _, check := range checks {
|
||||||
|
if check.Status == CheckErr {
|
||||||
|
errTexts = append(errTexts, check.String())
|
||||||
|
} else {
|
||||||
|
resolvedTexts = append(resolvedTexts, check.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
resolved string
|
||||||
|
resolvedList string
|
||||||
|
errList string
|
||||||
|
)
|
||||||
|
if len(resolvedTexts) != 0 {
|
||||||
|
resolvedList = fmt.Sprintf("Resolved issue(s):\n\n%s\n\n", strings.Join(resolvedTexts, "\n"))
|
||||||
|
}
|
||||||
|
if len(errTexts) != 0 {
|
||||||
|
errList = fmt.Sprintf("New issue(s):\n\n%s\n\n", strings.Join(errTexts, "\n"))
|
||||||
|
} else {
|
||||||
|
resolved = "resolved "
|
||||||
|
}
|
||||||
|
|
||||||
|
return Notification{
|
||||||
|
Subject: fmt.Sprintf("Issues %swith your box \"%s\" on opensensemap.org!", resolved, box.Name),
|
||||||
|
Body: fmt.Sprintf("A check at %s identified the following updates for your box \"%s\":\n\n%s%sYou may visit https://opensensemap.org/explore/%s for more details.\n\n--\nSent automatically by osem_notify (https://github.com/noerw/osem_notify)",
|
||||||
|
time.Now().Round(time.Minute), box.Name, errList, resolvedList, box.Id),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue