forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registry.go
71 lines (61 loc) · 2.1 KB
/
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
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
package oauthauthorizetoken
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/rest"
"github.com/openshift/origin/pkg/oauth/api"
)
// Registry is an interface for things that know how to store AuthorizeToken objects.
type Registry interface {
// ListAuthorizeTokens obtains a list of authorize tokens that match a selector.
ListAuthorizeTokens(ctx kapi.Context, options *kapi.ListOptions) (*api.OAuthAuthorizeTokenList, error)
// GetAuthorizeToken retrieves a specific authorize token.
GetAuthorizeToken(ctx kapi.Context, name string) (*api.OAuthAuthorizeToken, error)
// CreateAuthorizeToken creates a new authorize token.
CreateAuthorizeToken(ctx kapi.Context, token *api.OAuthAuthorizeToken) (*api.OAuthAuthorizeToken, error)
// DeleteAuthorizeToken deletes an authorize token.
DeleteAuthorizeToken(ctx kapi.Context, name string) error
}
// Storage is an interface for a standard REST Storage backend
type Storage interface {
rest.Getter
rest.Lister
rest.Creater
rest.GracefulDeleter
}
// 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) ListAuthorizeTokens(ctx kapi.Context, options *kapi.ListOptions) (*api.OAuthAuthorizeTokenList, error) {
obj, err := s.List(ctx, options)
if err != nil {
return nil, err
}
return obj.(*api.OAuthAuthorizeTokenList), nil
}
func (s *storage) GetAuthorizeToken(ctx kapi.Context, name string) (*api.OAuthAuthorizeToken, error) {
obj, err := s.Get(ctx, name)
if err != nil {
return nil, err
}
return obj.(*api.OAuthAuthorizeToken), nil
}
func (s *storage) CreateAuthorizeToken(ctx kapi.Context, token *api.OAuthAuthorizeToken) (*api.OAuthAuthorizeToken, error) {
obj, err := s.Create(ctx, token)
if err != nil {
return nil, err
}
return obj.(*api.OAuthAuthorizeToken), nil
}
func (s *storage) DeleteAuthorizeToken(ctx kapi.Context, name string) error {
_, err := s.Delete(ctx, name, nil)
if err != nil {
return err
}
return nil
}