-
Notifications
You must be signed in to change notification settings - Fork 334
/
strategy.go
245 lines (208 loc) · 8.77 KB
/
strategy.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
* Tencent is pleased to support the open source community by making TKEStack
* available.
*
* Copyright (C) 2012-2019 Tencent. 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
*
* https://opensource.org/licenses/Apache-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 OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package localidentity
import (
"context"
"fmt"
"github.com/casbin/casbin/v2"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/apiserver/pkg/registry/generic"
"k8s.io/apiserver/pkg/registry/generic/registry"
"k8s.io/apiserver/pkg/registry/rest"
"k8s.io/apiserver/pkg/storage"
"k8s.io/apiserver/pkg/storage/names"
"tkestack.io/tke/api/auth"
authinternalclient "tkestack.io/tke/api/client/clientset/internalversion/typed/auth/internalversion"
"tkestack.io/tke/pkg/apiserver/authentication"
"tkestack.io/tke/pkg/auth/util"
"tkestack.io/tke/pkg/util/log"
namesutil "tkestack.io/tke/pkg/util/names"
)
// Strategy implements verification logic for oidc identity.
type Strategy struct {
runtime.ObjectTyper
names.NameGenerator
authClient authinternalclient.AuthInterface
enforcer *casbin.SyncedEnforcer
}
// NewStrategy creates a strategy that is the default logic that applies when
// creating and updating identity objects.
func NewStrategy(authClient authinternalclient.AuthInterface, enforcer *casbin.SyncedEnforcer) *Strategy {
return &Strategy{auth.Scheme, namesutil.Generator, authClient, enforcer}
}
// DefaultGarbageCollectionPolicy returns the default garbage collection behavior.
func (Strategy) DefaultGarbageCollectionPolicy(ctx context.Context) rest.GarbageCollectionPolicy {
return rest.Unsupported
}
// PrepareForUpdate is invoked on update before validation to normalize the
// object.
func (s *Strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
oldLocalIdentity := old.(*auth.LocalIdentity)
localIdentity, _ := obj.(*auth.LocalIdentity)
_, tenantID := authentication.UsernameAndTenantID(ctx)
if len(tenantID) != 0 {
if oldLocalIdentity.Spec.TenantID != tenantID {
log.Panic("Unauthorized update local identity information", log.String("oldTenantID", oldLocalIdentity.Spec.TenantID), log.String("newTenantID", localIdentity.Spec.TenantID), log.String("userTenantID", tenantID))
}
localIdentity.Spec.TenantID = tenantID
}
localIdentity.Status.LastUpdateTime = metav1.Now()
_ = util.HandleUserPoliciesUpdate(ctx, s.authClient, s.enforcer, localIdentity)
}
// NamespaceScoped is false for identities.
func (Strategy) NamespaceScoped() bool {
return false
}
// Export strips fields that can not be set by the user.
func (Strategy) Export(ctx context.Context, obj runtime.Object, exact bool) error {
return nil
}
// PrepareForCreate is invoked on create before validation to normalize
// the object.
func (Strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
localIdentity, _ := obj.(*auth.LocalIdentity)
_, tenantID := authentication.UsernameAndTenantID(ctx)
if len(tenantID) != 0 {
localIdentity.Spec.TenantID = tenantID
}
if localIdentity.Name == "" && localIdentity.GenerateName == "" {
localIdentity.GenerateName = "usr-"
}
localIdentity.Spec.Finalizers = []auth.FinalizerName{
auth.LocalIdentityFinalize,
}
}
// Validate validates a new identity.
func (s *Strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
return ValidateLocalIdentity(ctx, s.authClient, obj.(*auth.LocalIdentity), false)
}
// AllowCreateOnUpdate is false for identities.
func (Strategy) AllowCreateOnUpdate() bool {
return false
}
// AllowUnconditionalUpdate returns true if the object can be updated
// unconditionally (irrespective of the latest resource version), when there is
// no resource version specified in the object.
func (Strategy) AllowUnconditionalUpdate() bool {
return false
}
// WarningsOnCreate returns warnings for the creation of the given object.
func (Strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
return nil
}
// Canonicalize normalizes the object after validation.
func (Strategy) Canonicalize(obj runtime.Object) {
}
// ValidateUpdate is the default update validation for an identity.
func (s *Strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
return ValidateLocalIdentityUpdate(ctx, s.authClient, obj.(*auth.LocalIdentity), old.(*auth.LocalIdentity))
}
// WarningsOnUpdate returns warnings for the given update.
func (Strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
return nil
}
// GetAttrs returns labels and fields of a given object for filtering purposes.
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
localIdentity, ok := obj.(*auth.LocalIdentity)
if !ok {
return nil, nil, fmt.Errorf("not a localIdentity")
}
return localIdentity.ObjectMeta.Labels, ToSelectableFields(localIdentity), nil
}
// MatchLocalIdentity returns a generic matcher for a given label and field selector.
func MatchLocalIdentity(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
return storage.SelectionPredicate{
Label: label,
Field: field,
GetAttrs: GetAttrs,
IndexFields: []string{
"spec.tenantID",
"spec.username",
},
}
}
// ToSelectableFields returns a field set that represents the object
func ToSelectableFields(localIdentity *auth.LocalIdentity) fields.Set {
objectMetaFieldsSet := generic.ObjectMetaFieldsSet(&localIdentity.ObjectMeta, false)
specificFieldsSet := fields.Set{
"spec.tenantID": localIdentity.Spec.TenantID,
"spec.username": localIdentity.Spec.Username,
}
return generic.MergeFieldsSets(objectMetaFieldsSet, specificFieldsSet)
}
func ShouldDeleteDuringUpdate(ctx context.Context, key string, obj, existing runtime.Object) bool {
localIdentity, ok := obj.(*auth.LocalIdentity)
if !ok {
log.Errorf("unexpected object, key:%s", key)
return false
}
return len(localIdentity.Spec.Finalizers) == 0 && registry.ShouldDeleteDuringUpdate(ctx, key, obj, existing)
}
// StatusStrategy implements verification logic for status of Registry.
type StatusStrategy struct {
*Strategy
}
var _ rest.RESTUpdateStrategy = &StatusStrategy{}
// NewStatusStrategy create the StatusStrategy object by given strategy.
func NewStatusStrategy(strategy *Strategy) *StatusStrategy {
return &StatusStrategy{strategy}
}
// PrepareForUpdate is invoked on update before validation to normalize
// the object. For example: remove fields that are not to be persisted,
// sort order-insensitive list fields, etc. This should not remove fields
// whose presence would be considered a validation error.
func (StatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
newLocalIdentity := obj.(*auth.LocalIdentity)
oldLocalIdentity := old.(*auth.LocalIdentity)
newLocalIdentity.Spec = oldLocalIdentity.Spec
newLocalIdentity.Status.LastUpdateTime = metav1.Now()
}
// ValidateUpdate is invoked after default fields in the object have been
// filled in before the object is persisted. This method should not mutate
// the object.
func (StatusStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
return field.ErrorList{}
}
// FinalizeStrategy implements finalizer logic for Machine.
type FinalizeStrategy struct {
*Strategy
}
var _ rest.RESTUpdateStrategy = &FinalizeStrategy{}
// NewFinalizerStrategy create the FinalizeStrategy object by given strategy.
func NewFinalizerStrategy(strategy *Strategy) *FinalizeStrategy {
return &FinalizeStrategy{strategy}
}
// PrepareForUpdate is invoked on update before validation to normalize
// the object. For example: remove fields that are not to be persisted,
// sort order-insensitive list fields, etc. This should not remove fields
// whose presence would be considered a validation error.
func (FinalizeStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
newPolicy := obj.(*auth.LocalIdentity)
oldPolicy := old.(*auth.LocalIdentity)
newPolicy.Status = oldPolicy.Status
}
// ValidateUpdate is invoked after default fields in the object have been
// filled in before the object is persisted. This method should not mutate
// the object.
func (s *FinalizeStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
return ValidateLocalIdentityUpdate(ctx, s.authClient, obj.(*auth.LocalIdentity), old.(*auth.LocalIdentity))
}