forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
registry.go
36 lines (30 loc) · 928 Bytes
/
registry.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
package imagestreamimage
import (
"github.com/openshift/origin/pkg/image/api"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/rest"
)
// Registry is an interface for things that know how to store ImageStreamImage objects.
type Registry interface {
GetImageStreamImage(ctx kapi.Context, nameAndTag string) (*api.ImageStreamImage, error)
}
// Storage is an interface for a standard REST Storage backend
type Storage interface {
rest.Getter
}
// storage puts strong typing around storage calls
type storage struct {
Storage
}
// NewRegistry returns a new Registry interface for the given Storage. Any mismatched
// types will panic.
func NewRegistry(s Storage) Registry {
return &storage{s}
}
func (s *storage) GetImageStreamImage(ctx kapi.Context, name string) (*api.ImageStreamImage, error) {
obj, err := s.Get(ctx, name)
if err != nil {
return nil, err
}
return obj.(*api.ImageStreamImage), nil
}