2017-02-01 00:45:59 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 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 clusterrolebinding
|
|
|
|
|
|
|
|
import (
|
2017-02-03 13:41:32 +00:00
|
|
|
metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
|
2017-02-01 00:45:59 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/watch"
|
2017-02-03 13:41:32 +00:00
|
|
|
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
|
2017-02-01 00:45:59 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/apis/rbac"
|
2017-02-03 13:41:32 +00:00
|
|
|
"k8s.io/kubernetes/pkg/genericapiserver/registry/rest"
|
2017-02-01 00:45:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Registry is an interface for things that know how to store ClusterRoleBindings.
|
|
|
|
type Registry interface {
|
2017-02-03 13:41:32 +00:00
|
|
|
ListClusterRoleBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*rbac.ClusterRoleBindingList, error)
|
2017-02-01 00:45:59 +00:00
|
|
|
CreateClusterRoleBinding(ctx genericapirequest.Context, clusterRoleBinding *rbac.ClusterRoleBinding) error
|
|
|
|
UpdateClusterRoleBinding(ctx genericapirequest.Context, clusterRoleBinding *rbac.ClusterRoleBinding) error
|
|
|
|
GetClusterRoleBinding(ctx genericapirequest.Context, name string, options *metav1.GetOptions) (*rbac.ClusterRoleBinding, error)
|
|
|
|
DeleteClusterRoleBinding(ctx genericapirequest.Context, name string) error
|
2017-02-03 13:41:32 +00:00
|
|
|
WatchClusterRoleBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error)
|
2017-02-01 00:45:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// storage puts strong typing around storage calls
|
|
|
|
type storage struct {
|
|
|
|
rest.StandardStorage
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewRegistry returns a new Registry interface for the given Storage. Any mismatched
|
|
|
|
// types will panic.
|
|
|
|
func NewRegistry(s rest.StandardStorage) Registry {
|
|
|
|
return &storage{s}
|
|
|
|
}
|
|
|
|
|
2017-02-03 13:41:32 +00:00
|
|
|
func (s *storage) ListClusterRoleBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*rbac.ClusterRoleBindingList, error) {
|
2017-02-01 00:45:59 +00:00
|
|
|
obj, err := s.List(ctx, options)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj.(*rbac.ClusterRoleBindingList), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *storage) CreateClusterRoleBinding(ctx genericapirequest.Context, clusterRoleBinding *rbac.ClusterRoleBinding) error {
|
|
|
|
_, err := s.Create(ctx, clusterRoleBinding)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *storage) UpdateClusterRoleBinding(ctx genericapirequest.Context, clusterRoleBinding *rbac.ClusterRoleBinding) error {
|
|
|
|
_, _, err := s.Update(ctx, clusterRoleBinding.Name, rest.DefaultUpdatedObjectInfo(clusterRoleBinding, api.Scheme))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-02-03 13:41:32 +00:00
|
|
|
func (s *storage) WatchClusterRoleBindings(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error) {
|
2017-02-01 00:45:59 +00:00
|
|
|
return s.Watch(ctx, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *storage) GetClusterRoleBinding(ctx genericapirequest.Context, name string, options *metav1.GetOptions) (*rbac.ClusterRoleBinding, error) {
|
|
|
|
obj, err := s.Get(ctx, name, options)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return obj.(*rbac.ClusterRoleBinding), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *storage) DeleteClusterRoleBinding(ctx genericapirequest.Context, name string) error {
|
|
|
|
_, err := s.Delete(ctx, name, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthorizerAdapter adapts the registry to the authorizer interface
|
|
|
|
type AuthorizerAdapter struct {
|
|
|
|
Registry Registry
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a AuthorizerAdapter) ListClusterRoleBindings() ([]*rbac.ClusterRoleBinding, error) {
|
2017-02-03 13:41:32 +00:00
|
|
|
list, err := a.Registry.ListClusterRoleBindings(genericapirequest.NewContext(), &metainternalversion.ListOptions{})
|
2017-02-01 00:45:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := []*rbac.ClusterRoleBinding{}
|
|
|
|
for i := range list.Items {
|
|
|
|
ret = append(ret, &list.Items[i])
|
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|