forked from abiosoft/caddy-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlab_hook.go
108 lines (88 loc) · 2.68 KB
/
gitlab_hook.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package git
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strings"
)
// GitlabHook is webhook for gitlab.com
type GitlabHook struct{}
type glPush struct {
Ref string `json:"ref"`
}
// DoesHandle satisfies hookHandler.
func (g GitlabHook) DoesHandle(h http.Header) bool {
event := h.Get("X-Gitlab-Event")
// for Gitlab you can only use X-Gitlab-Event header to test if you could handle the request
if event != "" {
return true
}
return false
}
// Handle satisfies hookHandler.
func (g GitlabHook) Handle(w http.ResponseWriter, r *http.Request, repo *Repo) (int, error) {
if r.Method != "POST" {
return http.StatusMethodNotAllowed, errors.New("the request had an invalid method")
}
body, err := ioutil.ReadAll(r.Body)
if err != nil {
return http.StatusRequestTimeout, errors.New("could not read body from request")
}
err = g.handleToken(r, body, repo.Hook.Secret)
if err != nil {
return http.StatusBadRequest, err
}
event := r.Header.Get("X-Gitlab-Event")
if event == "" {
return http.StatusBadRequest, errors.New("the 'X-Gitlab-Event' header is required but was missing")
}
switch event {
case "Push Hook":
err = g.handlePush(body, repo)
if !hookIgnored(err) && err != nil {
return http.StatusBadRequest, err
}
// return 400 if we do not handle the event type.
default:
return http.StatusBadRequest, nil
}
return http.StatusOK, err
}
// handleToken checks for an optional token in the request. GitLab's webhook tokens are just
// simple strings that get sent as a header with the hook request. If one
// exists, verify that it matches the secret in the Caddy configuration.
func (g GitlabHook) handleToken(r *http.Request, body []byte, secret string) error {
token := r.Header.Get("X-Gitlab-Token")
if token != "" {
if secret == "" {
Logger().Print("Unable to verify request. Secret not set in caddyfile!\n")
} else {
if token != secret {
return errors.New("Unable to verify request. The token and specified secret do not match!")
}
}
}
return nil
}
func (g GitlabHook) handlePush(body []byte, repo *Repo) error {
var push glPush
err := json.Unmarshal(body, &push)
if err != nil {
return err
}
// extract the branch being pushed from the ref string
// and if it matches with our locally tracked one, pull.
refSlice := strings.Split(push.Ref, "/")
if len(refSlice) != 3 {
return errors.New("the push request contained an invalid reference string")
}
branch := refSlice[2]
if branch != repo.Branch {
return hookIgnoredError{hookType: hookName(g), err: fmt.Errorf("found different branch %v", branch)}
}
Logger().Print("Received pull notification for the tracking branch, updating...\n")
repo.Pull()
return nil
}