12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package main
-
- import (
- "io/ioutil"
- "strings"
-
- "config"
- "git"
- puller "puller"
-
- "gopkg.in/go-playground/webhooks.v3"
- "gopkg.in/go-playground/webhooks.v3/gitlab"
- )
-
- // SetupWebhook creates and exposes a GitLab webhook using a given configuration.
- // Returns an error if the webhook couldn't be set up.
- func SetupWebhook(cfg *config.Config) error {
- hook := gitlab.New(&gitlab.Config{
- Secret: cfg.Webhook.Secret,
- })
- hook.RegisterEvents(HandlePush, gitlab.PushEvents)
-
- return webhooks.Run(
- hook,
- cfg.Webhook.Interface+":"+cfg.Webhook.Port,
- cfg.Webhook.Path,
- )
- }
-
- // HandlePush is called each time a push event is sent by GitLab on the webhook.
- func HandlePush(payload interface{}, header webhooks.Header) {
- var err error
-
- // Process the payload using the right structure
- pl := payload.(gitlab.PushEventPayload)
-
- // Clone or pull the repository
- if _, err = git.Sync(cfg.Git); err != nil {
- panic(err)
- }
-
- // Only push changes made on master to Grafana
- if pl.Ref != "refs/heads/master" {
- return
- }
-
- // Iterate over the commits descriptions from the payload
- for _, commit := range pl.Commits {
- // We don't want to process commits made by the puller
- if commit.Author.Email == cfg.Git.CommitsAuthor.Email {
- continue
- }
-
- // Push all added files
- for _, addedFile := range commit.Added {
- if err = pushFile(addedFile); err != nil {
- panic(err)
- }
- }
-
- // Push all modified files
- for _, modifiedFile := range commit.Modified {
- if err = pushFile(modifiedFile); err != nil {
- panic(err)
- }
- }
-
- // TODO: Remove a dashboard when its file gets deleted?
- }
-
- // Grafana will auto-update the version number after we pushed the new
- // dashboards, so we use the puller mechanic to pull the updated numbers and
- // commit them in the git repo.
- if err = puller.PullGrafanaAndCommit(grafanaClient, cfg); err != nil {
- panic(err)
- }
- }
-
- // pushFile pushes the content of a given file to the Grafana API in order to
- // create or update a dashboard.
- // Returns an error if there was an issue reading the file or sending its content
- // to the Grafana instance.
- func pushFile(filename string) error {
- filePath := cfg.Git.ClonePath + "/" + filename
- fileContent, err := ioutil.ReadFile(filePath)
- if err != nil {
- return err
- }
-
- // Remove the .json part
- slug := strings.Split(filename, ".json")[0]
-
- return grafanaClient.CreateOrUpdateDashboard(slug, fileContent)
- }
|