forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#4419 from smarterclayton/expand_generic…
…_resources Expand the generic registry
- Loading branch information
Showing
22 changed files
with
478 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
Copyright 2014 Google Inc. 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 | ||
http://www.apache.org/licenses/LICENSE-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 OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package rest | ||
|
||
import ( | ||
"github.com/GoogleCloudPlatform/kubernetes/pkg/api" | ||
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors" | ||
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime" | ||
) | ||
|
||
// RESTUpdateStrategy defines the minimum validation, accepted input, and | ||
// name generation behavior to update an object that follows Kubernetes | ||
// API conventions. A resource may have many UpdateStrategies, depending on | ||
// the call pattern in use. | ||
type RESTUpdateStrategy interface { | ||
runtime.ObjectTyper | ||
// NamespaceScoped returns true if the object must be within a namespace. | ||
NamespaceScoped() bool | ||
// AllowCreateOnUpdate returns true if the object can be created by a PUT. | ||
AllowCreateOnUpdate() bool | ||
// ValidateUpdate is invoked after default fields in the object have been filled in before | ||
// the object is persisted. | ||
ValidateUpdate(obj, old runtime.Object) errors.ValidationErrorList | ||
} | ||
|
||
// BeforeUpdate ensures that common operations for all resources are performed on update. It only returns | ||
// errors that can be converted to api.Status. It will invoke update validation with the provided existing | ||
// and updated objects. | ||
func BeforeUpdate(strategy RESTUpdateStrategy, ctx api.Context, obj, old runtime.Object) error { | ||
objectMeta, kind, kerr := objectMetaAndKind(strategy, obj) | ||
if kerr != nil { | ||
return kerr | ||
} | ||
if strategy.NamespaceScoped() { | ||
if !api.ValidNamespace(ctx, objectMeta) { | ||
return errors.NewBadRequest("the namespace of the provided object does not match the namespace sent on the request") | ||
} | ||
} else { | ||
objectMeta.Namespace = api.NamespaceNone | ||
} | ||
if errs := strategy.ValidateUpdate(obj, old); len(errs) > 0 { | ||
return errors.NewInvalid(kind, objectMeta.Name, errs) | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.