statping/notifiers/command.go

83 lines
2.4 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: "Shell 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: "Shell or Bash",
2018-12-10 05:43:15 +00:00
Placeholder: "/bin/bash",
DbField: "host",
2019-01-17 20:56:09 +00:00
SmallText: "You can use '/bin/sh', '/bin/bash' or even an absolute path for an application.",
}, {
Type: "text",
Title: "Command to Run on OnSuccess",
2018-12-10 05:43:15 +00:00
Placeholder: "curl google.com",
DbField: "var1",
2019-10-25 15:13:32 +00:00
SmallText: "This Command will run every time a service is receiving a Successful event.",
}, {
Type: "text",
Title: "Command to Run on OnFailure",
2018-12-10 05:43:15 +00:00
Placeholder: "curl offline.com",
DbField: "var2",
2019-10-25 15:13:32 +00:00
SmallText: "This Command will run every time a service is receiving a Failing event.",
}}},
}
2020-03-02 07:53:46 +00:00
func runCommand(app string, cmd ...string) (string, string, error) {
outStr, errStr, err := utils.Command(app, cmd...)
return outStr, errStr, err
}
// OnFailure for commandLine will trigger failing service
2020-03-25 18:46:50 +00:00
func (c *commandLine) OnFailure(s *services.Service, f *failures.Failure) error {
msg := c.GetValue("var2")
tmpl := ReplaceVars(msg, s, f)
2020-03-25 18:46:50 +00:00
_, _, err := runCommand(c.Host, tmpl)
2020-03-14 03:13:20 +00:00
return 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
}
// OnTest for commandLine triggers when this notifier has been saved
2020-03-25 18:46:50 +00:00
func (c *commandLine) OnTest() error {
cmds := strings.Split(c.Var1, " ")
in, out, err := runCommand(c.Host, cmds...)
utils.Log.Infoln(in)
utils.Log.Infoln(out)
return err
}