-
Notifications
You must be signed in to change notification settings - Fork 334
/
strategy.go
133 lines (112 loc) · 4.44 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
/*
* 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 category
import (
"context"
"fmt"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apiserver/pkg/registry/generic"
"tkestack.io/tke/pkg/apiserver/authentication"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/apiserver/pkg/registry/rest"
"k8s.io/apiserver/pkg/storage/names"
"tkestack.io/tke/api/auth"
namesutil "tkestack.io/tke/pkg/util/names"
)
// Strategy implements verification logic for oidc api signing key.
type Strategy struct {
runtime.ObjectTyper
names.NameGenerator
}
// NewStrategy creates a strategy that is the default logic that applies when
// creating and updating api signing key objects.
func NewStrategy() *Strategy {
return &Strategy{auth.Scheme, namesutil.Generator}
}
// 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 (Strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}
// NamespaceScoped is false for category.
func (Strategy) NamespaceScoped() bool {
return false
}
// PrepareForCreate is invoked on create before validation to normalize
// the object.
func (Strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
category, _ := obj.(*auth.Category)
if category.Name == "" && category.GenerateName == "" {
category.GenerateName = "cat-"
}
}
// Validate validates a new api signing key.
func (Strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
_, tenantID := authentication.UsernameAndTenantID(ctx)
if tenantID != "" {
return field.ErrorList{field.Forbidden(field.NewPath(""), "Please contact admin to create category")}
}
return ValidateCategory(obj.(*auth.Category))
}
// AllowCreateOnUpdate is false for api signing key.
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) {
}
// GetAttrs returns labels and fields of a given object for filtering purposes.
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
category, ok := obj.(*auth.Category)
if !ok {
return nil, nil, fmt.Errorf("not a category")
}
return labels.Set(category.ObjectMeta.Labels), ToSelectableFields(category), nil
}
// ToSelectableFields returns a field set that represents the object
func ToSelectableFields(category *auth.Category) fields.Set {
objectMetaFieldsSet := generic.ObjectMetaFieldsSet(&category.ObjectMeta, false)
specificFieldsSet := fields.Set{}
return generic.MergeFieldsSets(objectMetaFieldsSet, specificFieldsSet)
}
// ValidateUpdate is the default update validation for a api signing key.
func (Strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
_, tenantID := authentication.UsernameAndTenantID(ctx)
if tenantID != "" {
return field.ErrorList{field.Forbidden(field.NewPath(""), "Please contact admin to update category")}
}
return ValidateCategoryUpdate(obj.(*auth.Category), old.(*auth.Category))
}
// WarningsOnUpdate returns warnings for the given update.
func (Strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
return nil
}