2021-02-11 14:39:19 +00:00
|
|
|
// NB:
|
|
|
|
// When adding new constants for the Method or CommandOrEvent
|
|
|
|
// types, make sure to also add them to the map
|
|
|
|
// <Method/CommandOrEvent>Available since the this will be used
|
|
|
|
// to check if the message values are valid later on.
|
|
|
|
|
|
|
|
package steward
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os/exec"
|
2021-02-19 15:58:16 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-02-11 14:39:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
// Method is used to specify the actual function/method that
|
|
|
|
// is represented in a typed manner.
|
|
|
|
type Method string
|
|
|
|
|
|
|
|
func (m Method) GetMethodsAvailable() MethodsAvailable {
|
|
|
|
ma := MethodsAvailable{
|
|
|
|
topics: map[Method]methodHandler{
|
2021-03-01 11:16:36 +00:00
|
|
|
CLICommand: methodCommandCLICommand{},
|
|
|
|
TextLogging: methodEventTextLogging{},
|
|
|
|
SayHello: methodEventSayHello{},
|
|
|
|
ErrorLog: methodEventErrorLog{},
|
2021-02-11 14:39:19 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return ma
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Shell command to be executed via f.ex. bash
|
2021-03-01 11:16:36 +00:00
|
|
|
CLICommand Method = "CLICommand"
|
2021-02-11 14:39:19 +00:00
|
|
|
// Send text logging to some host
|
2021-02-22 08:33:37 +00:00
|
|
|
TextLogging Method = "TextLogging"
|
2021-02-18 13:27:53 +00:00
|
|
|
// Send Hello I'm here message
|
2021-02-22 08:33:37 +00:00
|
|
|
SayHello Method = "SayHello"
|
2021-02-24 14:43:31 +00:00
|
|
|
// Error log methods to centralError
|
|
|
|
ErrorLog Method = "ErrorLog"
|
2021-02-11 14:39:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type MethodsAvailable struct {
|
|
|
|
topics map[Method]methodHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if exists will check if the Method is defined. If true the bool
|
|
|
|
// value will be set to true, and the methodHandler function for that type
|
|
|
|
// will be returned.
|
|
|
|
func (ma MethodsAvailable) CheckIfExists(m Method) (methodHandler, bool) {
|
|
|
|
mFunc, ok := ma.topics[m]
|
|
|
|
if ok {
|
2021-02-16 03:57:54 +00:00
|
|
|
// fmt.Printf("******THE TOPIC EXISTS: %v******\n", m)
|
2021-02-11 14:39:19 +00:00
|
|
|
return mFunc, true
|
|
|
|
} else {
|
2021-02-16 03:57:54 +00:00
|
|
|
// fmt.Printf("******THE TOPIC DO NOT EXIST: %v******\n", m)
|
2021-02-11 14:39:19 +00:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 13:27:53 +00:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
// Subscriber method handlers
|
2021-02-11 14:39:19 +00:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
type methodHandler interface {
|
2021-02-11 14:51:07 +00:00
|
|
|
handler(server *server, message Message, node string) ([]byte, error)
|
2021-02-11 14:39:19 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 11:16:36 +00:00
|
|
|
type methodCommandCLICommand struct{}
|
2021-02-11 14:39:19 +00:00
|
|
|
|
2021-03-01 11:16:36 +00:00
|
|
|
func (m methodCommandCLICommand) handler(s *server, message Message, node string) ([]byte, error) {
|
2021-02-11 14:39:19 +00:00
|
|
|
// Since the command to execute is at the first position in the
|
|
|
|
// slice we need to slice it out. The arguments are at the
|
|
|
|
// remaining positions.
|
|
|
|
c := message.Data[0]
|
|
|
|
a := message.Data[1:]
|
|
|
|
cmd := exec.Command(c, a...)
|
|
|
|
//cmd.Stdout = os.Stdout
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("error: execution of command failed: %v\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
outMsg := []byte(fmt.Sprintf("confirmed from node: %v: messageID: %v\n---\n%s---", node, message.ID, out))
|
|
|
|
return outMsg, nil
|
|
|
|
}
|
|
|
|
|
2021-02-18 13:27:53 +00:00
|
|
|
// -----
|
|
|
|
|
2021-02-11 14:39:19 +00:00
|
|
|
type methodEventTextLogging struct{}
|
|
|
|
|
|
|
|
func (m methodEventTextLogging) handler(s *server, message Message, node string) ([]byte, error) {
|
|
|
|
for _, d := range message.Data {
|
2021-02-24 09:58:02 +00:00
|
|
|
s.subscriberServices.logCh <- []byte(d)
|
2021-02-11 14:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
outMsg := []byte("confirmed from: " + node + ": " + fmt.Sprint(message.ID))
|
|
|
|
return outMsg, nil
|
|
|
|
}
|
2021-02-18 13:27:53 +00:00
|
|
|
|
|
|
|
// -----
|
|
|
|
|
|
|
|
type methodEventSayHello struct{}
|
|
|
|
|
|
|
|
func (m methodEventSayHello) handler(s *server, message Message, node string) ([]byte, error) {
|
2021-02-26 06:55:28 +00:00
|
|
|
log.Printf("<--- Received hello from %v \n", message.FromNode)
|
2021-02-19 15:58:16 +00:00
|
|
|
// Since the handler is only called to handle a specific type of message we need
|
|
|
|
// to store it elsewhere, and choice for now is under s.metrics.sayHelloNodes
|
2021-02-24 09:58:02 +00:00
|
|
|
s.subscriberServices.sayHelloNodes[message.FromNode] = struct{}{}
|
2021-02-19 15:58:16 +00:00
|
|
|
|
|
|
|
// update the prometheus metrics
|
|
|
|
s.metrics.metricsCh <- metricType{
|
|
|
|
metric: prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "hello_nodes",
|
|
|
|
Help: "The current number of total nodes who have said hello",
|
|
|
|
}),
|
2021-02-24 09:58:02 +00:00
|
|
|
value: float64(len(s.subscriberServices.sayHelloNodes)),
|
2021-02-19 15:58:16 +00:00
|
|
|
}
|
2021-02-18 13:27:53 +00:00
|
|
|
outMsg := []byte("confirmed from: " + node + ": " + fmt.Sprint(message.ID))
|
|
|
|
return outMsg, nil
|
|
|
|
}
|
2021-02-24 14:43:31 +00:00
|
|
|
|
|
|
|
// ---
|
|
|
|
|
|
|
|
type methodEventErrorLog struct{}
|
|
|
|
|
|
|
|
func (m methodEventErrorLog) handler(s *server, message Message, node string) ([]byte, error) {
|
|
|
|
log.Printf("----------------------------------------------------------------------------..\n")
|
|
|
|
log.Printf("Received error from: %v, containing: %v", message.FromNode, message.Data)
|
|
|
|
log.Printf("----------------------------------------------------------------------------..\n")
|
|
|
|
return nil, nil
|
|
|
|
}
|