2019-01-05 01:51:32 +00:00
|
|
|
package authority
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2019-01-07 23:30:28 +00:00
|
|
|
// multiString represents a type that can be encoded/decoded in JSON as a single
|
|
|
|
// string or an array of strings.
|
2019-01-05 01:51:32 +00:00
|
|
|
type multiString []string
|
|
|
|
|
|
|
|
// First returns the first element of a multiString. It will return an empty
|
|
|
|
// string if the multistring is empty.
|
|
|
|
func (s multiString) First() string {
|
|
|
|
if len(s) > 0 {
|
|
|
|
return s[0]
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-01-15 01:59:31 +00:00
|
|
|
// HasEmpties returns `true` if any string in the array is empty.
|
|
|
|
func (s multiString) HasEmpties() bool {
|
2019-01-05 01:51:32 +00:00
|
|
|
if len(s) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
for _, ss := range s {
|
|
|
|
if len(ss) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON marshals the multistring as a string or a slice of strings . With
|
|
|
|
// 0 elements it will return the empty string, with 1 element a regular string,
|
|
|
|
// otherwise a slice of strings.
|
|
|
|
func (s multiString) MarshalJSON() ([]byte, error) {
|
|
|
|
switch len(s) {
|
|
|
|
case 0:
|
2019-01-07 23:30:28 +00:00
|
|
|
return []byte(`""`), nil
|
2019-01-05 01:51:32 +00:00
|
|
|
case 1:
|
|
|
|
return json.Marshal(s[0])
|
|
|
|
default:
|
2019-01-07 23:30:28 +00:00
|
|
|
return json.Marshal([]string(s))
|
2019-01-05 01:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON parses a string or a slice and sets it to the multiString.
|
|
|
|
func (s *multiString) UnmarshalJSON(data []byte) error {
|
2019-01-07 23:30:28 +00:00
|
|
|
if s == nil {
|
|
|
|
return errors.New("multiString cannot be nil")
|
|
|
|
}
|
2019-01-05 01:51:32 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
*s = nil
|
|
|
|
return nil
|
|
|
|
}
|
2019-01-07 23:30:28 +00:00
|
|
|
// Parse string
|
2019-01-05 01:51:32 +00:00
|
|
|
if data[0] == '"' {
|
|
|
|
var str string
|
|
|
|
if err := json.Unmarshal(data, &str); err != nil {
|
|
|
|
return errors.Wrapf(err, "error unmarshalling %s", data)
|
|
|
|
}
|
|
|
|
*s = []string{str}
|
|
|
|
return nil
|
|
|
|
}
|
2019-01-07 23:30:28 +00:00
|
|
|
// Parse array
|
|
|
|
var ss []string
|
|
|
|
if err := json.Unmarshal(data, &ss); err != nil {
|
2019-01-05 01:51:32 +00:00
|
|
|
return errors.Wrapf(err, "error unmarshalling %s", data)
|
|
|
|
}
|
2019-01-07 23:30:28 +00:00
|
|
|
*s = ss
|
2019-01-05 01:51:32 +00:00
|
|
|
return nil
|
|
|
|
}
|