Tool to help you manage your Grafana dashboards using Git.

webhook.go 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. package main
  2. import (
  3. "io/ioutil"
  4. "strings"
  5. "config"
  6. "git"
  7. "grafana/helpers"
  8. puller "puller"
  9. "github.com/sirupsen/logrus"
  10. "gopkg.in/go-playground/webhooks.v3"
  11. "gopkg.in/go-playground/webhooks.v3/gitlab"
  12. )
  13. // SetupWebhook creates and exposes a GitLab webhook using a given configuration.
  14. // Returns an error if the webhook couldn't be set up.
  15. func SetupWebhook(cfg *config.Config) error {
  16. hook := gitlab.New(&gitlab.Config{
  17. Secret: cfg.Webhook.Secret,
  18. })
  19. hook.RegisterEvents(HandlePush, gitlab.PushEvents)
  20. return webhooks.Run(
  21. hook,
  22. cfg.Webhook.Interface+":"+cfg.Webhook.Port,
  23. cfg.Webhook.Path,
  24. )
  25. }
  26. // HandlePush is called each time a push event is sent by GitLab on the webhook.
  27. func HandlePush(payload interface{}, header webhooks.Header) {
  28. var err error
  29. // Process the payload using the right structure
  30. pl := payload.(gitlab.PushEventPayload)
  31. // Only push changes made on master to Grafana
  32. if pl.Ref != "refs/heads/master" {
  33. return
  34. }
  35. // Clone or pull the repository
  36. if _, err = git.Sync(cfg.Git); err != nil {
  37. logrus.WithFields(logrus.Fields{
  38. "error": err,
  39. "repo": cfg.Git.User + "@" + cfg.Git.URL,
  40. "clone_path": cfg.Git.ClonePath,
  41. }).Error("Failed to synchronise the Git repository with the remote")
  42. return
  43. }
  44. // Files to push and their contents are stored in a map before being pushed
  45. // to the Grafana API. We don't push them in the loop iterating over commits
  46. // because, in the case a file is successively updated by two commits pushed
  47. // at the same time, it would push the same file several time, which isn't
  48. // an optimised behaviour.
  49. filesToPush := make(map[string][]byte)
  50. // Iterate over the commits descriptions from the payload
  51. for _, commit := range pl.Commits {
  52. // We don't want to process commits made by the puller
  53. if commit.Author.Email == cfg.Git.CommitsAuthor.Email {
  54. logrus.WithFields(logrus.Fields{
  55. "hash": commit.ID,
  56. "author_email": commit.Author.Email,
  57. "manager_email": cfg.Git.CommitsAuthor.Email,
  58. }).Info("Commit was made by the manager, skipping")
  59. continue
  60. }
  61. // Set all added files to be pushed, except the ones describing a
  62. // dashboard which name starts with a the prefix specified in the
  63. // configuration file.
  64. for _, addedFile := range commit.Added {
  65. if err = prepareForPush(addedFile, &filesToPush); err != nil {
  66. logrus.WithFields(logrus.Fields{
  67. "error": err,
  68. "filename": addedFile,
  69. }).Error("Failed to prepare file for push")
  70. continue
  71. }
  72. }
  73. // Set all modified files to be pushed, except the ones describing a
  74. // dashboard which name starts with a the prefix specified in the
  75. // configuration file.
  76. for _, modifiedFile := range commit.Modified {
  77. if err = prepareForPush(modifiedFile, &filesToPush); err != nil {
  78. logrus.WithFields(logrus.Fields{
  79. "error": err,
  80. "filename": modifiedFile,
  81. }).Error("Failed to prepare file for push")
  82. continue
  83. }
  84. }
  85. // If a file describing a dashboard gets removed from the Git repository,
  86. // delete the corresponding dashboard on Grafana, but only if the user
  87. // mentionned they want to do so with the correct command line flag.
  88. if *deleteRemoved {
  89. for _, removedFile := range commit.Removed {
  90. if err = deleteDashboard(removedFile); err != nil {
  91. logrus.WithFields(logrus.Fields{
  92. "error": err,
  93. "filename": removedFile,
  94. }).Error("Failed to delete the dashboard")
  95. }
  96. continue
  97. }
  98. }
  99. }
  100. // Push all files to the Grafana API
  101. for fileToPush, fileContent := range filesToPush {
  102. if err = grafanaClient.CreateOrUpdateDashboard(fileContent); err != nil {
  103. logrus.WithFields(logrus.Fields{
  104. "error": err,
  105. "filename": fileToPush,
  106. }).Error("Failed to push the file to Grafana")
  107. continue
  108. }
  109. }
  110. // Grafana will auto-update the version number after we pushed the new
  111. // dashboards, so we use the puller mechanic to pull the updated numbers and
  112. // commit them in the git repo.
  113. if err = puller.PullGrafanaAndCommit(grafanaClient, cfg); err != nil {
  114. logrus.WithFields(logrus.Fields{
  115. "error": err,
  116. "repo": cfg.Git.User + "@" + cfg.Git.URL,
  117. "clone_path": cfg.Git.ClonePath,
  118. }).Error("Call to puller returned an error")
  119. }
  120. }
  121. // prepareForPush reads the file containing the JSON representation of a
  122. // dashboard, checks if the dashboard is set to be ignored, and if not appends
  123. // its content to a map, which will be later iterated over to push the contents
  124. // it contains to the Grafana API.
  125. // Returns an error if there was an issue reading the file or checking if the
  126. // dashboard it represents is to be ignored.
  127. func prepareForPush(
  128. filename string, filesToPush *map[string][]byte,
  129. ) (err error) {
  130. // Don't set versions.json to be pushed
  131. if strings.HasSuffix(filename, "versions.json") {
  132. return
  133. }
  134. // Read the file's content
  135. fileContent, err := ioutil.ReadFile(filename)
  136. if err != nil {
  137. return
  138. }
  139. // Check if dashboard is ignored
  140. ignored, err := isIgnored(fileContent)
  141. if err != nil {
  142. return
  143. }
  144. // Append to the list of contents to push to Grafana
  145. if !ignored {
  146. logrus.WithFields(logrus.Fields{
  147. "filename": filename,
  148. }).Info("Preparing file to be pushed to Grafana")
  149. (*filesToPush)[filename] = fileContent
  150. }
  151. return
  152. }
  153. // deleteDashboard reads the dashboard described in a given file and, if the file
  154. // isn't set to be ignored, delete the corresponding dashboard from Grafana.
  155. // Returns an error if there was an issue reading the file's content, checking
  156. // if the dashboard is to be ignored, computing its slug or deleting it from
  157. // Grafana.
  158. func deleteDashboard(filename string) (err error) {
  159. // Don't delete versions.json
  160. if strings.HasSuffix(filename, "versions.json") {
  161. return
  162. }
  163. // Read the file's content
  164. fileContent, err := ioutil.ReadFile(filename)
  165. if err != nil {
  166. return
  167. }
  168. // Check if dashboard is ignored
  169. ignored, err := isIgnored(fileContent)
  170. if err != nil {
  171. return
  172. }
  173. if !ignored {
  174. // Retrieve dashboard slug because we need it in the deletion request.
  175. var slug string
  176. slug, err = helpers.GetDashboardSlug(fileContent)
  177. if err != nil {
  178. return
  179. }
  180. // Delete the dashboard
  181. err = grafanaClient.DeleteDashboard(slug)
  182. }
  183. return
  184. }
  185. // isIgnored checks whether the file must be ignored, by checking if there's an
  186. // prefix for ignored files set in the configuration file, and if the dashboard
  187. // described in the file has a name that starts with this prefix. Returns an
  188. // error if there was an issue reading or decoding the file.
  189. func isIgnored(dashboardJSON []byte) (bool, error) {
  190. // If there's no prefix set, no file is ignored
  191. if len(cfg.Grafana.IgnorePrefix) == 0 {
  192. return false, nil
  193. }
  194. // Parse the file's content to extract its slug
  195. slug, err := helpers.GetDashboardSlug(dashboardJSON)
  196. if err != nil {
  197. return false, err
  198. }
  199. // Compare the slug against the prefix
  200. if strings.HasPrefix(slug, cfg.Grafana.IgnorePrefix) {
  201. return true, nil
  202. }
  203. return false, nil
  204. }