Tool to help you manage your Grafana dashboards using Git.

main.go 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "strconv"
  6. "gopkg.in/go-playground/webhooks.v3"
  7. "gopkg.in/go-playground/webhooks.v3/github"
  8. )
  9. const (
  10. path = "/webhooks"
  11. port = 3016
  12. )
  13. type myLogger struct {
  14. PrintDebugs bool
  15. }
  16. func (l *myLogger) Info(msg string) {
  17. log.Println(msg)
  18. }
  19. func (l *myLogger) Error(msg string) {
  20. log.Println(msg)
  21. }
  22. func (l *myLogger) Debug(msg string) {
  23. if !l.PrintDebugs {
  24. return
  25. }
  26. log.Println(msg)
  27. }
  28. func main() {
  29. // webhooks.DefaultLog=webhooks.NewLogger(true)
  30. //
  31. // or override with your own
  32. webhooks.DefaultLog = &myLogger{PrintDebugs: true}
  33. hook := github.New(&github.Config{Secret: "MyGitHubSuperSecretSecrect...?"})
  34. hook.RegisterEvents(HandleMultiple, github.ReleaseEvent, github.PullRequestEvent) // Add as many as you want
  35. err := webhooks.Run(hook, ":"+strconv.Itoa(port), path)
  36. if err != nil {
  37. fmt.Println(err)
  38. }
  39. }
  40. // HandleMultiple handles multiple GitHub events
  41. func HandleMultiple(payload interface{}, header webhooks.Header) {
  42. fmt.Println("Handling Payload..")
  43. switch payload.(type) {
  44. case github.ReleasePayload:
  45. release := payload.(github.ReleasePayload)
  46. // Do whatever you want from here...
  47. fmt.Printf("%+v", release)
  48. case github.PullRequestPayload:
  49. pullRequest := payload.(github.PullRequestPayload)
  50. // Do whatever you want from here...
  51. fmt.Printf("%+v", pullRequest)
  52. }
  53. }