-
Notifications
You must be signed in to change notification settings - Fork 53
/
metadata.go
130 lines (105 loc) · 2.96 KB
/
metadata.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package v1
import (
"context"
"fmt"
"time"
"google.golang.org/protobuf/types/known/timestamppb"
)
type Capability[T any] interface {
Comparator[T]
fmt.Stringer
}
type MetadataAccessor[T Capability[T]] interface {
GetCapabilities() []T
SetCapabilities(capabilities []T)
GetLabels() map[string]string
SetLabels(labels map[string]string)
GetResourceVersion() string
SetResourceVersion(version string)
}
type IdReader interface {
GetId() string
}
type LabelReader interface {
GetLabels() map[string]string
}
type IdLabelReader interface {
IdReader
LabelReader
}
func (t *BootstrapToken) GetCapabilities() []*TokenCapability {
return t.GetMetadata().GetCapabilities()
}
func (t *BootstrapToken) SetCapabilities(capabilities []*TokenCapability) {
if t.Metadata == nil {
t.Metadata = &BootstrapTokenMetadata{}
}
t.Metadata.Capabilities = capabilities
}
func (t *BootstrapToken) GetLabels() map[string]string {
return t.GetMetadata().GetLabels()
}
func (t *BootstrapToken) SetLabels(labels map[string]string) {
if t.Metadata == nil {
t.Metadata = &BootstrapTokenMetadata{}
}
t.Metadata.Labels = labels
}
func (t *BootstrapToken) GetResourceVersion() string {
return t.GetMetadata().GetResourceVersion()
}
func (t *BootstrapToken) SetResourceVersion(version string) {
if t.Metadata == nil {
t.Metadata = &BootstrapTokenMetadata{}
}
t.Metadata.ResourceVersion = version
}
func (c *Cluster) GetCapabilities() []*ClusterCapability {
return c.GetMetadata().GetCapabilities()
}
func (c *Cluster) SetCapabilities(capabilities []*ClusterCapability) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.Capabilities = capabilities
}
func (c *Cluster) GetLabels() map[string]string {
return c.GetMetadata().GetLabels()
}
func (c *Cluster) SetLabels(labels map[string]string) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.Labels = labels
}
func (c *Cluster) GetResourceVersion() string {
return c.GetMetadata().GetResourceVersion()
}
func (c *Cluster) SetResourceVersion(version string) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.ResourceVersion = version
}
func (c *Cluster) SetCreationTimestamp(ts time.Time) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.CreationTimestamp = timestamppb.New(ts)
}
func (c *Cluster) GetCreationTimestamp() time.Time {
return c.GetMetadata().GetCreationTimestamp().AsTime()
}
type lastKnownConnectionDetailsKeyType struct{}
var lastKnownConnectionDetailsKey lastKnownConnectionDetailsKeyType
func LastKnownConnectionDetailsFromContext(ctx context.Context) (*LastKnownConnectionDetails, bool) {
v := ctx.Value(lastKnownConnectionDetailsKey)
if v == nil {
return nil, false
}
details, ok := v.(*LastKnownConnectionDetails)
return details, ok
}
func NewContextWithLastKnownConnectionDetails(ctx context.Context, details *LastKnownConnectionDetails) context.Context {
return context.WithValue(ctx, lastKnownConnectionDetailsKey, details)
}