This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
strategy.go
79 lines (65 loc) · 2.43 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
package oauthclientauthorization
import (
"fmt"
"github.com/openshift/origin/pkg/oauth/api"
"github.com/openshift/origin/pkg/oauth/api/validation"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/registry/generic"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/util/validation/field"
)
// strategy implements behavior for OAuthClientAuthorization objects
type strategy struct {
runtime.ObjectTyper
}
// Strategy is the default logic that applies when creating or updating OAuthClientAuthorization objects
// objects via the REST API.
var Strategy = strategy{kapi.Scheme}
func (strategy) PrepareForUpdate(obj, old runtime.Object) {
auth := obj.(*api.OAuthClientAuthorization)
auth.Name = fmt.Sprintf("%s:%s", auth.UserName, auth.ClientName)
}
// NamespaceScoped is false for OAuth objects
func (strategy) NamespaceScoped() bool {
return false
}
func (strategy) GenerateName(base string) string {
return base
}
func (strategy) PrepareForCreate(obj runtime.Object) {
auth := obj.(*api.OAuthClientAuthorization)
auth.Name = fmt.Sprintf("%s:%s", auth.UserName, auth.ClientName)
}
// Canonicalize normalizes the object after validation.
func (strategy) Canonicalize(obj runtime.Object) {
}
// Validate validates a new client
func (strategy) Validate(ctx kapi.Context, obj runtime.Object) field.ErrorList {
auth := obj.(*api.OAuthClientAuthorization)
return validation.ValidateClientAuthorization(auth)
}
// ValidateUpdate validates a client auth update
func (strategy) ValidateUpdate(ctx kapi.Context, obj runtime.Object, old runtime.Object) field.ErrorList {
clientAuth := obj.(*api.OAuthClientAuthorization)
oldClientAuth := old.(*api.OAuthClientAuthorization)
return validation.ValidateClientAuthorizationUpdate(clientAuth, oldClientAuth)
}
func (strategy) AllowCreateOnUpdate() bool {
return true
}
func (strategy) AllowUnconditionalUpdate() bool {
return false
}
// Matchtoken returns a generic matcher for a given label and field selector.
func Matcher(label labels.Selector, field fields.Selector) generic.Matcher {
return generic.MatcherFunc(func(obj runtime.Object) (bool, error) {
clientObj, ok := obj.(*api.OAuthClientAuthorization)
if !ok {
return false, fmt.Errorf("not a client authorization")
}
fields := api.OAuthClientAuthorizationToSelectableFields(clientObj)
return label.Matches(labels.Set(clientObj.Labels)) && field.Matches(fields), nil
})
}