mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
80 lines
2.4 KiB
Go
80 lines
2.4 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package pbcommon
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
"google.golang.org/protobuf/types/known/structpb"
|
|
)
|
|
|
|
// ProtobufTypesStructToMapStringInterface converts a protobuf/structpb.Struct into a
|
|
// map[string]interface{}.
|
|
func ProtobufTypesStructToMapStringInterface(s *structpb.Struct) map[string]interface{} {
|
|
if s == nil {
|
|
return nil
|
|
}
|
|
return s.AsMap()
|
|
}
|
|
|
|
// MapStringInterfaceToProtobufTypesStruct converts a map[string]interface{} into a proto.Struct
|
|
func MapStringInterfaceToProtobufTypesStruct(m map[string]interface{}) *structpb.Struct {
|
|
if len(m) < 1 {
|
|
return nil
|
|
}
|
|
// TODO - handle the error better. It probably requires mog to be able to use alternative method signatures though
|
|
s, _ := structpb.NewStruct(m)
|
|
return s
|
|
}
|
|
|
|
// SliceToPBListValue converts a []interface{} into a proto.ListValue. It's used
|
|
// internally by MapStringInterfaceToProtobufTypesStruct when it encouters slices.
|
|
// TODO (remove usage of this struct in favor of structpb.NewListValue)
|
|
func SliceToPBListValue(s []interface{}) *structpb.ListValue {
|
|
if len(s) < 1 {
|
|
return nil
|
|
}
|
|
// TODO - handle the error better. It probably requires mog to use alt method signatures though
|
|
val, _ := structpb.NewList(s)
|
|
return val
|
|
}
|
|
|
|
// EnvoyExtensionsToStructs takes a protobuf EnvoyExtension argument and converts it to the
|
|
// structs EnvoyExtension
|
|
func EnvoyExtensionsToStructs(args []*EnvoyExtension) []structs.EnvoyExtension {
|
|
o := make([]structs.EnvoyExtension, len(args))
|
|
for i := range args {
|
|
var e structs.EnvoyExtension
|
|
if args[i] != nil {
|
|
e = structs.EnvoyExtension{
|
|
Name: args[i].Name,
|
|
Required: args[i].Required,
|
|
ConsulVersion: args[i].ConsulVersion,
|
|
EnvoyVersion: args[i].EnvoyVersion,
|
|
Arguments: ProtobufTypesStructToMapStringInterface(args[i].Arguments),
|
|
}
|
|
}
|
|
|
|
o[i] = e
|
|
}
|
|
|
|
return o
|
|
}
|
|
|
|
// EnvoyExtensionsFromStructs takes a structs EnvoyExtension argument and converts it to the
|
|
// protobuf EnvoyExtension
|
|
func EnvoyExtensionsFromStructs(args []structs.EnvoyExtension) []*EnvoyExtension {
|
|
o := make([]*EnvoyExtension, len(args))
|
|
for i, e := range args {
|
|
o[i] = &EnvoyExtension{
|
|
Name: e.Name,
|
|
Required: e.Required,
|
|
ConsulVersion: e.ConsulVersion,
|
|
EnvoyVersion: e.EnvoyVersion,
|
|
Arguments: MapStringInterfaceToProtobufTypesStruct(e.Arguments),
|
|
}
|
|
}
|
|
|
|
return o
|
|
}
|