809344a6f5
- Add endpoints related to peering: read, list, generate token, initiate peering - Update node/service/check table indexing to account for peers - Foundational changes for pushing service updates to a peer - Plumb peer name through Health.ServiceNodes path see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679, ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663, ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634, ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555 Co-authored-by: R.B. Boyer <rb@hashicorp.com> Co-authored-by: freddygv <freddy@hashicorp.com> Co-authored-by: Chris S. Kim <ckim@hashicorp.com> Co-authored-by: Evan Culver <eculver@hashicorp.com> Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
67 lines
1.6 KiB
Go
67 lines
1.6 KiB
Go
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package state
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/hashicorp/consul/proto/pbpeering"
|
|
)
|
|
|
|
func indexPeeringFromQuery(raw interface{}) ([]byte, error) {
|
|
q, ok := raw.(Query)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected type %T for Query index", raw)
|
|
}
|
|
|
|
var b indexBuilder
|
|
b.String(strings.ToLower(q.Value))
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
func indexFromPeering(raw interface{}) ([]byte, error) {
|
|
p, ok := raw.(*pbpeering.Peering)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected type %T for structs.Peering index", raw)
|
|
}
|
|
|
|
if p.Name == "" {
|
|
return nil, errMissingValueForIndex
|
|
}
|
|
|
|
var b indexBuilder
|
|
b.String(strings.ToLower(p.Name))
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
func indexFromPeeringTrustBundle(raw interface{}) ([]byte, error) {
|
|
ptb, ok := raw.(*pbpeering.PeeringTrustBundle)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected type %T for pbpeering.PeeringTrustBundle index", raw)
|
|
}
|
|
|
|
if ptb.PeerName == "" {
|
|
return nil, errMissingValueForIndex
|
|
}
|
|
|
|
var b indexBuilder
|
|
b.String(strings.ToLower(ptb.PeerName))
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
func updatePeeringTableIndexes(tx WriteTxn, idx uint64, _ string) error {
|
|
if err := tx.Insert(tableIndex, &IndexEntry{Key: tablePeering, Value: idx}); err != nil {
|
|
return fmt.Errorf("failed updating table index: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func updatePeeringTrustBundlesTableIndexes(tx WriteTxn, idx uint64, _ string) error {
|
|
if err := tx.Insert(tableIndex, &IndexEntry{Key: tablePeeringTrustBundles, Value: idx}); err != nil {
|
|
return fmt.Errorf("failed updating table index: %w", err)
|
|
}
|
|
return nil
|
|
}
|