2014-10-09 22:21:44 +00:00
|
|
|
/*
|
|
|
|
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 event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
2014-11-14 04:20:42 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/validation"
|
2014-10-09 22:21:44 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/apiserver"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/registry/generic"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
|
|
|
|
)
|
|
|
|
|
|
|
|
// REST adapts an event registry into apiserver's RESTStorage model.
|
|
|
|
type REST struct {
|
|
|
|
registry generic.Registry
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewREST returns a new REST. You must use a registry created by
|
|
|
|
// NewEtcdRegistry unless you're testing.
|
|
|
|
func NewREST(registry generic.Registry) *REST {
|
|
|
|
return &REST{
|
|
|
|
registry: registry,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-24 17:16:02 +00:00
|
|
|
func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error) {
|
2014-10-09 22:21:44 +00:00
|
|
|
event, ok := obj.(*api.Event)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("invalid object type")
|
|
|
|
}
|
2014-11-14 04:20:42 +00:00
|
|
|
if api.Namespace(ctx) != "" {
|
|
|
|
if !api.ValidNamespace(ctx, &event.ObjectMeta) {
|
|
|
|
return nil, errors.NewConflict("event", event.Namespace, fmt.Errorf("event.namespace does not match the provided context"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if errs := validation.ValidateEvent(event); len(errs) > 0 {
|
|
|
|
return nil, errors.NewInvalid("event", event.Name, errs)
|
|
|
|
}
|
2014-11-12 21:27:10 +00:00
|
|
|
api.FillObjectMetaSystemFields(ctx, &event.ObjectMeta)
|
2014-10-09 22:21:44 +00:00
|
|
|
|
|
|
|
return apiserver.MakeAsync(func() (runtime.Object, error) {
|
2014-10-22 17:02:02 +00:00
|
|
|
err := rs.registry.Create(ctx, event.Name, event)
|
2014-10-09 22:21:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-10-22 17:02:02 +00:00
|
|
|
return rs.registry.Get(ctx, event.Name)
|
2014-10-09 22:21:44 +00:00
|
|
|
}), nil
|
|
|
|
}
|
|
|
|
|
2014-10-24 17:16:02 +00:00
|
|
|
func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error) {
|
2014-10-09 22:21:44 +00:00
|
|
|
obj, err := rs.registry.Get(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
_, ok := obj.(*api.Event)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("invalid object type")
|
|
|
|
}
|
|
|
|
return apiserver.MakeAsync(func() (runtime.Object, error) {
|
|
|
|
return &api.Status{Status: api.StatusSuccess}, rs.registry.Delete(ctx, id)
|
|
|
|
}), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error) {
|
|
|
|
obj, err := rs.registry.Get(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
event, ok := obj.(*api.Event)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("invalid object type")
|
|
|
|
}
|
|
|
|
return event, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rs *REST) getAttrs(obj runtime.Object) (objLabels, objFields labels.Set, err error) {
|
|
|
|
event, ok := obj.(*api.Event)
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, fmt.Errorf("invalid object type")
|
|
|
|
}
|
2014-11-11 01:46:40 +00:00
|
|
|
// TODO: internal version leaks through here. This should be versioned.
|
2014-10-09 22:21:44 +00:00
|
|
|
return labels.Set{}, labels.Set{
|
2014-10-10 22:46:30 +00:00
|
|
|
"involvedObject.kind": event.InvolvedObject.Kind,
|
2014-11-11 01:46:40 +00:00
|
|
|
"involvedObject.namespace": event.InvolvedObject.Namespace,
|
2014-10-10 22:46:30 +00:00
|
|
|
"involvedObject.name": event.InvolvedObject.Name,
|
|
|
|
"involvedObject.uid": event.InvolvedObject.UID,
|
|
|
|
"involvedObject.apiVersion": event.InvolvedObject.APIVersion,
|
|
|
|
"involvedObject.resourceVersion": fmt.Sprintf("%s", event.InvolvedObject.ResourceVersion),
|
|
|
|
"involvedObject.fieldPath": event.InvolvedObject.FieldPath,
|
|
|
|
"status": event.Status,
|
|
|
|
"reason": event.Reason,
|
2014-11-11 01:46:40 +00:00
|
|
|
"source": event.Source,
|
2014-10-09 22:21:44 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error) {
|
|
|
|
return rs.registry.List(ctx, &generic.SelectionPredicate{label, field, rs.getAttrs})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch returns Events events via a watch.Interface.
|
|
|
|
// It implements apiserver.ResourceWatcher.
|
2014-11-12 21:30:13 +00:00
|
|
|
func (rs *REST) Watch(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error) {
|
2014-10-09 22:21:44 +00:00
|
|
|
return rs.registry.Watch(ctx, &generic.SelectionPredicate{label, field, rs.getAttrs}, resourceVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new api.Event
|
|
|
|
func (*REST) New() runtime.Object {
|
|
|
|
return &api.Event{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update returns an error: Events are not mutable.
|
2014-10-24 17:16:02 +00:00
|
|
|
func (rs *REST) Update(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error) {
|
2014-10-09 22:21:44 +00:00
|
|
|
return nil, fmt.Errorf("not allowed: 'Event' objects are not mutable")
|
|
|
|
}
|