forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrategy.go
65 lines (49 loc) · 1.81 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
package group
import (
"context"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/apiserver/pkg/registry/rest"
"k8s.io/kubernetes/pkg/api/legacyscheme"
userapi "github.com/openshift/origin/pkg/user/apis/user"
"github.com/openshift/origin/pkg/user/apis/user/validation"
)
// groupStrategy implements behavior for Groups
type groupStrategy struct {
runtime.ObjectTyper
}
// Strategy is the default logic that applies when creating and updating Group
// objects via the REST API.
var Strategy = groupStrategy{legacyscheme.Scheme}
var _ rest.GarbageCollectionDeleteStrategy = groupStrategy{}
func (groupStrategy) DefaultGarbageCollectionPolicy(ctx context.Context) rest.GarbageCollectionPolicy {
return rest.Unsupported
}
func (groupStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}
// NamespaceScoped is false for groups
func (groupStrategy) NamespaceScoped() bool {
return false
}
func (groupStrategy) GenerateName(base string) string {
return base
}
func (groupStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
}
// Validate validates a new group
func (groupStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
return validation.ValidateGroup(obj.(*userapi.Group))
}
// AllowCreateOnUpdate is false for groups
func (groupStrategy) AllowCreateOnUpdate() bool {
return false
}
func (groupStrategy) AllowUnconditionalUpdate() bool {
return false
}
// Canonicalize normalizes the object after validation.
func (groupStrategy) Canonicalize(obj runtime.Object) {
}
// ValidateUpdate is the default update validation for an end group.
func (groupStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
return validation.ValidateGroupUpdate(obj.(*userapi.Group), old.(*userapi.Group))
}