mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-12 08:34:43 +00:00
78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"flag"
|
|
"fmt"
|
|
"net/http"
|
|
"os/exec"
|
|
"time"
|
|
|
|
"github.com/adnanh/webhook/hooks"
|
|
|
|
"github.com/go-martini/martini"
|
|
)
|
|
|
|
const (
|
|
version string = "1.0.0"
|
|
)
|
|
|
|
var (
|
|
webhooks *hooks.Hooks
|
|
appStart time.Time
|
|
ip = flag.String("ip", "", "ip the webhook server should listen on")
|
|
port = flag.Int("port", 9000, "port the webhook server should listen on")
|
|
hooksFilename = flag.String("hooks", "hooks.json", "path to the json file containing defined hooks the webhook should serve")
|
|
)
|
|
|
|
func init() {
|
|
flag.Parse()
|
|
}
|
|
|
|
func main() {
|
|
appStart = time.Now()
|
|
var e error
|
|
|
|
webhooks, e = hooks.New(*hooksFilename)
|
|
|
|
if e != nil {
|
|
fmt.Printf("Error while loading hooks from %s:\n\t>>> %s\n", *hooksFilename, e)
|
|
}
|
|
|
|
web := martini.Classic()
|
|
|
|
web.Get("/", rootHandler)
|
|
web.Get("/hook/:id", hookHandler)
|
|
web.Post("/hook/:id", hookHandler)
|
|
|
|
fmt.Printf("Starting go-webhook with %d hook(s)\n", webhooks.Count())
|
|
|
|
web.RunOnAddr(fmt.Sprintf("%s:%d", *ip, *port))
|
|
}
|
|
|
|
func rootHandler() string {
|
|
return fmt.Sprintf("go-webhook %s running for %s serving %d hook(s)\n", version, time.Since(appStart).String(), webhooks.Count())
|
|
}
|
|
|
|
func hookHandler(req *http.Request, params martini.Params) string {
|
|
decoder := json.NewDecoder(req.Body)
|
|
decoder.UseNumber()
|
|
|
|
p := make(map[string]interface{})
|
|
|
|
err := decoder.Decode(&p)
|
|
|
|
if err != nil {
|
|
// log "Error occurred while parsing the payload :-("
|
|
}
|
|
|
|
go func(id string, params interface{}) {
|
|
if hook := webhooks.Match(id, params); hook != nil {
|
|
cmd := exec.Command(hook.Command, "", "", hook.Cwd)
|
|
out, _ := cmd.Output()
|
|
fmt.Printf("Command output for %v >>> %s\n", hook, out)
|
|
}
|
|
}(params["id"], p)
|
|
|
|
return "Got it, thanks. :-)"
|
|
}
|