forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
github.go
110 lines (97 loc) · 3.76 KB
/
github.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
109
110
package github
import (
"encoding/json"
"fmt"
"io/ioutil"
"mime"
"net/http"
"k8s.io/apimachinery/pkg/api/errors"
kapi "k8s.io/kubernetes/pkg/api"
"github.com/golang/glog"
buildapi "github.com/openshift/origin/pkg/build/apis/build"
"github.com/openshift/origin/pkg/build/webhook"
)
// WebHook used for processing github webhook requests.
type WebHook struct{}
// New returns github webhook plugin.
func New() *WebHook {
return &WebHook{}
}
type commit struct {
ID string `json:"id,omitempty"`
Author buildapi.SourceControlUser `json:"author,omitempty"`
Committer buildapi.SourceControlUser `json:"committer,omitempty"`
Message string `json:"message,omitempty"`
}
type pushEvent struct {
Ref string `json:"ref,omitempty"`
After string `json:"after,omitempty"`
HeadCommit commit `json:"head_commit,omitempty"`
}
// Extract services webhooks from github.com
func (p *WebHook) Extract(buildCfg *buildapi.BuildConfig, secret, path string, req *http.Request) (revision *buildapi.SourceRevision, envvars []kapi.EnvVar, dockerStrategyOptions *buildapi.DockerStrategyOptions, proceed bool, err error) {
triggers, err := webhook.FindTriggerPolicy(buildapi.GitHubWebHookBuildTriggerType, buildCfg)
if err != nil {
return revision, envvars, dockerStrategyOptions, proceed, err
}
glog.V(4).Infof("Checking if the provided secret for BuildConfig %s/%s matches", buildCfg.Namespace, buildCfg.Name)
if _, err = webhook.ValidateWebHookSecret(triggers, secret); err != nil {
return revision, envvars, dockerStrategyOptions, proceed, err
}
glog.V(4).Infof("Verifying build request for BuildConfig %s/%s", buildCfg.Namespace, buildCfg.Name)
if err = verifyRequest(req); err != nil {
return revision, envvars, dockerStrategyOptions, proceed, err
}
method := getEvent(req.Header)
if method != "ping" && method != "push" {
return revision, envvars, dockerStrategyOptions, proceed, errors.NewBadRequest(fmt.Sprintf("Unknown X-GitHub-Event or X-Gogs-Event %s", method))
}
if method == "ping" {
return revision, envvars, dockerStrategyOptions, proceed, err
}
body, err := ioutil.ReadAll(req.Body)
if err != nil {
return revision, envvars, dockerStrategyOptions, proceed, errors.NewBadRequest(err.Error())
}
var event pushEvent
if err = json.Unmarshal(body, &event); err != nil {
return revision, envvars, dockerStrategyOptions, proceed, errors.NewBadRequest(err.Error())
}
if !webhook.GitRefMatches(event.Ref, webhook.DefaultConfigRef, &buildCfg.Spec.Source) {
glog.V(2).Infof("Skipping build for BuildConfig %s/%s. Branch reference from '%s' does not match configuration", buildCfg.Namespace, buildCfg, event)
return revision, envvars, dockerStrategyOptions, proceed, err
}
revision = &buildapi.SourceRevision{
Git: &buildapi.GitSourceRevision{
Commit: event.HeadCommit.ID,
Author: event.HeadCommit.Author,
Committer: event.HeadCommit.Committer,
Message: event.HeadCommit.Message,
},
}
return revision, envvars, dockerStrategyOptions, true, err
}
func verifyRequest(req *http.Request) error {
if method := req.Method; method != "POST" {
return webhook.MethodNotSupported
}
contentType := req.Header.Get("Content-Type")
mediaType, _, err := mime.ParseMediaType(contentType)
if err != nil {
return errors.NewBadRequest(fmt.Sprintf("non-parseable Content-Type %s (%s)", contentType, err))
}
if mediaType != "application/json" {
return errors.NewBadRequest(fmt.Sprintf("unsupported Content-Type %s", contentType))
}
if len(getEvent(req.Header)) == 0 {
return errors.NewBadRequest("missing X-GitHub-Event or X-Gogs-Event")
}
return nil
}
func getEvent(header http.Header) string {
event := header.Get("X-GitHub-Event")
if len(event) == 0 {
event = header.Get("X-Gogs-Event")
}
return event
}