forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebhook.go
187 lines (161 loc) · 6.86 KB
/
webhook.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package buildconfig
import (
"context"
"fmt"
"net/http"
"strings"
"github.com/golang/glog"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/runtime/serializer"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
apirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/apiserver/pkg/registry/rest"
kubetypedclient "k8s.io/client-go/kubernetes/typed/core/v1"
kapi "k8s.io/kubernetes/pkg/apis/core"
"github.com/openshift/api/build"
buildv1 "github.com/openshift/api/build/v1"
buildclienttyped "github.com/openshift/client-go/build/clientset/versioned/typed/build/v1"
buildapi "github.com/openshift/origin/pkg/build/apis/build"
buildv1helpers "github.com/openshift/origin/pkg/build/apis/build/v1"
"github.com/openshift/origin/pkg/build/client"
"github.com/openshift/origin/pkg/build/webhook"
)
var (
webhookEncodingScheme = runtime.NewScheme()
webhookEncodingCodecFactory = serializer.NewCodecFactory(webhookEncodingScheme)
)
func init() {
// TODO eventually we shouldn't deal in internal versions, but for now decode into one.
utilruntime.Must(buildv1helpers.Install(webhookEncodingScheme))
webhookEncodingCodecFactory = serializer.NewCodecFactory(webhookEncodingScheme)
}
type WebHook struct {
groupVersion schema.GroupVersion
buildConfigClient buildclienttyped.BuildV1Interface
secretsClient kubetypedclient.SecretsGetter
instantiator client.BuildConfigInstantiator
plugins map[string]webhook.Plugin
}
// NewWebHookREST returns the webhook handler
func NewWebHookREST(buildConfigClient buildclienttyped.BuildV1Interface, secretsClient kubetypedclient.SecretsGetter, groupVersion schema.GroupVersion, plugins map[string]webhook.Plugin) *WebHook {
return newWebHookREST(buildConfigClient, secretsClient, client.BuildConfigInstantiatorClient{Client: buildConfigClient}, groupVersion, plugins)
}
// this supports simple unit testing
func newWebHookREST(buildConfigClient buildclienttyped.BuildV1Interface, secretsClient kubetypedclient.SecretsGetter, instantiator client.BuildConfigInstantiator, groupVersion schema.GroupVersion, plugins map[string]webhook.Plugin) *WebHook {
return &WebHook{
groupVersion: groupVersion,
buildConfigClient: buildConfigClient,
secretsClient: secretsClient,
instantiator: instantiator,
plugins: plugins,
}
}
// New() responds with the status object.
func (h *WebHook) New() runtime.Object {
return &buildapi.Build{}
}
// Connect responds to connections with a ConnectHandler
func (h *WebHook) Connect(ctx context.Context, name string, options runtime.Object, responder rest.Responder) (http.Handler, error) {
return &WebHookHandler{
ctx: ctx,
name: name,
options: options.(*kapi.PodProxyOptions),
responder: responder,
groupVersion: h.groupVersion,
plugins: h.plugins,
buildConfigClient: h.buildConfigClient,
secretsClient: h.secretsClient,
instantiator: h.instantiator,
}, nil
}
// NewConnectionOptions identifies the options that should be passed to this hook
func (h *WebHook) NewConnectOptions() (runtime.Object, bool, string) {
return &kapi.PodProxyOptions{}, true, "path"
}
// ConnectMethods returns the supported web hook types.
func (h *WebHook) ConnectMethods() []string {
return []string{"POST"}
}
// WebHookHandler responds to web hook requests from the master.
type WebHookHandler struct {
ctx context.Context
name string
options *kapi.PodProxyOptions
responder rest.Responder
groupVersion schema.GroupVersion
plugins map[string]webhook.Plugin
buildConfigClient buildclienttyped.BuildV1Interface
secretsClient kubetypedclient.SecretsGetter
instantiator client.BuildConfigInstantiator
}
// ServeHTTP implements the standard http.Handler
func (h *WebHookHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if err := h.ProcessWebHook(w, r, h.ctx, h.name, h.options.Path); err != nil {
h.responder.Error(err)
return
}
w.WriteHeader(http.StatusOK)
}
// ProcessWebHook does the actual work of processing the webhook request
func (w *WebHookHandler) ProcessWebHook(writer http.ResponseWriter, req *http.Request, ctx context.Context, name, subpath string) error {
parts := strings.Split(strings.TrimPrefix(subpath, "/"), "/")
if len(parts) != 2 {
return errors.NewBadRequest(fmt.Sprintf("unexpected hook subpath %s", subpath))
}
secret, hookType := parts[0], parts[1]
plugin, ok := w.plugins[hookType]
if !ok {
return errors.NewNotFound(build.Resource("buildconfighook"), hookType)
}
config, err := w.buildConfigClient.BuildConfigs(apirequest.NamespaceValue(ctx)).Get(name, metav1.GetOptions{})
if err != nil {
// clients should not be able to find information about build configs in
// the system unless the config exists and the secret matches
return errors.NewUnauthorized(fmt.Sprintf("the webhook %q for %q did not accept your secret", hookType, name))
}
triggers, err := plugin.GetTriggers(config)
if err != nil {
return errors.NewUnauthorized(fmt.Sprintf("the webhook %q for %q did not accept your secret", hookType, name))
}
glog.V(4).Infof("checking secret for %q webhook trigger of buildconfig %s/%s", hookType, config.Namespace, config.Name)
trigger, err := webhook.CheckSecret(config.Namespace, secret, triggers, w.secretsClient)
if err != nil {
return errors.NewUnauthorized(fmt.Sprintf("the webhook %q for %q did not accept your secret", hookType, name))
}
revision, envvars, dockerStrategyOptions, proceed, err := plugin.Extract(config, trigger, req)
if !proceed {
switch err {
case webhook.ErrSecretMismatch, webhook.ErrHookNotEnabled:
return errors.NewUnauthorized(fmt.Sprintf("the webhook %q for %q did not accept your secret", hookType, name))
case webhook.MethodNotSupported:
return errors.NewMethodNotSupported(build.Resource("buildconfighook"), req.Method)
}
if _, ok := err.(*errors.StatusError); !ok && err != nil {
return errors.NewInternalError(fmt.Errorf("hook failed: %v", err))
}
return err
}
warning := err
buildTriggerCauses := webhook.GenerateBuildTriggerInfo(revision, hookType)
request := &buildv1.BuildRequest{
TriggeredBy: buildTriggerCauses,
ObjectMeta: metav1.ObjectMeta{Name: name},
Revision: revision,
Env: envvars,
DockerStrategyOptions: dockerStrategyOptions,
}
newBuild, err := w.instantiator.Instantiate(config.Namespace, request)
if err != nil {
return errors.NewInternalError(fmt.Errorf("could not generate a build: %v", err))
}
// Send back the build name so that the client can alert the user.
if newBuildEncoded, err := runtime.Encode(webhookEncodingCodecFactory.LegacyCodec(w.groupVersion), newBuild); err != nil {
utilruntime.HandleError(err)
} else {
writer.Write(newBuildEncoded)
}
return warning
}