Tool to help you manage your Grafana dashboards using Git.

webhook.go 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package main
  2. import (
  3. "io/ioutil"
  4. "strconv"
  5. "strings"
  6. puller "puller"
  7. "gopkg.in/go-playground/webhooks.v3"
  8. "gopkg.in/go-playground/webhooks.v3/gitlab"
  9. )
  10. func SetupWebhook() error {
  11. hook := gitlab.New(&gitlab.Config{
  12. Secret: "mysecret",
  13. })
  14. hook.RegisterEvents(HandlePush, gitlab.PushEvents)
  15. return webhooks.Run(
  16. hook,
  17. *webhookInterface+":"+strconv.Itoa(*webhookPort),
  18. *webhookPath,
  19. )
  20. }
  21. func HandlePush(payload interface{}, header webhooks.Header) {
  22. pl := payload.(gitlab.PushEventPayload)
  23. var err error
  24. for _, commit := range pl.Commits {
  25. for _, addedFile := range commit.Added {
  26. if err = pushFile(addedFile); err != nil {
  27. panic(err)
  28. }
  29. }
  30. for _, modifiedFile := range commit.Modified {
  31. if err = pushFile(modifiedFile); err != nil {
  32. panic(err)
  33. }
  34. }
  35. // TODO: Remove a dashboard when its file gets deleted?
  36. }
  37. // Grafana will auto-update the version number after we pushed the new
  38. // dashboards, so we use the puller mechanic to pull the updated numbers and
  39. // commit them in the git repo.
  40. if err = puller.PullGrafanaAndCommit(
  41. grafanaClient, *repoURL, *clonePath, *privateKeyPath,
  42. ); err != nil {
  43. panic(err)
  44. }
  45. }
  46. func pushFile(filename string) error {
  47. filePath := *clonePath + "/" + filename
  48. fileContent, err := ioutil.ReadFile(filePath)
  49. if err != nil {
  50. return err
  51. }
  52. // Remove the .json part
  53. slug := strings.Split(filename, ".json")[0]
  54. return grafanaClient.UpdateDashboard(slug, fileContent)
  55. }