2020-03-12 08:09:25 +00:00
|
|
|
package notifiers
|
2018-11-07 07:53:39 +00:00
|
|
|
|
|
|
|
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"
|
2018-11-07 07:53:39 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-03-14 03:13:20 +00:00
|
|
|
var _ notifier.Notifier = (*commandLine)(nil)
|
2020-03-09 15:15:15 +00:00
|
|
|
|
2018-11-07 07:53:39 +00:00
|
|
|
type commandLine struct {
|
2020-03-14 03:13:20 +00:00
|
|
|
*notifications.Notification
|
2018-11-07 07:53:39 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 03:13:20 +00:00
|
|
|
func (c *commandLine) Select() *notifications.Notification {
|
|
|
|
return c.Notification
|
|
|
|
}
|
|
|
|
|
|
|
|
var Command = &commandLine{¬ifications.Notification{
|
2020-03-09 15:15:15 +00:00
|
|
|
Method: "command",
|
2020-04-11 05:59:51 +00:00
|
|
|
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.",
|
2018-11-07 07:53:39 +00:00
|
|
|
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{{
|
2018-11-07 07:53:39 +00:00
|
|
|
Type: "text",
|
|
|
|
Title: "Shell or Bash",
|
2020-04-11 05:59:51 +00:00
|
|
|
Placeholder: "/usr/bin/curl",
|
2018-11-07 07:53:39 +00:00
|
|
|
DbField: "host",
|
2020-04-11 05:59:51 +00:00
|
|
|
SmallText: "You can use '/bin/sh', '/bin/bash', '/usr/bin/curl' or an absolute path for an application.",
|
2018-11-07 07:53:39 +00:00
|
|
|
}, {
|
|
|
|
Type: "text",
|
|
|
|
Title: "Command to Run on OnSuccess",
|
2020-04-11 05:59:51 +00:00
|
|
|
Placeholder: "http://localhost:8080/health",
|
2018-11-07 07:53:39 +00:00
|
|
|
DbField: "var1",
|
2020-04-11 05:59:51 +00:00
|
|
|
SmallText: "This Command will run when a service is receiving a Successful event.",
|
2018-11-07 07:53:39 +00:00
|
|
|
}, {
|
|
|
|
Type: "text",
|
|
|
|
Title: "Command to Run on OnFailure",
|
2020-04-11 05:59:51 +00:00
|
|
|
Placeholder: "http://localhost:8080/health",
|
2018-11-07 07:53:39 +00:00
|
|
|
DbField: "var2",
|
2020-04-11 05:59:51 +00:00
|
|
|
SmallText: "This Command will run when a service is receiving a Failing event.",
|
2018-11-07 07:53:39 +00:00
|
|
|
}}},
|
|
|
|
}
|
|
|
|
|
2020-03-02 07:53:46 +00:00
|
|
|
func runCommand(app string, cmd ...string) (string, string, error) {
|
2020-04-11 05:59:51 +00:00
|
|
|
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...)
|
2018-11-07 07:53:39 +00:00
|
|
|
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")
|
2020-03-23 02:50:30 +00:00
|
|
|
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
|
2018-11-07 07:53:39 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 05:59:51 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2018-11-07 07:53:39 +00:00
|
|
|
// OnTest for commandLine triggers when this notifier has been saved
|
2020-04-11 05:59:51 +00:00
|
|
|
func (c *commandLine) OnTest() (string, error) {
|
|
|
|
tmpl := ReplaceVars(c.Var1, exampleService, exampleFailure)
|
|
|
|
in, out, err := runCommand(c.Host, tmpl)
|
2019-12-28 09:01:07 +00:00
|
|
|
utils.Log.Infoln(in)
|
|
|
|
utils.Log.Infoln(out)
|
2020-04-11 05:59:51 +00:00
|
|
|
return out, err
|
2018-11-07 07:53:39 +00:00
|
|
|
}
|