mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
a51516501c
Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.15.1 to 0.16.0. - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](https://github.com/kubernetes-sigs/controller-runtime/compare/v0.15.1...v0.16.0) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
80 lines
2.8 KiB
Go
80 lines
2.8 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes 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 admission
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
|
"k8s.io/apimachinery/pkg/util/json"
|
|
)
|
|
|
|
// Decoder knows how to decode the contents of an admission
|
|
// request into a concrete object.
|
|
type Decoder struct {
|
|
codecs serializer.CodecFactory
|
|
}
|
|
|
|
// NewDecoder creates a Decoder given the runtime.Scheme.
|
|
func NewDecoder(scheme *runtime.Scheme) *Decoder {
|
|
if scheme == nil {
|
|
panic("scheme should never be nil")
|
|
}
|
|
return &Decoder{codecs: serializer.NewCodecFactory(scheme)}
|
|
}
|
|
|
|
// Decode decodes the inlined object in the AdmissionRequest into the passed-in runtime.Object.
|
|
// If you want decode the OldObject in the AdmissionRequest, use DecodeRaw.
|
|
// It errors out if req.Object.Raw is empty i.e. containing 0 raw bytes.
|
|
func (d *Decoder) Decode(req Request, into runtime.Object) error {
|
|
// we error out if rawObj is an empty object.
|
|
if len(req.Object.Raw) == 0 {
|
|
return fmt.Errorf("there is no content to decode")
|
|
}
|
|
return d.DecodeRaw(req.Object, into)
|
|
}
|
|
|
|
// DecodeRaw decodes a RawExtension object into the passed-in runtime.Object.
|
|
// It errors out if rawObj is empty i.e. containing 0 raw bytes.
|
|
func (d *Decoder) DecodeRaw(rawObj runtime.RawExtension, into runtime.Object) error {
|
|
// NB(directxman12): there's a bug/weird interaction between decoders and
|
|
// the API server where the API server doesn't send a GVK on the embedded
|
|
// objects, which means the unstructured decoder refuses to decode. It
|
|
// also means we can't pass the unstructured directly in, since it'll try
|
|
// and call unstructured's special Unmarshal implementation, which calls
|
|
// back into that same decoder :-/
|
|
// See kubernetes/kubernetes#74373.
|
|
|
|
// we error out if rawObj is an empty object.
|
|
if len(rawObj.Raw) == 0 {
|
|
return fmt.Errorf("there is no content to decode")
|
|
}
|
|
if unstructuredInto, isUnstructured := into.(runtime.Unstructured); isUnstructured {
|
|
// unmarshal into unstructured's underlying object to avoid calling the decoder
|
|
var object map[string]interface{}
|
|
if err := json.Unmarshal(rawObj.Raw, &object); err != nil {
|
|
return err
|
|
}
|
|
unstructuredInto.SetUnstructuredContent(object)
|
|
return nil
|
|
}
|
|
|
|
deserializer := d.codecs.UniversalDeserializer()
|
|
return runtime.DecodeInto(deserializer, rawObj.Raw, into)
|
|
}
|