2019-10-24 18:38:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"hash"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2020-01-03 20:51:19 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2019-10-24 18:38:09 +00:00
|
|
|
)
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
var emptyEnterpriseMeta = EnterpriseMeta{}
|
|
|
|
|
2019-10-24 18:38:09 +00:00
|
|
|
// EnterpriseMeta stub
|
|
|
|
type EnterpriseMeta struct{}
|
|
|
|
|
|
|
|
func (m *EnterpriseMeta) estimateSize() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
func (m *EnterpriseMeta) addToHash(_ hash.Hash, _ bool) {
|
2019-10-24 18:38:09 +00:00
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2019-12-18 18:46:53 +00:00
|
|
|
func (m *EnterpriseMeta) Merge(_ *EnterpriseMeta) {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:04:58 +00:00
|
|
|
func (m *EnterpriseMeta) MergeNoWildcard(_ *EnterpriseMeta) {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
func (m *EnterpriseMeta) Matches(_ *EnterpriseMeta) bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EnterpriseMeta) IsSame(_ *EnterpriseMeta) bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EnterpriseMeta) LessThan(_ *EnterpriseMeta) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:04:58 +00:00
|
|
|
func (m *EnterpriseMeta) NamespaceOrDefault() string {
|
2020-03-31 16:59:10 +00:00
|
|
|
return IntentionDefaultNamespace
|
2020-01-24 15:04:58 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 18:12:26 +00:00
|
|
|
func EnterpriseMetaInitializer(_ string) EnterpriseMeta {
|
|
|
|
return emptyEnterpriseMeta
|
|
|
|
}
|
|
|
|
|
2019-10-24 18:38:09 +00:00
|
|
|
// ReplicationEnterpriseMeta stub
|
|
|
|
func ReplicationEnterpriseMeta() *EnterpriseMeta {
|
2019-12-06 19:01:34 +00:00
|
|
|
return &emptyEnterpriseMeta
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultEnterpriseMeta stub
|
|
|
|
func DefaultEnterpriseMeta() *EnterpriseMeta {
|
2019-12-06 19:01:34 +00:00
|
|
|
return &emptyEnterpriseMeta
|
2019-10-24 18:38:09 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
// WildcardEnterpriseMeta stub
|
|
|
|
func WildcardEnterpriseMeta() *EnterpriseMeta {
|
|
|
|
return &emptyEnterpriseMeta
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
|
|
|
|
// FillAuthzContext stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *EnterpriseMeta) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-11-01 20:48:44 +00:00
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
func (_ *EnterpriseMeta) Normalize() {}
|
|
|
|
|
|
|
|
// FillAuthzContext stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *DirEntry) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
2019-11-01 20:48:44 +00:00
|
|
|
// FillAuthzContext stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *RegisterRequest) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
func (_ *RegisterRequest) GetEnterpriseMeta() *EnterpriseMeta {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (op *TxnNodeOp) FillAuthzContext(ctx *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *TxnServiceOp) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
// OSS Stub
|
2019-12-18 18:43:24 +00:00
|
|
|
func (_ *TxnCheckOp) FillAuthzContext(_ *acl.AuthorizerContext) {}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
func ServiceIDString(id string, _ *EnterpriseMeta) string {
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:04:58 +00:00
|
|
|
func ParseServiceIDString(input string) (string, *EnterpriseMeta) {
|
|
|
|
return input, DefaultEnterpriseMeta()
|
|
|
|
}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
func (sid *ServiceID) String() string {
|
|
|
|
return sid.ID
|
|
|
|
}
|
|
|
|
|
2020-01-24 15:04:58 +00:00
|
|
|
func ServiceIDFromString(input string) ServiceID {
|
|
|
|
id, _ := ParseServiceIDString(input)
|
|
|
|
return ServiceID{ID: id}
|
|
|
|
}
|
|
|
|
|
2020-06-12 14:57:41 +00:00
|
|
|
func ParseServiceNameString(input string) (string, *EnterpriseMeta) {
|
|
|
|
return input, DefaultEnterpriseMeta()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ServiceName) String() string {
|
|
|
|
return n.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func ServiceNameFromString(input string) ServiceName {
|
|
|
|
id, _ := ParseServiceNameString(input)
|
|
|
|
return ServiceName{Name: id}
|
|
|
|
}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
func (cid *CheckID) String() string {
|
|
|
|
return string(cid.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ *HealthCheck) Validate() error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-01-03 20:51:19 +00:00
|
|
|
|
|
|
|
// CheckIDs returns the IDs for all checks associated with a session, regardless of type
|
|
|
|
func (s *Session) CheckIDs() []types.CheckID {
|
|
|
|
// Merge all check IDs into a single slice, since they will be handled the same way
|
|
|
|
checks := make([]types.CheckID, 0, len(s.Checks)+len(s.NodeChecks)+len(s.ServiceChecks))
|
|
|
|
checks = append(checks, s.Checks...)
|
|
|
|
|
|
|
|
for _, c := range s.NodeChecks {
|
|
|
|
checks = append(checks, types.CheckID(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range s.ServiceChecks {
|
|
|
|
checks = append(checks, types.CheckID(c.ID))
|
|
|
|
}
|
|
|
|
return checks
|
|
|
|
}
|