177 lines
4.5 KiB
Go
177 lines
4.5 KiB
Go
package notifiers
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
|
|
"github.com/go-mail/mail"
|
|
"github.com/statping-ng/emails"
|
|
"github.com/statping-ng/statping-ng/types/core"
|
|
"github.com/statping-ng/statping-ng/types/failures"
|
|
"github.com/statping-ng/statping-ng/types/notifications"
|
|
"github.com/statping-ng/statping-ng/types/notifier"
|
|
"github.com/statping-ng/statping-ng/types/services"
|
|
"github.com/statping-ng/statping-ng/utils"
|
|
)
|
|
|
|
var _ notifier.Notifier = (*emailer)(nil)
|
|
|
|
var (
|
|
mailer *mail.Dialer
|
|
)
|
|
|
|
type emailer struct {
|
|
*notifications.Notification
|
|
}
|
|
|
|
func (e *emailer) Select() *notifications.Notification {
|
|
return e.Notification
|
|
}
|
|
|
|
func (e *emailer) Valid(values notifications.Values) error {
|
|
return nil
|
|
}
|
|
|
|
var email = &emailer{¬ifications.Notification{
|
|
Method: "email",
|
|
Title: "SMTP Mail",
|
|
Description: "Send emails via SMTP when services are online or offline.",
|
|
Author: "Hunter Long",
|
|
AuthorUrl: "https://github.com/hunterlong",
|
|
Icon: "far fa-envelope",
|
|
Limits: 30,
|
|
Form: []notifications.NotificationForm{{
|
|
Type: "text",
|
|
Title: "SMTP Host",
|
|
Placeholder: "Insert your SMTP Host here.",
|
|
DbField: "Host",
|
|
}, {
|
|
Type: "text",
|
|
Title: "SMTP Username",
|
|
Placeholder: "Insert your SMTP Username here.",
|
|
DbField: "Username",
|
|
}, {
|
|
Type: "password",
|
|
Title: "SMTP Password",
|
|
Placeholder: "Insert your SMTP Password here.",
|
|
DbField: "Password",
|
|
}, {
|
|
Type: "number",
|
|
Title: "SMTP Port",
|
|
Placeholder: "Insert your SMTP Port here.",
|
|
DbField: "Port",
|
|
}, {
|
|
Type: "text",
|
|
Title: "Outgoing Email Address",
|
|
Placeholder: "outgoing@email.com",
|
|
DbField: "Var1",
|
|
}, {
|
|
Type: "email",
|
|
Title: "Send Alerts To",
|
|
Placeholder: "sendto@email.com",
|
|
DbField: "Var2",
|
|
}, {
|
|
Type: "switch",
|
|
Title: "Disable TLS/SSL",
|
|
Placeholder: "",
|
|
SmallText: "Enabling this will set Insecure Skip Verify to true",
|
|
DbField: "api_key",
|
|
}}},
|
|
}
|
|
|
|
type emailOutgoing struct {
|
|
To string
|
|
Subject string
|
|
Template string
|
|
From string
|
|
Data replacer
|
|
Source string
|
|
Sent bool
|
|
}
|
|
|
|
// OnFailure will trigger failing service
|
|
func (e *emailer) OnFailure(s services.Service, f failures.Failure) (string, error) {
|
|
subscriber := e.Var2.String
|
|
subject := fmt.Sprintf("Service %s is Offline", s.Name)
|
|
tmpl := renderEmail(s, subscriber, f, emails.Failure)
|
|
email := &emailOutgoing{
|
|
To: e.Var2.String,
|
|
Subject: subject,
|
|
Template: tmpl,
|
|
From: e.Var1.String,
|
|
}
|
|
return tmpl, e.dialSend(email)
|
|
}
|
|
|
|
// OnSuccess will trigger successful service
|
|
func (e *emailer) OnSuccess(s services.Service) (string, error) {
|
|
subscriber := e.Var2.String
|
|
subject := fmt.Sprintf("Service %s is Back Online", s.Name)
|
|
tmpl := renderEmail(s, subscriber, failures.Failure{}, emails.Success)
|
|
email := &emailOutgoing{
|
|
To: e.Var2.String,
|
|
Subject: subject,
|
|
Template: tmpl,
|
|
From: e.Var1.String,
|
|
}
|
|
return tmpl, e.dialSend(email)
|
|
}
|
|
|
|
func renderEmail(s services.Service, subscriber string, f failures.Failure, emailData string) string {
|
|
data := replacer{
|
|
Core: *core.App,
|
|
Service: s,
|
|
Failure: f,
|
|
Email: subscriber,
|
|
Custom: nil,
|
|
}
|
|
output, err := emails.Parse(emailData, data)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
return emailData
|
|
}
|
|
return output
|
|
}
|
|
|
|
// OnTest triggers when this notifier has been saved
|
|
func (e *emailer) OnTest() (string, error) {
|
|
subscriber := e.Var2.String
|
|
service := services.Example(true)
|
|
subject := fmt.Sprintf("Service %v is Back Online", service.Name)
|
|
email := &emailOutgoing{
|
|
To: e.Var2.String,
|
|
Subject: subject,
|
|
Template: renderEmail(service, subscriber, failures.Example(), emailFailure),
|
|
From: e.Var1.String,
|
|
}
|
|
return subject, e.dialSend(email)
|
|
}
|
|
|
|
// OnSave will trigger when this notifier is saved
|
|
func (e *emailer) OnSave() (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (e *emailer) dialSend(email *emailOutgoing) error {
|
|
mailer = mail.NewDialer(e.Host.String, int(e.Port.Int64), e.Username.String, e.Password.String)
|
|
m := mail.NewMessage()
|
|
// if email setting TLS is Disabled
|
|
if e.ApiKey.String == "true" {
|
|
mailer.SSL = false
|
|
} else {
|
|
mailer.TLSConfig = &tls.Config{InsecureSkipVerify: true}
|
|
}
|
|
|
|
m.SetAddressHeader("From", email.From, "Statping")
|
|
m.SetHeader("To", email.To)
|
|
m.SetHeader("Subject", email.Subject)
|
|
m.SetBody("text/html", email.Template)
|
|
|
|
if err := mailer.DialAndSend(m); err != nil {
|
|
utils.Log.Errorln(fmt.Sprintf("email '%v' sent to: %v (size: %v) %v", email.Subject, email.To, len([]byte(email.Source)), err))
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|