pipeline/pkg/reconciler/taskrun/resources/cloudevent/cloudeventclient.go
Vincent Demeester e2aa335ec7 Refactor reconciler package to not reference api version
The reconciler package might use support an api version or more, but
should be itseslf under an api version package. Only the types need to be.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
2019-08-19 11:07:59 -05:00

53 lines
1.5 KiB
Go

/*
Copyright 2019 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cloudevent
import (
"context"
rest "k8s.io/client-go/rest"
"knative.dev/eventing-contrib/pkg/kncloudevents"
injection "knative.dev/pkg/injection"
logging "knative.dev/pkg/logging"
)
func init() {
injection.Default.RegisterClient(withCloudEventClient)
}
// CECKey is used to associate the CloudEventClient inside the context.Context
type CECKey struct{}
func withCloudEventClient(ctx context.Context, cfg *rest.Config) context.Context {
cloudEventClient, err := kncloudevents.NewDefaultClient()
if err != nil {
// If we cannot setup a client, die
panic(err)
}
return context.WithValue(ctx, CECKey{}, cloudEventClient)
}
// Get extracts the cloudEventClient client from the context.
func Get(ctx context.Context) CEClient {
untyped := ctx.Value(CECKey{})
if untyped == nil {
logging.FromContext(ctx).Fatalf(
"Unable to fetch %T from context.", (CEClient)(nil))
}
return untyped.(CEClient)
}