forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strategy.go
87 lines (70 loc) · 2.54 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
package identity
import (
"fmt"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/runtime"
kstorage "k8s.io/kubernetes/pkg/storage"
"k8s.io/kubernetes/pkg/util/validation/field"
"github.com/openshift/origin/pkg/user/api"
"github.com/openshift/origin/pkg/user/api/validation"
)
// identityStrategy implements behavior for Identities
type identityStrategy struct {
runtime.ObjectTyper
}
// Strategy is the default logic that applies when creating and updating Identity
// objects via the REST API.
var Strategy = identityStrategy{kapi.Scheme}
func (identityStrategy) PrepareForUpdate(ctx kapi.Context, obj, old runtime.Object) {}
// NamespaceScoped is false for users
func (identityStrategy) NamespaceScoped() bool {
return false
}
func (identityStrategy) GenerateName(base string) string {
return base
}
func (identityStrategy) PrepareForCreate(ctx kapi.Context, obj runtime.Object) {
identity := obj.(*api.Identity)
identity.Name = identityName(identity.ProviderName, identity.ProviderUserName)
}
// Validate validates a new user
func (identityStrategy) Validate(ctx kapi.Context, obj runtime.Object) field.ErrorList {
identity := obj.(*api.Identity)
return validation.ValidateIdentity(identity)
}
// AllowCreateOnUpdate is false for identity
func (identityStrategy) AllowCreateOnUpdate() bool {
return false
}
func (identityStrategy) AllowUnconditionalUpdate() bool {
return false
}
// Canonicalize normalizes the object after validation.
func (identityStrategy) Canonicalize(obj runtime.Object) {
}
// ValidateUpdate is the default update validation for an identity
func (identityStrategy) ValidateUpdate(ctx kapi.Context, obj, old runtime.Object) field.ErrorList {
return validation.ValidateIdentityUpdate(obj.(*api.Identity), old.(*api.Identity))
}
// GetAttrs returns labels and fields of a given object for filtering purposes
func GetAttrs(o runtime.Object) (labels.Set, fields.Set, error) {
obj, ok := o.(*api.Identity)
if !ok {
return nil, nil, fmt.Errorf("not an Identity")
}
return labels.Set(obj.Labels), SelectableFields(obj), nil
}
// Matcher returns a generic matcher for a given label and field selector.
func Matcher(label labels.Selector, field fields.Selector) kstorage.SelectionPredicate {
return kstorage.SelectionPredicate{
Label: label,
Field: field,
GetAttrs: GetAttrs,
}
}
// SelectableFields returns a field set that can be used for filter selection
func SelectableFields(obj *api.Identity) fields.Set {
return api.IdentityToSelectableFields(obj)
}