-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrappers.go
188 lines (162 loc) · 4.39 KB
/
wrappers.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
Copyright 2019 Gravitational, Inc.
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 wrappers
import (
"encoding/json"
"github.com/gogo/protobuf/proto"
"github.com/gravitational/trace"
)
// Traits is a wrapper around map with string
// slices as values
type Traits map[string][]string
func (l Traits) protoType() *LabelValues {
v := &LabelValues{
Values: make(map[string]StringValues, len(l)),
}
for key, vals := range l {
stringValues := StringValues{
Values: make([]string, len(vals)),
}
copy(stringValues.Values, vals)
v.Values[key] = stringValues
}
return v
}
// MarshalTraits will marshal Traits as JSON. Used to embed traits into
// certificates.
func MarshalTraits(traits *Traits) ([]byte, error) {
return json.Marshal(traits)
}
// UnmarshalTraits will unmarshal JSON traits. Used to embed traits into
// certificates.
func UnmarshalTraits(data []byte, traits *Traits) error {
err := json.Unmarshal(data, traits)
if err != nil {
return traits.Unmarshal(data)
}
return nil
}
// Marshal marshals value into protobuf representation
func (l Traits) Marshal() ([]byte, error) {
return proto.Marshal(l.protoType())
}
// MarshalTo marshals value to the array
func (l Traits) MarshalTo(data []byte) (int, error) {
return l.protoType().MarshalTo(data)
}
// Unmarshal unmarshals value from protobuf
func (l *Traits) Unmarshal(data []byte) error {
protoValues := &LabelValues{}
err := proto.Unmarshal(data, protoValues)
if err != nil {
return err
}
if protoValues.Values == nil {
return nil
}
*l = make(map[string][]string, len(protoValues.Values))
for key := range protoValues.Values {
(*l)[key] = protoValues.Values[key].Values
}
return nil
}
// Size returns protobuf size
func (l Traits) Size() int {
return l.protoType().Size()
}
// Strings is a list of string that can unmarshal from list of strings
// or a scalar string from scalar yaml or json property
type Strings []string
func (s *Strings) protoType() *StringValues {
return &StringValues{
Values: *s,
}
}
// Marshal marshals value into protobuf representation
func (s Strings) Marshal() ([]byte, error) {
return proto.Marshal(s.protoType())
}
// MarshalTo marshals value to the array
func (s Strings) MarshalTo(data []byte) (int, error) {
return s.protoType().MarshalTo(data)
}
// Unmarshal unmarshals value from protobuf
func (s *Strings) Unmarshal(data []byte) error {
protoValues := &StringValues{}
err := proto.Unmarshal(data, protoValues)
if err != nil {
return err
}
if protoValues.Values != nil {
*s = protoValues.Values
}
return nil
}
// Size returns protobuf size
func (s Strings) Size() int {
return s.protoType().Size()
}
// UnmarshalJSON unmarshals scalar string or strings slice to Strings
func (s *Strings) UnmarshalJSON(data []byte) error {
if len(data) == 0 {
return nil
}
var stringVar string
if err := json.Unmarshal(data, &stringVar); err == nil {
*s = []string{stringVar}
return nil
}
var stringsVar []string
if err := json.Unmarshal(data, &stringsVar); err != nil {
return trace.Wrap(err)
}
*s = stringsVar
return nil
}
// UnmarshalYAML is used to allow Strings to unmarshal from
// scalar string value or from the list
func (s *Strings) UnmarshalYAML(unmarshal func(interface{}) error) error {
// try unmarshal as string
var val string
err := unmarshal(&val)
if err == nil {
*s = []string{val}
return nil
}
// try unmarshal as slice
var slice []string
err = unmarshal(&slice)
if err == nil {
*s = slice
return nil
}
return err
}
// MarshalJSON marshals to scalar value
// if there is only one value in the list
// to list otherwise
func (s Strings) MarshalJSON() ([]byte, error) {
if len(s) == 1 {
return json.Marshal(s[0])
}
return json.Marshal([]string(s))
}
// MarshalYAML marshals to scalar value
// if there is only one value in the list,
// marshals to list otherwise
func (s Strings) MarshalYAML() (interface{}, error) {
if len(s) == 1 {
return s[0], nil
}
return []string(s), nil
}