statping/notifiers/command.go

84 lines
2.6 KiB
Go
Raw Normal View History

2020-03-12 08:09:25 +00:00
package notifiers
import (
2020-03-09 18:17:55 +00:00
"github.com/statping/statping/types/failures"
2020-03-14 03:13:20 +00:00
"github.com/statping/statping/types/notifications"
"github.com/statping/statping/types/notifier"
2020-03-09 18:17:55 +00:00
"github.com/statping/statping/types/services"
"github.com/statping/statping/utils"
2020-03-02 07:53:46 +00:00
"strings"
"time"
)
2020-03-14 03:13:20 +00:00
var _ notifier.Notifier = (*commandLine)(nil)
2020-03-09 15:15:15 +00:00
type commandLine struct {
2020-03-14 03:13:20 +00:00
*notifications.Notification
}
2020-03-14 03:13:20 +00:00
func (c *commandLine) Select() *notifications.Notification {
return c.Notification
}
var Command = &commandLine{&notifications.Notification{
2020-03-09 15:15:15 +00:00
Method: "command",
Title: "Command",
2019-10-25 15:13:32 +00:00
Description: "Shell Command allows you to run a customized shell/bash Command on the local machine it's running on.",
Author: "Hunter Long",
AuthorUrl: "https://github.com/hunterlong",
Delay: time.Duration(1 * time.Second),
2018-11-07 09:33:51 +00:00
Icon: "fas fa-terminal",
2018-12-10 05:43:15 +00:00
Host: "/bin/bash",
2020-03-17 03:13:07 +00:00
Limits: 60,
2020-03-14 03:13:20 +00:00
Form: []notifications.NotificationForm{{
Type: "text",
Title: "Executable Path",
Placeholder: "/usr/bin/curl",
DbField: "host",
SmallText: "You can use '/bin/sh', '/bin/bash', '/usr/bin/curl' or an absolute path for an application.",
}, {
Type: "text",
Title: "Command to Run on OnSuccess",
Placeholder: "http://localhost:8080/health",
DbField: "var1",
SmallText: "<b>Accepts Variables</b> This Command will run when a service is receiving a Successful event.",
}, {
Type: "text",
Title: "Command to Run on OnFailure",
Placeholder: "http://localhost:8080/health",
DbField: "var2",
SmallText: "<b>Accepts Variables</b> This Command will run when a service is receiving a Failing event.",
}}},
}
2020-03-02 07:53:46 +00:00
func runCommand(app string, cmd ...string) (string, string, error) {
utils.Log.Infof("Command notifier sending: %s %s", app, strings.Join(cmd, " "))
2020-03-02 07:53:46 +00:00
outStr, errStr, err := utils.Command(app, cmd...)
return outStr, errStr, err
}
// OnSuccess for commandLine will trigger successful service
2020-03-25 18:46:50 +00:00
func (c *commandLine) OnSuccess(s *services.Service) error {
msg := c.GetValue("var1")
tmpl := ReplaceVars(msg, s, nil)
2020-03-25 18:46:50 +00:00
_, _, err := runCommand(c.Host, tmpl)
2020-03-14 03:13:20 +00:00
return err
}
// OnFailure for commandLine will trigger failing service
func (c *commandLine) OnFailure(s *services.Service, f *failures.Failure) error {
msg := c.GetValue("var2")
tmpl := ReplaceVars(msg, s, f)
_, _, err := runCommand(c.Host, tmpl)
return err
}
// OnTest for commandLine triggers when this notifier has been saved
func (c *commandLine) OnTest() (string, error) {
tmpl := ReplaceVars(c.Var1, exampleService, exampleFailure)
in, out, err := runCommand(c.Host, tmpl)
utils.Log.Infoln(in)
utils.Log.Infoln(out)
return out, err
}