forked from projectcalico/calico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.go
136 lines (116 loc) · 4.58 KB
/
storage.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
// Copyright (c) 2021 Tigera, Inc. All rights reserved.
//
// 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 globalpolicy
import (
"context"
calico "github.com/projectcalico/api/pkg/apis/projectcalico/v3"
"github.com/dtest11/calico/apiserver/pkg/registry/projectcalico/server"
"k8s.io/apimachinery/pkg/api/meta"
metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/watch"
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/apiserver/pkg/registry/generic/registry"
genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
"k8s.io/apiserver/pkg/registry/rest"
)
// rest implements a RESTStorage for API services against etcd
type REST struct {
*genericregistry.Store
shortNames []string
}
// EmptyObject returns an empty instance
func EmptyObject() runtime.Object {
return &calico.GlobalNetworkPolicy{}
}
// NewList returns a new shell of a binding list
func NewList() runtime.Object {
return &calico.GlobalNetworkPolicyList{}
}
// NewREST returns a RESTStorage object that will work against API services.
func NewREST(scheme *runtime.Scheme, opts server.Options) (*REST, error) {
strategy := NewStrategy(scheme)
prefix := "/" + opts.ResourcePrefix()
// We adapt the store's keyFunc so that we can use it with the StorageDecorator
// without making any assumptions about where objects are stored in etcd
keyFunc := func(obj runtime.Object) (string, error) {
accessor, err := meta.Accessor(obj)
if err != nil {
return "", err
}
return registry.NoNamespaceKeyFunc(
genericapirequest.NewContext(),
prefix,
accessor.GetName(),
)
}
storageInterface, dFunc, err := opts.GetStorage(
prefix,
keyFunc,
strategy,
func() runtime.Object { return &calico.GlobalNetworkPolicy{} },
func() runtime.Object { return &calico.GlobalNetworkPolicyList{} },
GetAttrs,
nil,
nil,
)
if err != nil {
return nil, err
}
store := &genericregistry.Store{
NewFunc: func() runtime.Object { return &calico.GlobalNetworkPolicy{} },
NewListFunc: func() runtime.Object { return &calico.GlobalNetworkPolicyList{} },
KeyRootFunc: opts.KeyRootFunc(false),
KeyFunc: opts.KeyFunc(false),
ObjectNameFunc: func(obj runtime.Object) (string, error) {
return obj.(*calico.GlobalNetworkPolicy).Name, nil
},
PredicateFunc: MatchPolicy,
DefaultQualifiedResource: calico.Resource("globalnetworkpolicies"),
CreateStrategy: strategy,
UpdateStrategy: strategy,
DeleteStrategy: strategy,
EnableGarbageCollection: true,
Storage: storageInterface,
DestroyFunc: dFunc,
}
return &REST{store, opts.ShortNames}, nil
}
func (r *REST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
return r.Store.List(ctx, options)
}
func (r *REST) Create(ctx context.Context, obj runtime.Object, val rest.ValidateObjectFunc, createOpt *metav1.CreateOptions) (runtime.Object, error) {
return r.Store.Create(ctx, obj, val, createOpt)
}
func (r *REST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc,
updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error) {
return r.Store.Update(ctx, name, objInfo, createValidation, updateValidation, forceAllowCreate, options)
}
// Get retrieves the item from storage.
func (r *REST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
return r.Store.Get(ctx, name, options)
}
func (r *REST) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
return r.Store.Delete(ctx, name, deleteValidation, options)
}
func (r *REST) Watch(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error) {
return r.Store.Watch(ctx, options)
}
func (r *REST) ShortNames() []string {
return r.shortNames
}
func (r *REST) Categories() []string {
return []string{""}
}